GenerateOptions Method

HttpServer.dll

Generates a list with JS options.

Namespace:  HttpServer.Helpers
Assembly:  HttpServer (in HttpServer.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
protected virtual void GenerateOptions(
	StringBuilder sb,
	string[] options,
	bool startWithComma
)
Visual Basic (Declaration)
Protected Overridable Sub GenerateOptions ( _
	sb As StringBuilder, _
	options As String(), _
	startWithComma As Boolean _
)
Visual C++
protected:
virtual void GenerateOptions(
	StringBuilder^ sb, 
	array<String^>^ options, 
	bool startWithComma
)

Parameters

sb
Type: System.Text..::.StringBuilder
StringBuilder that the options should be added to.
options
Type: array< System..::.String >[]()[]

[Missing <param name="options"/> documentation for "M:HttpServer.Helpers.JavascriptHelperImplementation.GenerateOptions(System.Text.StringBuilder,System.String[],System.Boolean)"]

startWithComma
Type: System..::.Boolean
true if we should start with a comma.

See Also