RemotingServices::IsOneWay Method
Returns a Boolean value that indicates whether the client that called the method specified in the given message is waiting for the server to finish processing the method before continuing execution.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- method
- Type: System.Reflection::MethodBase
The method in question.
| Exception | Condition |
|---|---|
| SecurityException | The immediate caller does not have infrastructure permission. |
When a one-way method is called, the client does not wait for the server to finish processing the message. The client method returns to the application with no knowledge of whether or not the server will successfully process the message. Methods are marked as one way using the OneWayAttribute.
One-way methods cannot have a return value or any out parameters.
public ref class HelloServer: public MarshalByRefObject { public: HelloServer() { Console::WriteLine( "HelloServer activated." ); } [OneWay] void SayHelloToServer( String^ name ) { Console::WriteLine( "Client invoked SayHelloToServer(\" {0}\").", name ); } // IsOneWay: Note the lack of the OneWayAttribute adornment on this method. [SecurityPermissionAttribute(SecurityAction::Demand, Flags=SecurityPermissionFlag::Infrastructure)] String^ SayHelloToServerAndWait( String^ name ) { Console::WriteLine( "Client invoked SayHelloToServerAndWait(\" {0}\").", name ); Console::WriteLine( "Client waiting for return? {0}", RemotingServices::IsOneWay( MethodBase::GetCurrentMethod() ) ? (String^)"No" : "Yes" ); return String::Format( "Hi there, {0}.", name ); } };
- SecurityPermission
for operating with infrastructure code. Demand value: SecurityAction::LinkDemand; Permission value: SecurityPermissionFlag::Infrastructure
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.