OperationBindingCollection.Item プロパティ
アセンブリ: System.Web.Services (system.web.services.dll 内)

Dim instance As OperationBindingCollection Dim index As Integer Dim value As OperationBinding value = instance(index) instance(index) = value
public: property OperationBinding^ default [int] { OperationBinding^ get (int index); void set (int index, OperationBinding^ value); }
/** @property */ public OperationBinding get_Item (int index) /** @property */ public void set_Item (int index, OperationBinding value)
プロパティ値
OperationBinding。

0 から始まるインデックス番号を使用し、OperationBindingCollection のメンバを取得する方法を次の例に示します。
' Get the OperationBinding of the Add operation from the collection. Dim myOperationBinding As OperationBinding = _ myOperationBindingCollection(3) ' Remove the OperationBinding of the 'Add' operation from ' the collection. myOperationBindingCollection.Remove(myOperationBinding) Console.WriteLine(ControlChars.NewLine & _ "Removed the OperationBinding of the " & _ "Add operation from the collection.")
// Get the OperationBinding of the Add operation from the collection. OperationBinding myOperationBinding = myOperationBindingCollection[3]; // Remove the OperationBinding of the Add operation from // the collection. myOperationBindingCollection.Remove(myOperationBinding); Console.WriteLine("\nRemoved the OperationBinding of the " + "Add operation from the collection.");
// Get the OperationBinding of the Add operation from the collection. OperationBinding^ myOperationBinding = myOperationBindingCollection[ 3 ]; // Remove the OperationBinding of the Add operation from // the collection. myOperationBindingCollection->Remove( myOperationBinding ); Console::WriteLine( "\nRemoved the OperationBinding of the " "Add operation from the collection." );
// Get the OperationBinding of the Add operation from the // collection. OperationBinding myOperationBinding = myOperationBindingCollection. get_Item(3); // Remove the OperationBinding of the Add operation from // the collection. myOperationBindingCollection.Remove(myOperationBinding); Console.WriteLine("\nRemoved the OperationBinding of the " + "Add operation from the collection.");

Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Weblioに収録されているすべての辞書からOperationBindingCollection.Item プロパティを検索する場合は、下記のリンクをクリックしてください。

- OperationBindingCollection.Item プロパティのページへのリンク