C# Class Decision.Utility.PropertyInfoCache

Keeps a mapping between a string and a PropertyInfo instance. Simply wraps an IDictionary and exposes the relevant operations. Putting all this in a separate class makes the calling code more readable.
Afficher le fichier Open project: rabbal/Decision

Méthodes publiques

Méthode Description
Add ( string key, PropertyInfo value ) : void
ContainsKey ( string key ) : bool
PropertyInfoCache ( ) : System
this ( string key ) : PropertyInfo

Method Details

Add() public méthode

public Add ( string key, PropertyInfo value ) : void
key string
value System.Reflection.PropertyInfo
Résultat void

ContainsKey() public méthode

public ContainsKey ( string key ) : bool
key string
Résultat bool

PropertyInfoCache() public méthode

public PropertyInfoCache ( ) : System
Résultat System

this() public méthode

public this ( string key ) : PropertyInfo
key string
Résultat System.Reflection.PropertyInfo