Aracılığıyla paylaş


GetPropertyOperation Constructors

Definition

Overloads

GetPropertyOperation(String)

Instantiates a new instance of the GetPropertyOperation class with specified property name.

GetPropertyOperation(String, Boolean)

Initializes a new instance of the GetPropertyOperation with specified property name and include value flag.

GetPropertyOperation(String)

Instantiates a new instance of the GetPropertyOperation class with specified property name.

public GetPropertyOperation (string propertyName);
new System.Fabric.GetPropertyOperation : string -> System.Fabric.GetPropertyOperation
Public Sub New (propertyName As String)

Parameters

propertyName
String

The name of the property.

Remarks

IncludeValue is set to true.

Applies to

GetPropertyOperation(String, Boolean)

Initializes a new instance of the GetPropertyOperation with specified property name and include value flag.

public GetPropertyOperation (string propertyName, bool includeValue);
new System.Fabric.GetPropertyOperation : string * bool -> System.Fabric.GetPropertyOperation
Public Sub New (propertyName As String, includeValue As Boolean)

Parameters

propertyName
String

The name of the property.

includeValue
Boolean

Specifies whether values should be included in the return or only metadata should be returned.

Applies to