C# Класс Dlp.Framework.Container.Proxies.MetaDataFactory

Factory class used to cache Types instances
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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