OperationData Constructors
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.
Overloads
OperationData() |
Initializes a new instance of the OperationData class. |
OperationData(ArraySegment<Byte>) |
Initializes a new instance of the OperationData class from the specified ArraySegment<T> of bytes. |
OperationData(Byte[]) |
Initializes a new instance of the OperationData class from the specified byte array. |
OperationData(IEnumerable<ArraySegment<Byte>>) |
Initializes a new instance of the OperationData class from the specified collection of ArraySegment<T> of bytes. |
OperationData(IEnumerable<Byte[]>) |
Initializes a new instance of the OperationData class from the specified collection of byte arrays. |
OperationData()
Initializes a new instance of the OperationData class.
public OperationData ();
Public Sub New ()
Applies to
OperationData(ArraySegment<Byte>)
Initializes a new instance of the OperationData class from the specified ArraySegment<T> of bytes.
public OperationData (ArraySegment<byte> operationData);
new System.Fabric.OperationData : ArraySegment<byte> -> System.Fabric.OperationData
Public Sub New (operationData As ArraySegment(Of Byte))
Parameters
- operationData
- ArraySegment<Byte>
The ArraySegment<T> of bytes from which to create the OperationData object.
Applies to
OperationData(Byte[])
Initializes a new instance of the OperationData class from the specified byte array.
public OperationData (byte[] operationData);
new System.Fabric.OperationData : byte[] -> System.Fabric.OperationData
Public Sub New (operationData As Byte())
Parameters
- operationData
- Byte[]
The byte array from which to create the OperationData object.
Applies to
OperationData(IEnumerable<ArraySegment<Byte>>)
Initializes a new instance of the OperationData class from the specified collection of ArraySegment<T> of bytes.
public OperationData (System.Collections.Generic.IEnumerable<ArraySegment<byte>> operationData);
new System.Fabric.OperationData : seq<ArraySegment<byte>> -> System.Fabric.OperationData
Public Sub New (operationData As IEnumerable(Of ArraySegment(Of Byte)))
Parameters
- operationData
- IEnumerable<ArraySegment<Byte>>
The bytes from which to create the OperationData object.
Applies to
OperationData(IEnumerable<Byte[]>)
Initializes a new instance of the OperationData class from the specified collection of byte arrays.
public OperationData (System.Collections.Generic.IEnumerable<byte[]> operationData);
new System.Fabric.OperationData : seq<byte[]> -> System.Fabric.OperationData
Public Sub New (operationData As IEnumerable(Of Byte()))
Parameters
- operationData
- IEnumerable<Byte[]>
The IEnumerable<T> of byte arrays from which to create the OperationData object.
Applies to
Azure SDK for .NET