ServiceDescriptionCollection.Item[] 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
전달된 매개 변수에서 지정한 ServiceDescription 인스턴스를 가져오거나 설정합니다.
오버로드
Item[Int32] |
지정된 인덱스(0부터 시작)에서 ServiceDescription의 값을 가져오거나 설정합니다. |
Item[String] |
해당 ServiceDescription 속성에서 지정한 TargetNamespace을 가져옵니다. |
Item[Int32]
지정된 인덱스(0부터 시작)에서 ServiceDescription의 값을 가져오거나 설정합니다.
public:
property System::Web::Services::Description::ServiceDescription ^ default[int] { System::Web::Services::Description::ServiceDescription ^ get(int index); void set(int index, System::Web::Services::Description::ServiceDescription ^ value); };
public System.Web.Services.Description.ServiceDescription this[int index] { get; set; }
member this.Item(int) : System.Web.Services.Description.ServiceDescription with get, set
Default Public Property Item(index As Integer) As ServiceDescription
매개 변수
- index
- Int32
값이 수정되거나 반환된 ServiceDescription의 인덱스이며 0부터 시작합니다.
속성 값
지정한 인덱스의 ServiceDescription 값입니다.
예제
// Display element properties in the collection using
// the Item property.
for ( int i = 0; i < myCollection->Count; i++ )
Console::WriteLine( myCollection[ i ]->TargetNamespace );
// Display element properties in collection using 'Item' property.
for(int i=0; i<myCollection.Count; i++)
{
Console.WriteLine(myCollection[i].TargetNamespace);
}
' Display element properties in collection using 'Item' property.
Dim i As Integer
For i = 0 To myCollection.Count - 1
Console.WriteLine(myCollection(i).TargetNamespace)
Next i
적용 대상
Item[String]
해당 ServiceDescription 속성에서 지정한 TargetNamespace을 가져옵니다.
public:
property System::Web::Services::Description::ServiceDescription ^ default[System::String ^] { System::Web::Services::Description::ServiceDescription ^ get(System::String ^ ns); };
public System.Web.Services.Description.ServiceDescription this[string ns] { get; }
member this.Item(string) : System.Web.Services.Description.ServiceDescription
Default Public ReadOnly Property Item(ns As String) As ServiceDescription
매개 변수
- ns
- String
반환된 ServiceDescription의 네임스페이스입니다.
속성 값
네임스페이스 속성에서 지정한 ServiceDescription입니다.
예제
// Get a ServiceDescription in the collection using
// the Item property.
ServiceDescription^ myServiceDescription = myCollection[ "http://tempuri1.org/" ];
// Get a 'ServiceDescription' object in collection using 'Item'.
ServiceDescription myServiceDescription = myCollection["http://tempuri1.org/"];
' Get a 'ServiceDescription' object in collection using 'Item'.
Dim myServiceDescription As ServiceDescription = myCollection("http://tempuri1.org/")