C# Class System.Reactive.Envelope

Represents the event sent and received from a stream. It contains the body of the event, various metadata describing the event.
Inheritance: IEnvelope
Datei anzeigen Open project: Reactive-Extensions/Tx Class Usage Examples

Public Methods

Method Description
Envelope ( DateTimeOffset occurrenceTime, DateTimeOffset receivedTime, string protocol, string source, string typeId, byte payload, object payloadInstance ) : System

Initializes a new instance of the Envelope class.

Method Details

Envelope() public method

Initializes a new instance of the Envelope class.
public Envelope ( DateTimeOffset occurrenceTime, DateTimeOffset receivedTime, string protocol, string source, string typeId, byte payload, object payloadInstance ) : System
occurrenceTime DateTimeOffset The occurrence time.
receivedTime DateTimeOffset The received time.
protocol string The protocol.
source string The source.
typeId string The type identifier.
payload byte The payload.
payloadInstance object The payload instance.
return System