LogicalMethodInfo.LogicalMethodInfo Constructor
.NET Framework 3.0
Initializes a new instance of the LogicalMethodInfo class with the MethodInfo passed in.
Namespace: System.Web.Services.Protocols
Assembly: System.Web.Services (in system.web.services.dll)
Assembly: System.Web.Services (in system.web.services.dll)
public LogicalMethodInfo ( MethodInfo methodInfo )
public function LogicalMethodInfo ( methodInfo : MethodInfo )
Not applicable.
Parameters
- methodInfo
A MethodInfo to initialize the properties of LogicalMethodInfo common to the MethodInfo.
| Exception type | Condition |
|---|---|
|
The System.Reflection.MethodBase.IsStatic property of the methodInfo parameter is true. -or- The System.Reflection.MethodBase.GetParameters method of the methodInfo parameter does not contain all the parameters required by the method represented by the instance of LogicalMethodInfo. |
#using <System.Web.Services.dll> using namespace System; using namespace System::Reflection; using namespace System::Web::Services::Protocols; public ref class MyService { public: int Add( int xValue, int yValue ) { return (xValue + yValue); } }; int main() { Type^ myType = MyService::typeid; MethodInfo^ myMethodInfo = myType->GetMethod( "Add" ); LogicalMethodInfo^ myLogicalMethodInfo = gcnew LogicalMethodInfo( myMethodInfo ); Console::WriteLine( "\nPrinting properties of method : {0}\n", myLogicalMethodInfo ); Console::WriteLine( "\nThe declaring type of the method {0} is :\n", myLogicalMethodInfo->Name ); Console::WriteLine( "\t {0}", myLogicalMethodInfo->DeclaringType ); Console::WriteLine( "\nThe parameters of the method {0} are :\n", myLogicalMethodInfo->Name ); array<ParameterInfo^>^myParameters = myLogicalMethodInfo->Parameters; for ( int i = 0; i < myParameters->Length; i++ ) { Console::WriteLine( "\t {0}", String::Concat( myParameters[ i ]->Name, " : ", myParameters[ i ]->ParameterType ) ); } Console::WriteLine( "\nThe return type of the method {0} is :\n", myLogicalMethodInfo->Name ); Console::WriteLine( "\t {0}", myLogicalMethodInfo->ReturnType ); MyService^ service = gcnew MyService; Console::WriteLine( "\nInvoking the method {0}\n", myLogicalMethodInfo->Name ); array<Object^>^values = gcnew array<Object^>(2); values[ 0 ] = 10; values[ 1 ] = 10; Console::WriteLine( "\tThe sum of 10 and 10 is : {0}", myLogicalMethodInfo->Invoke( service, values ) ); }
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: