DiscoveryClientResultCollection.Item[Int32] Property
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 DiscoveryClientResult at position i
of the DiscoveryClientResultCollection.
public:
property System::Web::Services::Discovery::DiscoveryClientResult ^ default[int] { System::Web::Services::Discovery::DiscoveryClientResult ^ get(int i); void set(int i, System::Web::Services::Discovery::DiscoveryClientResult ^ value); };
public System.Web.Services.Discovery.DiscoveryClientResult this[int i] { get; set; }
member this.Item(int) : System.Web.Services.Discovery.DiscoveryClientResult with get, set
Default Public Property Item(i As Integer) As DiscoveryClientResult
- i
- Int32
The zero-based index of the DiscoveryClientResult to get or set.
The DiscoveryClientResult at the specified index.
i
is not a valid index in the DiscoveryClientResultCollection.
for ( int i = 0; i < myDiscoveryClientResultCollection->Count; i++ )
{
DiscoveryClientResult^ myClientResult = myDiscoveryClientResultCollection[ i ];
Console::WriteLine( "DiscoveryClientResult {0}", (i + 1) );
Console::WriteLine( "Type of reference in the discovery document: {0}", myClientResult->ReferenceTypeName );
Console::WriteLine( "Url for reference:{0}", myClientResult->Url );
Console::WriteLine( "File for saving the reference: {0}", myClientResult->Filename );
}
for(int i=0; i<myDiscoveryClientResultCollection.Count; i++)
{
DiscoveryClientResult myClientResult =
myDiscoveryClientResultCollection[i];
Console.WriteLine("DiscoveryClientResult "+(i+1));
Console.WriteLine("Type of reference in the discovery document: "
+ myClientResult.ReferenceTypeName);
Console.WriteLine("Url for reference:" + myClientResult.Url);
Console.WriteLine("File for saving the reference: "
+ myClientResult.Filename);
}
Dim i As Integer
For i = 0 To myDiscoveryClientResultCollection.Count - 1
Dim myClientResult As DiscoveryClientResult = _
myDiscoveryClientResultCollection(i)
Console.WriteLine("DiscoveryClientResult " & (i + 1).ToString())
Console.WriteLine("Type of reference in the discovery document: " _
& myClientResult.ReferenceTypeName)
Console.WriteLine("Url for reference:" & myClientResult.Url)
Console.WriteLine("File for saving the reference: " _
& myClientResult.Filename)
Next i
This property provides the ability to access a specific element in the collection by using the following syntax: myCollection[index]
.
Produkt | Versiounen |
---|---|
.NET Framework | 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 |
Feedback zu .NET
.NET ass en Open-Source-Projet. Wielt e Link, fir Feedback ze ginn: