ClientActionSetProperty constructor
Initializes a new instance of the ClientActionSetProperty class with the specified client object, the property name, and the property value. This member is reserved for internal use and is not intended to be used directly from your code.
Namespace: Microsoft.SharePoint.Client
Assembly: Microsoft.SharePoint.Client.Runtime (in Microsoft.SharePoint.Client.Runtime.dll)
Syntax
'Declaration
Public Sub New ( _
obj As ClientObject, _
propName As String, _
propValue As Object _
)
'Usage
Dim obj As ClientObject
Dim propName As String
Dim propValue As Object
Dim instance As New ClientActionSetProperty(obj, propName, _
propValue)
public ClientActionSetProperty(
ClientObject obj,
string propName,
Object propValue
)
Parameters
obj
Type: Microsoft.SharePoint.Client.ClientObjectThe ClientObject object on which the specified property is set.
propName
Type: System.StringThe String object that represents the name of the property that will be set.
propValue
Type: System.ObjectThe Object that represents the specified property value.