TagMapCollection.Item[Int32] 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置位于指定索引位置的 TagMapInfo 对象。
public:
property System::Web::Configuration::TagMapInfo ^ default[int] { System::Web::Configuration::TagMapInfo ^ get(int index); void set(int index, System::Web::Configuration::TagMapInfo ^ value); };
public System.Web.Configuration.TagMapInfo this[int index] { get; set; }
member this.Item(int) : System.Web.Configuration.TagMapInfo with get, set
Default Public Property Item(index As Integer) As TagMapInfo
参数
- index
- Int32
集合中 TagMapInfo 对象的索引。
属性值
指定索引处的 TagMapInfo 对象;如果该索引处没有对象,则为 null
。
示例
下面的代码示例说明如何使用 Item[] 属性。 此示例是为类提供的大型示例的 PagesSection 一部分。
// Get all current TagMappings in the collection.
for (int i = 0; i < pagesSection.TagMapping.Count; i++)
{
Console.WriteLine("TagMapping {0}:", i);
Console.WriteLine(" TagTypeName = '{0}'",
pagesSection.TagMapping[i].TagType);
Console.WriteLine(" MappedTagTypeName = '{0}'",
pagesSection.TagMapping[i].MappedTagType);
}
' Get all current TagMappings in the collection.
Dim k As Int32
For k = 1 To pagesSection.TagMapping.Count
Console.WriteLine("TagMapping {0}:", i)
Console.WriteLine(" TagTypeName = '{0}'", _
pagesSection.TagMapping(k).TagType)
Console.WriteLine(" MappedTagTypeName = '{0}'", _
pagesSection.TagMapping(k).MappedTagType)
Next
注解
TagMapInfo如果指定索引处已存在对象,则此属性将覆盖它;否则,它会创建一个新对象并将其添加到集合中。