7 references to GetOutputParameters
System.ServiceModel (7)
System\ServiceModel\ComIntegration\ComPlusTypeLoader.cs (1)
274ParameterInfo[] parameters = ServiceReflector.GetOutputParameters(methodInfo, false);
System\ServiceModel\Description\TypeLoader.cs (3)
1108ParameterInfo[] parameters = ServiceReflector.GetOutputParameters(methodInfo, isAsync); 1548this.syncOutputs = ServiceReflector.GetOutputParameters(this.syncOperation.SyncMethod, false); 1549this.asyncOutputs = ServiceReflector.GetOutputParameters(this.asyncOperation.EndMethod, true);
System\ServiceModel\Dispatcher\ProxyOperationRuntime.cs (3)
77this.outParams = ServiceReflector.GetOutputParameters(this.syncMethod, false); 83this.endOutParams = ServiceReflector.GetOutputParameters(operation.EndMethod, true); 89this.outParams = ServiceReflector.GetOutputParameters(this.syncMethod, false);