1 write to paramList
System.ServiceModel (1)
System\ServiceModel\ComIntegration\DispatchProxy.cs (1)
95paramList = new List<ParamInfo>();
11 references to paramList
System.ServiceModel (11)
System\ServiceModel\ComIntegration\ComPlusDiagnosticTraceRecords.cs (1)
412ComPlusDispatchMethodSchema record = new ComPlusDispatchMethodSchema(methodInfo.opDesc.Name, methodInfo.paramList, methodInfo.ReturnVal);
System\ServiceModel\ComIntegration\DispatchProxy.cs (10)
147methodInfo.paramList.Add(paramInfo); 220if (mInfo.paramList.Count != cArgs) 244if (mInfo.paramList[index].inIndex != -1) 250if (!mInfo.paramList[index].type.IsArray) 251val = FetchVariant(rgvarg, (int)(cArgs - index - 1), mInfo.paramList[index].type); 253val = FetchVariants(rgvarg, (int)(cArgs - index - 1), mInfo.paramList[index].type); 254ins[mInfo.paramList[index].inIndex] = val; 302if (mInfo.paramList[index].outIndex != -1) 308PopulateByRef(rgvarg, (int)(cArgs - index - 1), outs[mInfo.paramList[index].outIndex]); 316filled[mInfo.paramList[index].outIndex] = true;