StreamSocket.OutputStream Property

Definition

Gets the output stream to write to the remote host on a StreamSocket object.

public:
 property IOutputStream ^ OutputStream { IOutputStream ^ get(); };
IOutputStream OutputStream();
public IOutputStream OutputStream { get; }
var iOutputStream = streamSocket.outputStream;
Public ReadOnly Property OutputStream As IOutputStream

Property Value

A sequential stream of bytes to be written to the remote destination.

Windows requirements

App capabilities
ID_CAP_NETWORKING [Windows Phone]

Examples

See StreamSocket class.

Remarks

This property can be used to write outgoing data to be sent to the remote network destination on a socket object. Outgoing data can be written using the IOutputStream.WriteAsync method directly or by passing the IOutputStream object to other objects (DataWriter, for example) that accept an IOutputStream as a parameter.

Applies to

See also