C# Class Monobjc.Tools.Generator.Model.ClassEntity

Inheritance: TypedEntity
Mostrar archivo Open project: Monobjc/monobjc-tools Class Usage Examples

Private Properties

Property Type Description

Public Methods

Method Description
AddRange ( List entities ) : void

Adds the entities.

ClassEntity ( ) : System

Initializes a new instance of the ClassEntity class.

GetConstructors ( bool includeSuper, bool includeProtocols ) : IEnumerable

Gets all constructors (superclass and protocols).

GetHashValue ( ) : int

Serves as a hash function for a particular type.

GetMethods ( bool includeSuper, bool includeProtocols ) : IEnumerable

Gets all methods (superclass and protocols).

GetProperties ( bool includeSuper, bool includeProtocols ) : IEnumerable

Gets all methods (superclass and protocols).

HasMethod ( String name, bool isStatic ) : bool

Determines whether the specified instance has method.

Method Details

AddRange() public method

Adds the entities.
public AddRange ( List entities ) : void
entities List The entities.
return void

ClassEntity() public method

Initializes a new instance of the ClassEntity class.
public ClassEntity ( ) : System
return System

GetConstructors() public method

Gets all constructors (superclass and protocols).
public GetConstructors ( bool includeSuper, bool includeProtocols ) : IEnumerable
includeSuper bool
includeProtocols bool
return IEnumerable

GetHashValue() public method

Serves as a hash function for a particular type.
public GetHashValue ( ) : int
return int

GetMethods() public method

Gets all methods (superclass and protocols).
public GetMethods ( bool includeSuper, bool includeProtocols ) : IEnumerable
includeSuper bool
includeProtocols bool
return IEnumerable

GetProperties() public method

Gets all methods (superclass and protocols).
public GetProperties ( bool includeSuper, bool includeProtocols ) : IEnumerable
includeSuper bool
includeProtocols bool
return IEnumerable

HasMethod() public method

Determines whether the specified instance has method.
public HasMethod ( String name, bool isStatic ) : bool
name String The name.
isStatic bool if set to true [is static].
return bool