共用方式為


TagMapCollection.Item[Int32] 屬性

定義

取得或設定在指定索引位置的 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

位於指定索引處的 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如果物件已存在於指定的索引處,則此屬性會覆寫它;否則,它會建立新的 物件,並將它加入至集合。

適用於

另請參閱