C# Class CsDebugScript.CodeGen.UserTypes.UserTypeFunction

Class that represents partial initialization function that is called in constructor.
Inheritance: UserTypeField
Afficher le fichier Open project: southpolenator/WinDbgCs

Méthodes publiques

Méthode Description
WriteConstructorCode ( IndentedWriter output, int indentation ) : void

Writes the constructor code to the specified output.

WriteFieldCode ( IndentedWriter output, int indentation, UserTypeGenerationFlags options ) : void

Writes the field code.

WritePropertyCode ( IndentedWriter output, int indentation, UserTypeGenerationFlags options, bool &firstField ) : void

Writes the property code.

Method Details

WriteConstructorCode() public méthode

Writes the constructor code to the specified output.
public WriteConstructorCode ( IndentedWriter output, int indentation ) : void
output IndentedWriter The output.
indentation int The current indentation.
Résultat void

WriteFieldCode() public méthode

Writes the field code.
public WriteFieldCode ( IndentedWriter output, int indentation, UserTypeGenerationFlags options ) : void
output IndentedWriter The output.
indentation int The indentation.
options UserTypeGenerationFlags The options.
Résultat void

WritePropertyCode() public méthode

Writes the property code.
public WritePropertyCode ( IndentedWriter output, int indentation, UserTypeGenerationFlags options, bool &firstField ) : void
output IndentedWriter The output.
indentation int The indentation.
options UserTypeGenerationFlags The options.
firstField bool if set to true [first field].
Résultat void