OperationCollection クラス
アセンブリ: System.Web.Services (system.web.services.dll 内)


Operation クラスは、<portType> 要素で囲まれた WSDL (Web Services Description Language) <operation> 要素に対応します。WSDL の詳細については、http://www.w3.org/TR/wsdl/ の仕様を参照してください。

OperationCollection クラスによって公開されるプロパティとメソッドを使用する例を次に示します。
Option Strict On Imports System Imports System.Web.Services Imports System.Xml Imports System.Web.Services.Description Class MyOperationCollectionSample Public Shared Sub Main() Try ' Read the 'MathService_Input_vb.wsdl' file. Dim myDescription As ServiceDescription = _ ServiceDescription.Read("MathService_Input_vb.wsdl") Dim myPortTypeCollection As PortTypeCollection = _ myDescription.PortTypes ' Get the 'OperationCollection' for 'SOAP' protocol. Dim myOperationCollection As OperationCollection = _ myPortTypeCollection(0).Operations Dim myOperation As New Operation() myOperation.Name = "Add" Dim myOperationMessageInput As OperationMessage = _ CType(New OperationInput(), OperationMessage) myOperationMessageInput.Message = New XmlQualifiedName _ ("AddSoapIn", myDescription.TargetNamespace) Dim myOperationMessageOutput As OperationMessage = _ CType(New OperationOutput(), OperationMessage) myOperationMessageOutput.Message = New XmlQualifiedName _ ("AddSoapOut", myDescription.TargetNamespace) myOperation.Messages.Add(myOperationMessageInput) myOperation.Messages.Add(myOperationMessageOutput) myOperationCollection.Add(myOperation) If myOperationCollection.Contains(myOperation) = True Then Console.WriteLine("The index of the added 'myOperation' " + _ "operation is : " + _ myOperationCollection.IndexOf(myOperation).ToString) End If myOperationCollection.Remove(myOperation) ' Insert the 'myOpearation' operation at the index '0'. myOperationCollection.Insert(0, myOperation) Console.WriteLine("The operation at index '0' is : " + _ myOperationCollection.Item(0).Name) Dim myOperationArray(myOperationCollection.Count) As Operation myOperationCollection.CopyTo(myOperationArray, 0) Console.WriteLine("The operation(s) in the collection are :") Dim i As Integer For i = 0 To myOperationCollection.Count - 1 Console.WriteLine(" " + myOperationArray(i).Name) Next i myDescription.Write("MathService_New_vb.wsdl") Catch e As Exception Console.WriteLine("Exception caught!!!") Console.WriteLine("Source : " + e.Source) Console.WriteLine("Message : " + e.Message) End Try End Sub End Class
using System; using System.Web.Services; using System.Xml; using System.Web.Services.Description; class MyOperationCollectionSample { public static void Main() { try { // Read the 'MathService_Input_cs.wsdl' file. ServiceDescription myDescription = ServiceDescription.Read("MathService_Input_cs.wsdl"); PortTypeCollection myPortTypeCollection =myDescription.PortTypes; // Get the 'OperationCollection' for 'SOAP' protocol. OperationCollection myOperationCollection = myPortTypeCollection[0].Operations; Operation myOperation = new Operation(); myOperation.Name = "Add"; OperationMessage myOperationMessageInput = (OperationMessage) new OperationInput(); myOperationMessageInput.Message = new XmlQualifiedName ("AddSoapIn",myDescription.TargetNamespace); OperationMessage myOperationMessageOutput = (OperationMessage) new OperationOutput(); myOperationMessageOutput.Message = new XmlQualifiedName( "AddSoapOut",myDescription.TargetNamespace); myOperation.Messages.Add(myOperationMessageInput); myOperation.Messages.Add(myOperationMessageOutput); myOperationCollection.Add(myOperation); if(myOperationCollection.Contains(myOperation) == true) { Console.WriteLine("The index of the added 'myOperation' " + "operation is : " + myOperationCollection.IndexOf(myOperation)); } myOperationCollection.Remove(myOperation); // Insert the 'myOpearation' operation at the index '0'. myOperationCollection.Insert(0, myOperation); Console.WriteLine("The operation at index '0' is : " + myOperationCollection[0].Name); Operation[] myOperationArray = new Operation[ myOperationCollection.Count]; myOperationCollection.CopyTo(myOperationArray, 0); Console.WriteLine("The operation(s) in the collection are :"); for(int i = 0; i < myOperationCollection.Count; i++) { Console.WriteLine(" " + myOperationArray[i].Name); } myDescription.Write("MathService_New_cs.wsdl"); } catch(Exception e) { Console.WriteLine("Exception caught!!!"); Console.WriteLine("Source : " + e.Source); Console.WriteLine("Message : " + e.Message); } } }
#using <System.dll> #using <System.Xml.dll> #using <System.Web.Services.dll> using namespace System; using namespace System::Web::Services; using namespace System::Xml; using namespace System::Web::Services::Description; int main() { try { // Read the 'MathService_Input_cs.wsdl' file. ServiceDescription^ myDescription = ServiceDescription::Read( "MathService_Input_cs.wsdl" ); PortTypeCollection^ myPortTypeCollection = myDescription->PortTypes; // Get the 'OperationCollection' for 'SOAP' protocol. OperationCollection^ myOperationCollection = myPortTypeCollection[ 0 ]->Operations; Operation^ myOperation = gcnew Operation; myOperation->Name = "Add"; OperationMessage^ myOperationMessageInput = (OperationMessage^)(gcnew OperationInput); myOperationMessageInput->Message = gcnew XmlQualifiedName( "AddSoapIn",myDescription->TargetNamespace ); OperationMessage^ myOperationMessageOutput = (OperationMessage^)(gcnew OperationOutput); myOperationMessageOutput->Message = gcnew XmlQualifiedName( "AddSoapOut",myDescription->TargetNamespace ); myOperation->Messages->Add( myOperationMessageInput ); myOperation->Messages->Add( myOperationMessageOutput ); myOperationCollection->Add( myOperation ); if ( myOperationCollection->Contains( myOperation ) == true ) { Console::WriteLine( "The index of the added 'myOperation' operation is : {0}", myOperationCollection->IndexOf( myOperation ) ); } myOperationCollection->Remove( myOperation ); // Insert the 'myOpearation' operation at the index '0'. myOperationCollection->Insert( 0, myOperation ); Console::WriteLine( "The operation at index '0' is : {0}", myOperationCollection[ 0 ]->Name ); array<Operation^>^myOperationArray = gcnew array<Operation^>(myOperationCollection->Count); myOperationCollection->CopyTo( myOperationArray, 0 ); Console::WriteLine( "The operation(s) in the collection are :" ); for ( int i = 0; i < myOperationCollection->Count; i++ ) { Console::WriteLine( " {0}", myOperationArray[ i ]->Name ); } myDescription->Write( "MathService_New_cs.wsdl" ); } catch ( Exception^ e ) { Console::WriteLine( "Exception caught!!!" ); Console::WriteLine( "Source : {0}", e->Source ); Console::WriteLine( "Message : {0}", e->Message ); } }
import System.*; import System.Web.Services.*; import System.Xml.*; import System.Web.Services.Description.*; class MyOperationCollectionSample { public static void main(String[] args) { try { // Read the 'MathService_Input_jsl.wsdl' file. ServiceDescription myDescription = ServiceDescription. Read("MathService_Input_jsl.wsdl"); PortTypeCollection myPortTypeCollection = myDescription. get_PortTypes(); // Get the 'OperationCollection' for 'SOAP' protocol. OperationCollection myOperationCollection = myPortTypeCollection. get_Item(0).get_Operations(); Operation myOperation = new Operation(); myOperation.set_Name("Add"); OperationMessage myOperationMessageInput = (OperationMessage) new OperationInput(); myOperationMessageInput.set_Message(new XmlQualifiedName( "AddSoapIn", myDescription.get_TargetNamespace())); OperationMessage myOperationMessageOutput = (OperationMessage) new OperationOutput(); myOperationMessageOutput.set_Message(new XmlQualifiedName( "AddSoapOut", myDescription.get_TargetNamespace())); myOperation.get_Messages().Add(myOperationMessageInput); myOperation.get_Messages().Add(myOperationMessageOutput); myOperationCollection.Add(myOperation); if (myOperationCollection.Contains(myOperation) == true) { Console.WriteLine("The index of the added 'myOperation' " + "operation is : " + myOperationCollection.IndexOf(myOperation)); } myOperationCollection.Remove(myOperation); // Insert the 'myOpearation' operation at the index '0'. myOperationCollection.Insert(0, myOperation); Console.WriteLine("The operation at index '0' is : " + myOperationCollection.get_Item(0).get_Name()); Operation myOperationArray[] = new Operation[myOperationCollection. get_Count()]; myOperationCollection.CopyTo(myOperationArray, 0); Console.WriteLine("The operation(s) in the collection are :"); for (int i = 0; i < myOperationCollection.get_Count(); i++) { Console.WriteLine(" " + myOperationArray[i].get_Name()); } myDescription.Write("MathService_New_jsl.wsdl"); } catch (System.Exception e) { Console.WriteLine("Exception caught!!!"); Console.WriteLine("Source : " + e.get_Source()); Console.WriteLine("Message : " + e.get_Message()); } } //main } //MyOperationCollectionSample

System.Collections.CollectionBase
System.Web.Services.Description.ServiceDescriptionBaseCollection
System.Web.Services.Description.OperationCollection


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 によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


OperationCollection プロパティ

名前 | 説明 | |
---|---|---|
![]() | Capacity | CollectionBase に格納できる要素の数を取得または設定します。 ( CollectionBase から継承されます。) |
![]() | Count | CollectionBase インスタンスに格納されている要素の数を取得します。このプロパティはオーバーライドできません。 ( CollectionBase から継承されます。) |
![]() | Item | 指定した 0 から始まるインデックス番号にある Operation の値を取得または設定します。 |

名前 | 説明 | |
---|---|---|
![]() | InnerList | CollectionBase インスタンス内の要素のリストを格納する ArrayList を取得します。 ( CollectionBase から継承されます。) |
![]() | List | CollectionBase インスタンス内の要素のリストを格納する IList を取得します。 ( CollectionBase から継承されます。) |

OperationCollection メソッド


名前 | 説明 | |
---|---|---|
![]() | Finalize | Object がガベージ コレクションにより収集される前に、その Object がリソースを解放し、その他のクリーンアップ操作を実行できるようにします。 ( Object から継承されます。) |
![]() | MemberwiseClone | 現在の Object の簡易コピーを作成します。 ( Object から継承されます。) |
![]() | OnClear | CollectionBase インスタンスの内容を消去するときに、追加のカスタム プロセスを実行します。 ( CollectionBase から継承されます。) |
![]() | OnClearComplete | CollectionBase インスタンスの内容を消去した後に、追加のカスタム プロセスを実行します。 ( CollectionBase から継承されます。) |
![]() | OnInsert | CollectionBase インスタンスに新しい要素を挿入する前に、追加のカスタム プロセスを実行します。 ( CollectionBase から継承されます。) |
![]() | OnInsertComplete | CollectionBase インスタンスに新しい要素を挿入した後に、追加のカスタム プロセスを実行します。 ( CollectionBase から継承されます。) |
![]() | OnRemove | CollectionBase インスタンスから要素を削除するときに、追加のカスタム プロセスを実行します。 ( CollectionBase から継承されます。) |
![]() | OnRemoveComplete | CollectionBase インスタンスから要素を削除した後に、追加のカスタム プロセスを実行します。 ( CollectionBase から継承されます。) |
![]() | OnSet | CollectionBase インスタンスに値を設定する前に、追加のカスタム プロセスを実行します。 ( CollectionBase から継承されます。) |
![]() | OnSetComplete | CollectionBase インスタンスに値を設定した後に、追加のカスタム プロセスを実行します。 ( CollectionBase から継承されます。) |
![]() | OnValidate | 値を検証するときに、追加のカスタム プロセスを実行します。 ( CollectionBase から継承されます。) |

OperationCollection メンバ
Operation クラスのインスタンスのコレクションを表します。このクラスは継承できません。
OperationCollection データ型で公開されるメンバを以下の表に示します。

名前 | 説明 | |
---|---|---|
![]() | Capacity | CollectionBase に格納できる要素の数を取得または設定します。(CollectionBase から継承されます。) |
![]() | Count | CollectionBase インスタンスに格納されている要素の数を取得します。このプロパティはオーバーライドできません。(CollectionBase から継承されます。) |
![]() | Item | 指定した 0 から始まるインデックス番号にある Operation の値を取得または設定します。 |

名前 | 説明 | |
---|---|---|
![]() | InnerList | CollectionBase インスタンス内の要素のリストを格納する ArrayList を取得します。(CollectionBase から継承されます。) |
![]() | List | CollectionBase インスタンス内の要素のリストを格納する IList を取得します。(CollectionBase から継承されます。) |


名前 | 説明 | |
---|---|---|
![]() | Finalize | Object がガベージ コレクションにより収集される前に、その Object がリソースを解放し、その他のクリーンアップ操作を実行できるようにします。 (Object から継承されます。) |
![]() | MemberwiseClone | 現在の Object の簡易コピーを作成します。 (Object から継承されます。) |
![]() | OnClear | CollectionBase インスタンスの内容を消去するときに、追加のカスタム プロセスを実行します。 (CollectionBase から継承されます。) |
![]() | OnClearComplete | CollectionBase インスタンスの内容を消去した後に、追加のカスタム プロセスを実行します。 (CollectionBase から継承されます。) |
![]() | OnInsert | CollectionBase インスタンスに新しい要素を挿入する前に、追加のカスタム プロセスを実行します。 (CollectionBase から継承されます。) |
![]() | OnInsertComplete | CollectionBase インスタンスに新しい要素を挿入した後に、追加のカスタム プロセスを実行します。 (CollectionBase から継承されます。) |
![]() | OnRemove | CollectionBase インスタンスから要素を削除するときに、追加のカスタム プロセスを実行します。 (CollectionBase から継承されます。) |
![]() | OnRemoveComplete | CollectionBase インスタンスから要素を削除した後に、追加のカスタム プロセスを実行します。 (CollectionBase から継承されます。) |
![]() | OnSet | CollectionBase インスタンスに値を設定する前に、追加のカスタム プロセスを実行します。 (CollectionBase から継承されます。) |
![]() | OnSetComplete | CollectionBase インスタンスに値を設定した後に、追加のカスタム プロセスを実行します。 (CollectionBase から継承されます。) |
![]() | OnValidate | 値を検証するときに、追加のカスタム プロセスを実行します。 (CollectionBase から継承されます。) |

- OperationCollectionのページへのリンク