  | ByLineTextMessageWriter Constructor (Stream, String) | 
 [This is preliminary documentation and is subject to change.]
            Initialize a message writer to 
Stream.
            
 
    Namespace: 
   JsonRpc.Streams
    Assembly:
   JsonRpc.Streams (in JsonRpc.Streams.dll) Version: 0.5.4+1bad715934a0ae5922832940ca44bbbdaa509cfe
Syntaxpublic ByLineTextMessageWriter(
	Stream stream,
	string delimiter
)
Public Sub New ( 
	stream As Stream,
	delimiter As String
)
Dim stream As Stream
Dim delimiter As String
Dim instance As New ByLineTextMessageWriter(stream, 
	delimiter)
public:
ByLineTextMessageWriter(
	Stream^ stream, 
	String^ delimiter
)
new : 
        stream : Stream * 
        delimiter : string -> ByLineTextMessageWriterParameters
- stream
 - Type: System.IOStream
The underlying stream. A TextWriter with UTF-8 encoding will be created based on it. - delimiter
 - Type: SystemString
The delimiter between the messages. 
See Also