PutCustomPropertyOperation Class

Definition

Represents the specified property under the specified name and sets the custom type information for custom interpretation of the property value.

public sealed class PutCustomPropertyOperation : System.Fabric.PropertyBatchOperation
type PutCustomPropertyOperation = class
    inherit PropertyBatchOperation
Public NotInheritable Class PutCustomPropertyOperation
Inherits PropertyBatchOperation
Inheritance
PutCustomPropertyOperation

Remarks

The custom type is information that is not processed by Service Fabric, but can be used by user to serialize/deserialize custom type objects.

Constructors

PutCustomPropertyOperation(String, Byte[], String)

Initializes a new instance of the PutCustomPropertyOperation class with the specified property name and byte[] value, and sets the custom type accordingly.

PutCustomPropertyOperation(String, Double, String)

Initializes a new instance of the PutCustomPropertyOperation class with the specified property name and double value, and sets the custom type accordingly.

PutCustomPropertyOperation(String, Guid, String)

Initializes a new instance of the PutCustomPropertyOperation class with the specified property name and GUID value, and sets the custom type accordingly.

PutCustomPropertyOperation(String, Int64, String)

Initializes a new instance of the PutCustomPropertyOperation class with the specified property name and Int64 value, and sets the custom type accordingly.

PutCustomPropertyOperation(String, String, String)

Initializes a new instance of the PutCustomPropertyOperation class with the specified property name and string value, and sets the custom type accordingly.

Properties

CustomTypeId

Gets the custom type information. This information can be used by users to serialize/de-serialize custom type objects.

Kind

Gets the PropertyBatchOperationKind that indicates the kind of the PropertyBatchOperation.

(Inherited from PropertyBatchOperation)
PropertyName

Indicates the name of the property that this PropertyBatchOperation accesses.

(Inherited from PropertyBatchOperation)
PropertyType

Gets the property type.

PropertyValue

Gets the property value.

Applies to