9 references to s_clientCtorParamNames
dotnet-svcutil-lib (9)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\ClientClassGenerator.cs (9)
115
Fx.Assert(
s_clientCtorParamNames
.Length == s_clientCtorParamTypes.Length, s_debugCheckTable_errorString);
119
DebugCheckTable_ValidateCtor(s_clientBaseType.GetConstructor(s_ctorBindingFlags, null, s_clientCtorParamTypes[i], null),
s_clientCtorParamNames
[i]);
123
string[] duplexCtorNames = DebugCheckTable_InsertAtStart(
s_clientCtorParamNames
[i], s_inputInstanceName);
174
if (!(
s_clientCtorParamNames
.Length == s_clientCtorParamTypes.Length))
180
for (int i = 0; i <
s_clientCtorParamNames
.Length; i++)
182
if (!(
s_clientCtorParamNames
[i].Length == s_clientCtorParamTypes[i].Length))
195
for (int j = 0; j <
s_clientCtorParamNames
[i].Length; j++)
197
ctor.Parameters.Add(new CodeParameterDeclarationExpression(s_clientCtorParamTypes[i][j],
s_clientCtorParamNames
[i][j]));
198
ctor.BaseConstructorArgs.Add(new CodeVariableReferenceExpression(
s_clientCtorParamNames
[i][j]));