DataflowMessageHeader Struct

Definition

Provides a container of data attributes for passing between dataflow blocks.

public value class DataflowMessageHeader : IEquatable<System::Threading::Tasks::Dataflow::DataflowMessageHeader>
public struct DataflowMessageHeader : IEquatable<System.Threading.Tasks.Dataflow.DataflowMessageHeader>
public readonly struct DataflowMessageHeader : IEquatable<System.Threading.Tasks.Dataflow.DataflowMessageHeader>
type DataflowMessageHeader = struct
Public Structure DataflowMessageHeader
Implements IEquatable(Of DataflowMessageHeader)
Inheritance
DataflowMessageHeader
Implements

Remarks

Note

The TPL Dataflow Library (the System.Threading.Tasks.Dataflow namespace) is not distributed with .NET. To install the System.Threading.Tasks.Dataflow namespace in Visual Studio, open your project, choose Manage NuGet Packages from the Project menu, and search online for the System.Threading.Tasks.Dataflow package. Alternatively, to install it using the .NET Core CLI, run dotnet add package System.Threading.Tasks.Dataflow.

Constructors

DataflowMessageHeader(Int64)

Initializes a new DataflowMessageHeader with the specified attributes.

Properties

Id

Gets the ID of the message within the source.

IsValid

Gets the validity of the message.

Methods

Equals(DataflowMessageHeader)

Checks two DataflowMessageHeader instances for equality by ID without boxing.

Equals(Object)

Checks boxed DataflowMessageHeader instances for equality by ID.

GetHashCode()

Generates a hash code for the DataflowMessageHeader instance.

Operators

Equality(DataflowMessageHeader, DataflowMessageHeader)

Checks two DataflowMessageHeader instances for equality by ID.

Inequality(DataflowMessageHeader, DataflowMessageHeader)

Checks two DataflowMessageHeader instances for non-equality by ID.

Applies to