Share via


Streamable.ToStreamablePassive Method

Definition

Overloads

ToStreamablePassive<TKey,TPayload>(Stream, Boolean, StreamProperties<TKey,TPayload>)

Deserialize from binary stream to streamable

ToStreamablePassive<TPayload>(Stream, Boolean, StreamProperties<Empty,TPayload>)

Deserialize from binary stream to streamable

ToStreamablePassive<TKey,TPayload>(Stream, Boolean, StreamProperties<TKey,TPayload>)

Deserialize from binary stream to streamable

public static Microsoft.StreamProcessing.IPassiveIngressStreamable<TKey,TPayload> ToStreamablePassive<TKey,TPayload> (this System.IO.Stream binaryStream, bool readPropertiesFromStream = false, Microsoft.StreamProcessing.StreamProperties<TKey,TPayload> inputProperties = null);
static member ToStreamablePassive : System.IO.Stream * bool * Microsoft.StreamProcessing.StreamProperties<'Key, 'Payload> -> Microsoft.StreamProcessing.IPassiveIngressStreamable<'Key, 'Payload>
<Extension()>
Public Function ToStreamablePassive(Of TKey, TPayload) (binaryStream As Stream, Optional readPropertiesFromStream As Boolean = false, Optional inputProperties As StreamProperties(Of TKey, TPayload) = null) As IPassiveIngressStreamable(Of TKey, TPayload)

Type Parameters

TKey
TPayload

Parameters

binaryStream
Stream
readPropertiesFromStream
Boolean

Returns

Applies to

ToStreamablePassive<TPayload>(Stream, Boolean, StreamProperties<Empty,TPayload>)

Deserialize from binary stream to streamable

public static Microsoft.StreamProcessing.IPassiveIngressStreamable<Microsoft.StreamProcessing.Empty,TPayload> ToStreamablePassive<TPayload> (this System.IO.Stream binaryStream, bool readPropertiesFromStream = false, Microsoft.StreamProcessing.StreamProperties<Microsoft.StreamProcessing.Empty,TPayload> inputProperties = null);
static member ToStreamablePassive : System.IO.Stream * bool * Microsoft.StreamProcessing.StreamProperties<Microsoft.StreamProcessing.Empty, 'Payload> -> Microsoft.StreamProcessing.IPassiveIngressStreamable<Microsoft.StreamProcessing.Empty, 'Payload>
<Extension()>
Public Function ToStreamablePassive(Of TPayload) (binaryStream As Stream, Optional readPropertiesFromStream As Boolean = false, Optional inputProperties As StreamProperties(Of Empty, TPayload) = null) As IPassiveIngressStreamable(Of Empty, TPayload)

Type Parameters

TPayload

Parameters

binaryStream
Stream
readPropertiesFromStream
Boolean
inputProperties
StreamProperties<Empty,TPayload>

Returns

Applies to