DynamicFieldInfo Constructors
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.
Initializes a new instance of the DynamicFieldInfo class.
Overloads
DynamicFieldInfo(String, Object) |
This API supports the product infrastructure and is not intended to be used directly from your code. Initializes a new instance of the DynamicFieldInfo class, using the specified name and value. |
DynamicFieldInfo(String, Object, String) |
This API supports the product infrastructure and is not intended to be used directly from your code. Initializes a new instance of the DynamicFieldInfo class, using the specified name, value, and type. |
DynamicFieldInfo(String, Object)
Initializes a new instance of the DynamicFieldInfo class, using the specified name and value.
This API supports the product infrastructure and is not intended to be used directly from your code.
public:
DynamicFieldInfo(System::String ^ name, System::Object ^ value);
public DynamicFieldInfo (string name, object value);
new Microsoft.JScript.DynamicFieldInfo : string * obj -> Microsoft.JScript.DynamicFieldInfo
Public Sub New (name As String, value As Object)
Parameters
- name
- String
The name of the field.
- value
- Object
The value of the field.
See also
Applies to
DynamicFieldInfo(String, Object, String)
Initializes a new instance of the DynamicFieldInfo class, using the specified name, value, and type.
This API supports the product infrastructure and is not intended to be used directly from your code.
public:
DynamicFieldInfo(System::String ^ name, System::Object ^ value, System::String ^ fieldTypeName);
public DynamicFieldInfo (string name, object value, string fieldTypeName);
new Microsoft.JScript.DynamicFieldInfo : string * obj * string -> Microsoft.JScript.DynamicFieldInfo
Public Sub New (name As String, value As Object, fieldTypeName As String)
Parameters
- name
- String
The name of the field.
- value
- Object
The value of the field.
- fieldTypeName
- String
The type of the field.
See also
Applies to
.NET