5 references to DynamicMethod
System.Data.Services (1)
System\Data\Services\Serializers\SyndicationSerializer.cs (1)
785
DynamicMethod method = new
DynamicMethod
("content_populator", typeof(void), parameterTypes, module, false /* skipVisibility */);
System.Runtime.Serialization (3)
System\Runtime\Serialization\CodeGenerator.cs (1)
220
this.dynamicMethod = new
DynamicMethod
(methodName, returnType, argTypes, SerializationModule, allowPrivateMemberAccess);
System\Runtime\Serialization\Json\JsonFormatReaderGenerator.cs (1)
232
DynamicMethod dynamicMethod = new
DynamicMethod
(methodName, signature.ReturnType, paramTypes, typeof(JsonFormatReaderGenerator).Module, allowPrivateMemberAccess);
System\Runtime\Serialization\Json\JsonFormatWriterGenerator.cs (1)
160
DynamicMethod dynamicMethod = new
DynamicMethod
(methodName, signature.ReturnType, paramTypes, typeof(JsonFormatWriterGenerator).Module, allowPrivateMemberAccess);
System.ServiceModel (1)
System\ServiceModel\Dispatcher\CodeGenerator.cs (1)
139
this.dynamicMethod = new
DynamicMethod
(methodName, returnType, argTypes, SerializationModule, allowPrivateMemberAccess);