2 writes to dynamicMethod
System.ServiceModel (2)
System\ServiceModel\Dispatcher\CodeGenerator.cs (2)
139
this.
dynamicMethod
= new DynamicMethod(methodName, returnType, argTypes, SerializationModule, allowPrivateMemberAccess);
173
dynamicMethod
= null;
3 references to dynamicMethod
System.ServiceModel (3)
System\ServiceModel\Dispatcher\CodeGenerator.cs (3)
140
this.ilGen = this.
dynamicMethod
.GetILGenerator();
172
retVal =
dynamicMethod
.CreateDelegate(delegateType);
190
return
dynamicMethod
;