JSObject.GetPropertyAsString(String) 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.
Returns the value of the property as String if the property exists, otherwise null
.
public:
System::String ^ GetPropertyAsString(System::String ^ propertyName);
public string? GetPropertyAsString (string propertyName);
member this.GetPropertyAsString : string -> string
Public Function GetPropertyAsString (propertyName As String) As String
Parameters
- propertyName
- String
The name of the property.
Returns
The value of the property with the specified name.
Exceptions
The property value is not a string.
Remarks
This method throws a JSException when the property value is not a string.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.