RemoteArgumentKind Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies the kind of argument that a RemoteArgument represents.
public enum class RemoteArgumentKind
public enum RemoteArgumentKind
type RemoteArgumentKind =
Public Enum RemoteArgumentKind
- Inheritance
Fields
Name | Value | Description |
---|---|---|
Missing | 0 | The RemoteArgument represents the Missing value. This is the default value for the RemoteArgumentKind property. |
Intrinsic | 1 | The RemoteArgument represents an intrinsic data type. |
IntrinsicArray | 2 | The RemoteArgument represents an Array that contains elements of an intrinsic data type. |
Contract | 3 | The RemoteArgument represents an IContract. |
Remarks
The RemoteArgumentKind enumeration is used by the RemoteArgument.RemoteArgumentKind property.
An intrinsic data type is a primitive data type (that is, the Type.IsPrimitive property of the type is true
) or a String, Decimal, DateTime, or DBNull.