ScriptMemberAttributeName Property |
Gets or sets the name that script code will use to access the target type member.
Namespace: Microsoft.ClearScriptAssembly: ClearScript.Core (in ClearScript.Core.dll) Version: 7.4.5
Syntax public string Name { get; set; }
Public Property Name As String
Get
Set
public:
property String^ Name {
String^ get ();
void set (String^ value);
}
member Name : string with get, set
Property Value
StringRemarks
The default value is the name of the target type member. Note that this property has no
effect on the method binding algorithm. If a script-based call is bound to a method
that is exposed under a different name, it will be rejected even if an overload exists
that could receive the call.
See Also