C# Class CsDebugScript.CodeGen.UserTypes.UserTypeFunction

Class that represents partial initialization function that is called in constructor.
Inheritance: UserTypeField
Show file Open project: southpolenator/WinDbgCs

Public Methods

Method 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 method

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

WriteFieldCode() public method

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.
return void

WritePropertyCode() public method

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].
return void