BlockScope.CreateField(String, FieldAttributes, Object) Method
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.
Creates a new scope variable, using the specified name, value, and attributes.
This API supports the product infrastructure and is not intended to be used directly from your code.
protected:
override Microsoft::JScript::JSVariableField ^ CreateField(System::String ^ name, System::Reflection::FieldAttributes attributeFlags, System::Object ^ value);
protected override Microsoft.JScript.JSVariableField CreateField (string name, System.Reflection.FieldAttributes attributeFlags, object value);
override this.CreateField : string * System.Reflection.FieldAttributes * obj -> Microsoft.JScript.JSVariableField
Protected Overrides Function CreateField (name As String, attributeFlags As FieldAttributes, value As Object) As JSVariableField
Parameters
- name
- String
The name of the field.
- attributeFlags
- FieldAttributes
A bitwise combination of the enumeration values that describe the attributes of the field.
- value
- Object
The value of the field.
Returns
A scope variable that has the specified name, value, and attributes.