10 references to GetInputParameters
System.ServiceModel (10)
System\ServiceModel\ComIntegration\ComPlusTypeLoader.cs (1)
254ParameterInfo[] parameters = ServiceReflector.GetInputParameters(methodInfo, false);
System\ServiceModel\Description\TypeLoader.cs (7)
1082ParameterInfo[] parameters = ServiceReflector.GetInputParameters(methodInfo, isAsync); 1546this.syncInputs = ServiceReflector.GetInputParameters(this.syncOperation.SyncMethod, false); 1547this.asyncInputs = ServiceReflector.GetInputParameters(this.asyncOperation.BeginMethod, true); 1690this.syncInputs = ServiceReflector.GetInputParameters(this.syncOperation.SyncMethod, false); 1691this.taskInputs = ServiceReflector.GetInputParameters(this.taskOperation.TaskMethod, false); 1808this.taskInputs = ServiceReflector.GetInputParameters(this.taskOperation.TaskMethod, false); 1809this.asyncInputs = ServiceReflector.GetInputParameters(this.asyncOperation.BeginMethod, true);
System\ServiceModel\Dispatcher\ProxyOperationRuntime.cs (2)
74this.inParams = ServiceReflector.GetInputParameters(this.beginMethod, true); 88this.inParams = ServiceReflector.GetInputParameters(this.syncMethod, false);