SiteMapNodeCollection.Item[Int32] 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
컬렉션의 지정된 인덱스에 있는 SiteMapNode 개체를 가져오거나 설정합니다.
public:
virtual property System::Web::SiteMapNode ^ default[int] { System::Web::SiteMapNode ^ get(int index); void set(int index, System::Web::SiteMapNode ^ value); };
public virtual System.Web.SiteMapNode this[int index] { get; set; }
member this.Item(int) : System.Web.SiteMapNode with get, set
Default Public Overridable Property Item(index As Integer) As SiteMapNode
매개 변수
- index
- Int32
찾을 SiteMapNode의 인덱스입니다.
속성 값
SiteMapNode의 요소를 나타내는 SiteMapNodeCollection입니다.
예외
SiteMapNodeCollection이 읽기 전용인 경우
setter에 제공된 값이 null
인 경우
예제
다음 코드 예제를 사용 하는 방법에 설명 합니다 Item[] 검색할 인덱서의 SiteMapNode 에서 개체를 SiteMapNodeCollection 컬렉션입니다. 이 예제에서는 SiteMapNode 개체가 사용 하 여 내부 배열에 대 한 두 번째 요소의 해당 위치에서 제거 되는 Remove 메서드 고 배열에 추가 합니다 Add 메서드. 삽입 하는 SiteMapNode 특정 인덱스에 개체, 대신 배열의 끝에 추가 사용을 Insert 메서드.
// Move a node from one spot in the list to another.
try {
Response.Write("Original node order: <BR>");
foreach (SiteMapNode node in nodes) {
Response.Write( node.Title + "<BR>");
}
SiteMapNode aNode = nodes[1];
Response.Write("Adding " + aNode.Title + " to the end of the collection.<BR>");
nodes.Add(aNode);
Response.Write("Removing " + aNode.Title + " at position 1. <BR>");
nodes.Remove(nodes[1]);
Response.Write("New node order: <BR>");
foreach (SiteMapNode node in nodes) {
Response.Write( node.Title + "<BR>");
}
}
catch (NotSupportedException nse) {
Response.Write("NotSupportedException caught.<BR>");
}
' Move a node from one spot in the list to another.
Try
Response.Write("Original node order: <BR>")
Dim node As SiteMapNode
For Each node In nodes
Response.Write( node.Title & "<BR>")
Next
Dim aNode As SiteMapNode = nodes(1)
Response.Write("Adding " & aNode.Title & " to the end of the collection.<BR>")
nodes.Add(aNode)
Response.Write("Removing " & aNode.Title & " at position 1. <BR>")
nodes.Remove(nodes(1))
Response.Write("New node order: <BR>")
For Each node In nodes
Response.Write( node.Title & "<BR>")
Next
Catch nse As NotSupportedException
Response.Write("NotSupportedException caught.<BR>")
End Try
설명
사용할 수는 Item[] 의 내용을 반복 하는 인덱서를 SiteMapNodeCollection 컬렉션 또는 교체할 수는 SiteMapNode 지정 된 인덱스 개체입니다.