SchemaImporterExtensionElementCollection.Item[] 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.
Gets or sets the object that represents the XML element at the specified index.
Overloads
Item[Int32] |
This API supports the product infrastructure and is not intended to be used directly from your code. Gets or sets the object that represents the XML element at the specified index. |
Item[String] |
This API supports the product infrastructure and is not intended to be used directly from your code. Gets or sets the item with the specified name. |
Item[Int32]
Gets or sets the object that represents the XML element at the specified index.
This API supports the product infrastructure and is not intended to be used directly from your code.
public:
property System::Xml::Serialization::Configuration::SchemaImporterExtensionElement ^ default[int] { System::Xml::Serialization::Configuration::SchemaImporterExtensionElement ^ get(int index); void set(int index, System::Xml::Serialization::Configuration::SchemaImporterExtensionElement ^ value); };
public System.Xml.Serialization.Configuration.SchemaImporterExtensionElement this[int index] { get; set; }
member this.Item(int) : System.Xml.Serialization.Configuration.SchemaImporterExtensionElement with get, set
Default Public Property Item(index As Integer) As SchemaImporterExtensionElement
Parameters
- index
- Int32
The zero-based index of the XML element to get or set.
Property Value
The SchemaImporterExtensionElement at the specified index.
Exceptions
Applies to
Item[String]
Gets or sets the item with the specified name.
This API supports the product infrastructure and is not intended to be used directly from your code.
public:
property System::Xml::Serialization::Configuration::SchemaImporterExtensionElement ^ default[System::String ^] { System::Xml::Serialization::Configuration::SchemaImporterExtensionElement ^ get(System::String ^ name); void set(System::String ^ name, System::Xml::Serialization::Configuration::SchemaImporterExtensionElement ^ value); };
public System.Xml.Serialization.Configuration.SchemaImporterExtensionElement this[string name] { get; set; }
member this.Item(string) : System.Xml.Serialization.Configuration.SchemaImporterExtensionElement with get, set
Default Public Property Item(name As String) As SchemaImporterExtensionElement
Parameters
- name
- String
The name of the item to get or set.
Property Value
The SchemaImporterExtensionElement with the specified name.