Share via


XmlSchemaSetBuilder.Sources Property

 

Gets or sets a list of XmlSchemaReference objects that represent schemas.

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

Syntax

public abstract IList<XmlSchemaReference> Sources { get; set; }
public:
property IList<XmlSchemaReference^>^ Sources {
    virtual IList<XmlSchemaReference^>^ get() abstract;
    virtual void set(IList<XmlSchemaReference^>^ value) abstract;
}
abstract Sources : IList<XmlSchemaReference> with get, set
Public MustOverride Property Sources As IList(Of XmlSchemaReference)

Property Value

Type: System.Collections.Generic.IList<XmlSchemaReference>

A list of XmlSchemaReference objects that represent schemas.

Remarks

To build a schema set, the builder must start with a set of source (root) locations, which are traversed along with their imported and included schemas to construct the final set. The final set is guaranteed to contain the roots. By default, the list is non-null but empty.

See Also

XmlSchemaSetBuilder Class
Microsoft.VisualStudio.XmlEditor Namespace

Return to top