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 プロパティ
                    を検索
                     全ての辞書からOperationBindingCollection.Item プロパティ
                    を検索
                - OperationBindingCollection.Item プロパティのページへのリンク

 
                             
                    


