C# Class Utilities.ORM.Aspect.ORMAspect

ORM Aspect (used internally)
Inheritance: IAspect
Afficher le fichier Open project: JaCraig/Craig-s-Utility-Library

Private Properties

Свойство Type Description
SetupFields string
SetupIEnumerableProperty string
SetupListProperty string
SetupSingleProperty string

Méthodes publiques

Méthode Description
Setup ( object Object ) : void

Sets up the aspect

SetupDefaultConstructor ( Type BaseType ) : string

Sets up the default constructor

SetupEndMethod ( MethodInfo Method, Type BaseType, string ReturnValueName ) : string

Sets up the end of a method

SetupExceptionMethod ( MethodInfo Method, Type BaseType ) : string

Sets up exception method

SetupInterfaces ( Type Type ) : string

Sets up the interfaces used

SetupStartMethod ( MethodInfo Method, Type BaseType ) : string

Sets up the start of the method

Private Methods

Méthode Description
SetupFields ( Type Type ) : string
SetupIEnumerableProperty ( string ReturnValueName, IProperty Property ) : string
SetupListProperty ( string ReturnValueName, IProperty Property ) : string
SetupSingleProperty ( string ReturnValueName, IProperty Property ) : string

Method Details

Setup() public méthode

Sets up the aspect
public Setup ( object Object ) : void
Object object Object to set up
Résultat void

SetupDefaultConstructor() public méthode

Sets up the default constructor
public SetupDefaultConstructor ( Type BaseType ) : string
BaseType System.Type Base type
Résultat string

SetupEndMethod() public méthode

Sets up the end of a method
public SetupEndMethod ( MethodInfo Method, Type BaseType, string ReturnValueName ) : string
Method System.Reflection.MethodInfo Method information
BaseType System.Type Base type
ReturnValueName string Return value name
Résultat string

SetupExceptionMethod() public méthode

Sets up exception method
public SetupExceptionMethod ( MethodInfo Method, Type BaseType ) : string
Method System.Reflection.MethodInfo Method information
BaseType System.Type Base type
Résultat string

SetupInterfaces() public méthode

Sets up the interfaces used
public SetupInterfaces ( Type Type ) : string
Type System.Type The object type
Résultat string

SetupStartMethod() public méthode

Sets up the start of the method
public SetupStartMethod ( MethodInfo Method, Type BaseType ) : string
Method System.Reflection.MethodInfo Method information
BaseType System.Type Base type
Résultat string