C# Class Node.net.Modules.Streams.NodeReadableStream

Inheritance: NodeStream
Datei anzeigen Open project: WindowsTermKit/TermKit Class Usage Examples

Public Methods

Method Description
destroy ( ) : void

http://nodejs.org/docs/v0.4.8/api/streams.html#stream.destroy

destroySoon ( ) : void

http://nodejs.org/docs/v0.4.8/api/streams.html#stream.destroySoon

end ( ) : void

http://nodejs.org/docs/v0.4.8/api/streams.html#stream.end

end ( NodeBuffer buffer ) : void

http://nodejs.org/docs/v0.4.8/api/streams.html#stream.end

end ( string data, string encoding ) : void

http://nodejs.org/docs/v0.4.8/api/streams.html#stream.end

pause ( ) : void

http://nodejs.org/docs/v0.4.8/api/streams.html#stream.pause

pipe ( NodeWritableStream destination ) : void

http://nodejs.org/docs/v0.4.8/api/streams.html#stream.pipe

pipe ( NodeWritableStream destination, IronJS options ) : void

http://nodejs.org/docs/v0.4.8/api/streams.html#stream.pipe

resume ( ) : void

http://nodejs.org/docs/v0.4.8/api/streams.html#stream.resume

setEncoding ( string encoding ) : void

http://nodejs.org/docs/v0.4.8/api/streams.html#stream.setEncoding

write ( NodeBuffer buffer ) : bool

http://nodejs.org/docs/v0.4.8/api/streams.html#stream.write

write ( string data ) : bool

http://nodejs.org/docs/v0.4.8/api/streams.html#stream.write

write ( string data, string encoding ) : bool

http://nodejs.org/docs/v0.4.8/api/streams.html#stream.write

write ( string data, string encoding, object fd ) : bool

http://nodejs.org/docs/v0.4.8/api/streams.html#stream.write

Private Methods

Method Description
NodeReadableStream ( IronJS env, StreamReader reader ) : System

Constructs a new NodeReadableStream using the specified .NET stream reader.

OnAttach ( string name ) : void

Recieve notification that an event has been attached.

Method Details

destroy() public method

http://nodejs.org/docs/v0.4.8/api/streams.html#stream.destroy
public destroy ( ) : void
return void

destroySoon() public method

http://nodejs.org/docs/v0.4.8/api/streams.html#stream.destroySoon
public destroySoon ( ) : void
return void

end() public method

http://nodejs.org/docs/v0.4.8/api/streams.html#stream.end
public end ( ) : void
return void

end() public method

http://nodejs.org/docs/v0.4.8/api/streams.html#stream.end
public end ( NodeBuffer buffer ) : void
buffer Node.net.Modules.Buffers.NodeBuffer
return void

end() public method

http://nodejs.org/docs/v0.4.8/api/streams.html#stream.end
public end ( string data, string encoding ) : void
data string
encoding string
return void

pause() public method

http://nodejs.org/docs/v0.4.8/api/streams.html#stream.pause
public pause ( ) : void
return void

pipe() public method

http://nodejs.org/docs/v0.4.8/api/streams.html#stream.pipe
public pipe ( NodeWritableStream destination ) : void
destination NodeWritableStream
return void

pipe() public method

http://nodejs.org/docs/v0.4.8/api/streams.html#stream.pipe
public pipe ( NodeWritableStream destination, IronJS options ) : void
destination NodeWritableStream
options IronJS
return void

resume() public method

http://nodejs.org/docs/v0.4.8/api/streams.html#stream.resume
public resume ( ) : void
return void

setEncoding() public method

http://nodejs.org/docs/v0.4.8/api/streams.html#stream.setEncoding
public setEncoding ( string encoding ) : void
encoding string
return void

write() public method

http://nodejs.org/docs/v0.4.8/api/streams.html#stream.write
public write ( NodeBuffer buffer ) : bool
buffer Node.net.Modules.Buffers.NodeBuffer
return bool

write() public method

http://nodejs.org/docs/v0.4.8/api/streams.html#stream.write
public write ( string data ) : bool
data string
return bool

write() public method

http://nodejs.org/docs/v0.4.8/api/streams.html#stream.write
public write ( string data, string encoding ) : bool
data string
encoding string
return bool

write() public method

http://nodejs.org/docs/v0.4.8/api/streams.html#stream.write
public write ( string data, string encoding, object fd ) : bool
data string
encoding string
fd object
return bool