DOMResult.SystemId Property
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.
Get the System Identifier. -or- Set the systemId that may be used in association with the node.
public virtual string? SystemId { [Android.Runtime.Register("getSystemId", "()Ljava/lang/String;", "GetGetSystemIdHandler")] get; [Android.Runtime.Register("setSystemId", "(Ljava/lang/String;)V", "GetSetSystemId_Ljava_lang_String_Handler")] set; }
[<get: Android.Runtime.Register("getSystemId", "()Ljava/lang/String;", "GetGetSystemIdHandler")>]
[<set: Android.Runtime.Register("setSystemId", "(Ljava/lang/String;)V", "GetSetSystemId_Ljava_lang_String_Handler")>]
member this.SystemId : string with get, set
Property Value
The system identifier.
Implements
- Attributes
Remarks
Property getter documentation:
Get the System Identifier.
If no System ID was set via #DOMResult(Node node, String systemId)
, #DOMResult(Node node, Node nextSibling, String systemId)
or #setSystemId(String systemId)
, then null
will be returned.
Java documentation for javax.xml.transform.dom.DOMResult.getSystemId()
.
Property setter documentation:
Set the systemId that may be used in association with the node.
Java documentation for javax.xml.transform.dom.DOMResult.setSystemId(java.lang.String)
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.