Transform.Resolver 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.
Sets the current XmlResolver object.
public:
property System::Xml::XmlResolver ^ Resolver { void set(System::Xml::XmlResolver ^ value); };
public System.Xml.XmlResolver? Resolver { set; }
[System.Runtime.InteropServices.ComVisible(false)]
public System.Xml.XmlResolver Resolver { set; }
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).