Share via


XmlStore.XmlModels Property

 

Gets a list of all open XmlModel objects that are associated with this store.

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

Syntax

public abstract IEnumerable<XmlModel> XmlModels { get; }
public:
property IEnumerable<XmlModel^>^ XmlModels {
    virtual IEnumerable<XmlModel^>^ get() abstract;
}
abstract XmlModels : IEnumerable<XmlModel> with get
Public MustOverride ReadOnly Property XmlModels As IEnumerable(Of XmlModel)

Property Value

Type: System.Collections.Generic.IEnumerable<XmlModel>

A list of all open XmlModel objects that are associated with this store.

Remarks

An XmlModel object stays open until you call Dispose.

See Also

XmlStore Class
Microsoft.VisualStudio.XmlEditor Namespace

Return to top