C# 클래스 NProxy.Core.Internal.Reflection.Emit.MethodBuilderExtensions

Provides MethodBuilder extension methods.
파일 보기 프로젝트 열기: mtamme/NProxy

공개 메소드들

메소드 설명
DefineGenericParameters ( this methodBuilder, MethodBase methodBase ) : System.Type[]

Defines the generic method parameters based on the specified method.

Custom attributes are not considered by this method.

DefineParameters ( this methodBuilder, MethodInfo methodInfo ) : void

Defines the method parameters based on the specified method.

DefineParameters ( this methodBuilder, MethodInfo methodInfo, Type genericTypes ) : void

Defines the method parameters based on the specified method.

메소드 상세

DefineGenericParameters() 공개 정적인 메소드

Defines the generic method parameters based on the specified method.
Custom attributes are not considered by this method.
public static DefineGenericParameters ( this methodBuilder, MethodBase methodBase ) : System.Type[]
methodBuilder this The method builder.
methodBase System.Reflection.MethodBase The method base.
리턴 System.Type[]

DefineParameters() 공개 정적인 메소드

Defines the method parameters based on the specified method.
public static DefineParameters ( this methodBuilder, MethodInfo methodInfo ) : void
methodBuilder this The method builder.
methodInfo System.Reflection.MethodInfo The method information.
리턴 void

DefineParameters() 공개 정적인 메소드

Defines the method parameters based on the specified method.
public static DefineParameters ( this methodBuilder, MethodInfo methodInfo, Type genericTypes ) : void
methodBuilder this The method builder.
methodInfo System.Reflection.MethodInfo The method information.
genericTypes System.Type The generic types.
리턴 void