Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System.ServiceModel/System.ServiceModel.Dispatcher/IOperationInvoker.cs')
-rw-r--r--mcs/class/System.ServiceModel/System.ServiceModel.Dispatcher/IOperationInvoker.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/mcs/class/System.ServiceModel/System.ServiceModel.Dispatcher/IOperationInvoker.cs b/mcs/class/System.ServiceModel/System.ServiceModel.Dispatcher/IOperationInvoker.cs
index 048a47bb5cf..077d0f0b7a5 100644
--- a/mcs/class/System.ServiceModel/System.ServiceModel.Dispatcher/IOperationInvoker.cs
+++ b/mcs/class/System.ServiceModel/System.ServiceModel.Dispatcher/IOperationInvoker.cs
@@ -32,8 +32,8 @@ namespace System.ServiceModel.Dispatcher
public interface IOperationInvoker
{
bool IsSynchronous { get; }
- object [] AllocateParameters ();
- object Invoke (object instance, object [] inputs);
+ object [] AllocateInputs ();
+ object Invoke (object instance, object [] inputs, out object [] outputs);
IAsyncResult InvokeBegin (object instance, object [] inputs,
AsyncCallback callback, object state);
object InvokeEnd (object instance, out object [] outputs, IAsyncResult result);