Transform.Resolver Property

Definition

Sets the current XmlResolver object.

public:
 property System::Xml::XmlResolver ^ Resolver {  void set(System::Xml::XmlResolver ^ value); };
public System.Xml.XmlResolver Resolver { set; }
public System.Xml.XmlResolver? Resolver { set; }
[System.Runtime.InteropServices.ComVisible(false)]
public System.Xml.XmlResolver Resolver { set; }
member this.Resolver : System.Xml.XmlResolver
[<System.Runtime.InteropServices.ComVisible(false)>]
member this.Resolver : System.Xml.XmlResolver
Public Property Resolver As XmlResolver

Property Value

The current XmlResolver object. This property defaults to an XmlSecureResolver object.

Attributes

Remarks

The XmlResolver class resolves external XML resources named by a Uniform Resource Identifier (URI). If you do not trust the source of the XML file, you might not want to allow the XML file to access computer resources named by the URI. The Resolver property allows you to control the level of access that XML files have to computer resources by specifying different XmlResolver objects. If you do not want to allow any access, you can set this property to null (Nothing in Visual Basic).

Applies to