DataflowMessageHeader Struct
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
- 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. |