Initializes a new instance of the UpdateRequestParameter class for the given propertyName, value, mode, and calculated flags. This API is currently not supported.
Namespace: Microsoft.ResourceManagement.WebServices.WSResourceManagement
Assembly: Microsoft.ResourceManagement (in microsoft.resourcemanagement.dll)

Usage

Visual Basic
Dim propertyName As String
Dim mode As UpdateMode
Dim value As Object
Dim calculated As Boolean

Dim instance As New UpdateRequestParameter(propertyName, mode, value, calculated)

Syntax

Visual Basic
Public Sub New ( _
		propertyName As String, _
		mode As UpdateMode, _
		value As Object, _
		calculated As Boolean _
)
C#
public UpdateRequestParameter (
		string propertyName,
		UpdateMode mode,
		Object value,
		bool calculated
)
C++
public:
UpdateRequestParameter (
		String^ propertyName, 
		UpdateMode mode, 
		Object^ value, 
		bool calculated
)
J#
public UpdateRequestParameter (
		String propertyName, 
		UpdateMode mode, 
		Object value, 
		boolean calculated
)
JScript
public function UpdateRequestParameter (
		propertyName : String, 
		mode : UpdateMode, 
		value : Object, 
		calculated : boolean
)

Parameters

propertyName

Indicates the name of the property on the targetObject parameter for which to set the value.

mode

An UpdateMode value that indicates the type of update operation that is being performed for the given propertyName and value flags.

value

Indicates the value that is associated with the propertyName parameter. The mode parameter determines whether this value will replace, be added to, or be removed from, the property that is indicated by propertyName.

calculated

A Boolean value.

Platforms

Target Platforms

Windows 2008 x64 Edition

See Also