26 references to
System (1)
compmod\system\codedom\CodeParameterDeclarationExpressionCollection.cs (1)
96this.Add(value[i]);
System.ServiceModel (21)
System\ServiceModel\Description\ClientClassGenerator.cs (20)
551endMethod.Parameters[i].Type, 552endMethod.Parameters[i].Name, 587if (endMethod.Parameters[index].Type.BaseType != asyncResultTypeRef.BaseType) 672variableDecl.Type = beginMethod.Parameters[i].Type; 673variableDecl.Name = beginMethod.Parameters[i].Name; 678invokeBegin.Parameters.Add(new CodeDirectionExpression(beginMethod.Parameters[i].Direction, 685beginMethod.Parameters[i].Type, beginMethod.Parameters[i].Name)); 686invokeBegin.Parameters.Add(new CodeVariableReferenceExpression(beginMethod.Parameters[i].Name)); 723endMethod.Parameters[i].Type, endMethod.Parameters[i].Name)); 724invokeEnd.Parameters.Add(new CodeVariableReferenceExpression(endMethod.Parameters[i].Name)); 729endMethod.Parameters[i].Type, endMethod.Parameters[i].Name); 730CodeMethodReferenceExpression getDefaultValueMethodRef = new CodeMethodReferenceExpression(new CodeThisReferenceExpression(), getDefaultValueForInitializationMethodName, endMethod.Parameters[i].Type); 734invokeEnd.Parameters.Add(new CodeDirectionExpression(endMethod.Parameters[i].Direction, 853CodeParameterDeclarationExpression beginMethodParameter = beginMethod.Parameters[i]; 902eventAsyncMethod.Parameters[i].Type, 903eventAsyncMethod.Parameters[i].Name)); 906eventAsyncMethod.Parameters[i].Name));
System\ServiceModel\Description\OperationGenerator.cs (1)
516CodeParameterDeclarationExpression parameter = parameters[i];
System.Web.Services (1)
System\Web\Services\Description\HttpProtocolImporter.cs (1)
167AppendMetadata(parameters[i].Attributes, mainCodeMethod.Parameters[i].CustomAttributes);
System.Workflow.ComponentModel (3)
AuthoringOM\Compiler\TypeSystem\MethodInfo.cs (2)
56paramArray[index] = new DesignTimeParameterInfo(parameters[index], index, this); 216paramArray[index] = new DesignTimeParameterInfo(parameters[index], index, this);
AuthoringOM\Compiler\TypeSystem\PropertyInfo.cs (1)
320paramArray[index] = new DesignTimeParameterInfo(parameters[index], index, this.property);