6 references to ClientCtorParamNames
System.ServiceModel (6)
System\ServiceModel\Description\ClientClassGenerator.cs (6)
174
if (!(
ClientCtorParamNames
.Length == ClientCtorParamTypes.Length))
180
for (int i = 0; i <
ClientCtorParamNames
.Length; i++)
182
if (!(
ClientCtorParamNames
[i].Length == ClientCtorParamTypes[i].Length))
195
for (int j = 0; j <
ClientCtorParamNames
[i].Length; j++)
197
ctor.Parameters.Add(new CodeParameterDeclarationExpression(ClientCtorParamTypes[i][j],
ClientCtorParamNames
[i][j]));
198
ctor.BaseConstructorArgs.Add(new CodeVariableReferenceExpression(
ClientCtorParamNames
[i][j]));