XmlSchemaReference Class

 

Represents the combination of an XML schema location and a target namespace.

Namespace:   Microsoft.VisualStudio.XmlEditor
Assembly:  Microsoft.VisualStudio.XmlEditor (in Microsoft.VisualStudio.XmlEditor.dll)

System::Object
  Microsoft.VisualStudio.XmlEditor::XmlSchemaReference

public ref class XmlSchemaReference 

NameDescription
System_CAPS_pubmethodXmlSchemaReference(String^, Uri^)

Initializes a new instance of the XmlSchemaReference class.

NameDescription
System_CAPS_pubpropertyLocation

Gets the physical location of this schema, specified as a URI.

System_CAPS_pubpropertyTargetNamespace

Gest the target namespace that this XML schema defines in the targetNamespace attribute.

NameDescription
System_CAPS_pubmethodEquals(Object^)

Compares the specified XmlSchemaReference with the current XmlSchemaReference to see if they are equal.(Overrides Object::Equals(Object^).)

System_CAPS_protmethodFinalize()

(Inherited from Object.)

System_CAPS_pubmethodGetHashCode()

Gets a hash code. (Overrides Object::GetHashCode().)

System_CAPS_pubmethodGetType()

(Inherited from Object.)

System_CAPS_protmethodMemberwiseClone()

(Inherited from Object.)

System_CAPS_pubmethodToString()

(Inherited from Object.)

NameDescription
System_CAPS_pubfieldSystem_CAPS_staticEmpty

Represents an XmlSchemaReference object with no URI location and no target namespace.

NameDescription
System_CAPS_puboperatorSystem_CAPS_staticEquality(XmlSchemaReference^, XmlSchemaReference^)

Determines whether two specified XmlSchemaReference objects are equal.

System_CAPS_puboperatorSystem_CAPS_staticInequality(XmlSchemaReference^, XmlSchemaReference^)

Determines whether two specified XmlSchemaReference objects are not equal.

The TargetNamespace matches the targetNamespace attribute on the root xsd:schema element in the XML schema located at the specified location.

This class is concrete so that it is easier for external users to call the schema services APIs, which often require XmlSchemaReference.

This class (and derived classes) should always be kept immutable, meaning that the data contained in the instance cannot be changed after construction is complete.

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Return to top
Show: