Aracılığıyla paylaş


PutPropertyOperation Constructors

Definition

Overloads

PutPropertyOperation(String, Byte[])

Initializes a new instance of the PutPropertyOperation class with the specified property name and byte[] value.

PutPropertyOperation(String, Double)

Initializes a new instance of the PutPropertyOperation class with the specified property name and double value.

PutPropertyOperation(String, Guid)

Initializes a new instance of the PutPropertyOperation class with the specified property name and GUID value.

PutPropertyOperation(String, Int64)

Initializes a new instance of the PutPropertyOperation class with the specified property name and Int64 value.

PutPropertyOperation(String, String)

Initializes a new instance of the PutPropertyOperation class with the specified property name and string value.

PutPropertyOperation(String, Byte[])

Initializes a new instance of the PutPropertyOperation class with the specified property name and byte[] value.

public PutPropertyOperation (string propertyName, byte[] value);
new System.Fabric.PutPropertyOperation : string * byte[] -> System.Fabric.PutPropertyOperation
Public Sub New (propertyName As String, value As Byte())

Parameters

propertyName
String

A String that defines the name of the property.

value
Byte[]

A Byte array that defines the value for the property.

Applies to

PutPropertyOperation(String, Double)

Initializes a new instance of the PutPropertyOperation class with the specified property name and double value.

public PutPropertyOperation (string propertyName, double value);
new System.Fabric.PutPropertyOperation : string * double -> System.Fabric.PutPropertyOperation
Public Sub New (propertyName As String, value As Double)

Parameters

propertyName
String

A String that defines the name of the property.

value
Double

A Double that defines the value for the property.

Applies to

PutPropertyOperation(String, Guid)

Initializes a new instance of the PutPropertyOperation class with the specified property name and GUID value.

public PutPropertyOperation (string propertyName, Guid value);
new System.Fabric.PutPropertyOperation : string * Guid -> System.Fabric.PutPropertyOperation
Public Sub New (propertyName As String, value As Guid)

Parameters

propertyName
String

A String that defines the name of the property.

value
Guid

A Guid that defines the value for the property.

Applies to

PutPropertyOperation(String, Int64)

Initializes a new instance of the PutPropertyOperation class with the specified property name and Int64 value.

public PutPropertyOperation (string propertyName, long value);
new System.Fabric.PutPropertyOperation : string * int64 -> System.Fabric.PutPropertyOperation
Public Sub New (propertyName As String, value As Long)

Parameters

propertyName
String

A String that defines the name of the property.

value
Int64

An Int64 that defines the value for the property.

Applies to

PutPropertyOperation(String, String)

Initializes a new instance of the PutPropertyOperation class with the specified property name and string value.

public PutPropertyOperation (string propertyName, string value);
new System.Fabric.PutPropertyOperation : string * string -> System.Fabric.PutPropertyOperation
Public Sub New (propertyName As String, value As String)

Parameters

propertyName
String

A String that defines the name of the property.

value
String

A String that defines the value for the property.

Applies to