C# Class NClass.Core.DelegateType

Inheritance: TypeBase
Datei anzeigen Open project: gbaychev/NClass Class Usage Examples

Public Methods

Method Description
AddParameter ( string declaration ) : Parameter
Clone ( ) : DelegateType
GetArgument ( int index ) : Parameter
ModifyParameter ( Parameter parameter, string declaration ) : Parameter
MoveDownItem ( object item ) : bool
MoveUpItem ( object item ) : bool
RemoveParameter ( Parameter parameter ) : void

Protected Methods

Method Description
CopyFrom ( TypeBase type ) : void
DelegateType ( string name ) : System
Deserialize ( XmlElement node ) : void
Serialize ( XmlElement node ) : void

Method Details

AddParameter() public method

/// The name does not fit to the syntax. /// /// The parameter name is already exists. ///
public AddParameter ( string declaration ) : Parameter
declaration string
return Parameter

Clone() public abstract method

public abstract Clone ( ) : DelegateType
return DelegateType

CopyFrom() protected method

protected CopyFrom ( TypeBase type ) : void
type TypeBase
return void

DelegateType() protected method

/// The does not fit to the syntax. ///
protected DelegateType ( string name ) : System
name string
return System

Deserialize() protected method

/// An error occured while deserializing. /// /// The XML document is corrupt. /// /// is null. ///
protected Deserialize ( XmlElement node ) : void
node System.Xml.XmlElement
return void

GetArgument() public method

public GetArgument ( int index ) : Parameter
index int
return Parameter

ModifyParameter() public method

/// The name does not fit to the syntax. /// /// The parameter name is already exists. ///
public ModifyParameter ( Parameter parameter, string declaration ) : Parameter
parameter Parameter
declaration string
return Parameter

MoveDownItem() public method

public MoveDownItem ( object item ) : bool
item object
return bool

MoveUpItem() public method

public MoveUpItem ( object item ) : bool
item object
return bool

RemoveParameter() public method

public RemoveParameter ( Parameter parameter ) : void
parameter Parameter
return void

Serialize() protected method

/// is null. ///
protected Serialize ( XmlElement node ) : void
node System.Xml.XmlElement
return void