C# Класс System.Reactive.Envelope

Represents the event sent and received from a stream. It contains the body of the event, various metadata describing the event.
Наследование: IEnvelope
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
Envelope ( DateTimeOffset occurrenceTime, DateTimeOffset receivedTime, string protocol, string source, string typeId, byte payload, object payloadInstance ) : System

Initializes a new instance of the Envelope class.

Описание методов

Envelope() публичный Метод

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.
Результат System