XamlNodeList Constructors
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.
Initializes a new instance of the XamlNodeList class.
Overloads
XamlNodeList(XamlSchemaContext) |
Initializes a new instance of the XamlNodeList class, using a provided schema context. |
XamlNodeList(XamlSchemaContext, Int32) |
Initializes a new instance of the XamlNodeList class, using a provided schema context and list size. |
XamlNodeList(XamlSchemaContext)
Initializes a new instance of the XamlNodeList class, using a provided schema context.
public:
XamlNodeList(System::Xaml::XamlSchemaContext ^ schemaContext);
public XamlNodeList (System.Xaml.XamlSchemaContext schemaContext);
new System.Xaml.XamlNodeList : System.Xaml.XamlSchemaContext -> System.Xaml.XamlNodeList
Public Sub New (schemaContext As XamlSchemaContext)
Parameters
- schemaContext
- XamlSchemaContext
The schema context to use for node operations.
Exceptions
schemaContext
is null
.
Remarks
The schema context is applied to the XAML writer that exists as the Writer value.
Applies to
XamlNodeList(XamlSchemaContext, Int32)
Initializes a new instance of the XamlNodeList class, using a provided schema context and list size.
public:
XamlNodeList(System::Xaml::XamlSchemaContext ^ schemaContext, int size);
public XamlNodeList (System.Xaml.XamlSchemaContext schemaContext, int size);
new System.Xaml.XamlNodeList : System.Xaml.XamlSchemaContext * int -> System.Xaml.XamlNodeList
Public Sub New (schemaContext As XamlSchemaContext, size As Integer)
Parameters
- schemaContext
- XamlSchemaContext
The schema context to use for node operations.
- size
- Int32
The intended item count of the list.
Exceptions
schemaContext
is null
.