C# 클래스 Dlp.Framework.Container.Proxies.MetaDataFactory

Factory class used to cache Types instances
파일 보기 프로젝트 열기: stone-payments/Dlp.Framework 1 사용 예제들

공개 메소드들

메소드 설명
Add ( Type interfaceType ) : void

Method to add a new Type to the cache, using the type's fully qualified name as the key

GetMethod ( string name, int i ) : MethodInfo

Method to return the method of a given type at a specified index.

비공개 메소드들

메소드 설명
MetaDataFactory ( ) : System

Class constructor. Private because this is a static class.

메소드 상세

Add() 공개 정적인 메소드

Method to add a new Type to the cache, using the type's fully qualified name as the key
public static Add ( Type interfaceType ) : void
interfaceType System.Type Type to cache
리턴 void

GetMethod() 공개 정적인 메소드

Method to return the method of a given type at a specified index.
public static GetMethod ( string name, int i ) : MethodInfo
name string Fully qualified name of the method to return
i int Index to use to return MethodInfo
리턴 System.Reflection.MethodInfo