Creates a new strongly-typed record class representing the records in an Endeca server and places the class in the specified namespace.

Namespace:  Endeca.Web.UI.Design
Assembly:  Endeca.Web (in Endeca.Web.dll) Version: 2.1.3.0 (2.1.3.622)

Syntax

C#
public void GenerateRecord(
	RecordGeneratorOptions options,
	CodeNamespace codeNamespace,
	CodeDomProvider codeGenerator
)
Visual Basic (Declaration)
Public Sub GenerateRecord ( _
	options As RecordGeneratorOptions, _
	codeNamespace As CodeNamespace, _
	codeGenerator As CodeDomProvider _
)
Visual C++
public:
void GenerateRecord(
	RecordGeneratorOptions^ options, 
	CodeNamespace^ codeNamespace, 
	CodeDomProvider^ codeGenerator
)

Parameters

options
Type: Endeca.Web.UI.Design..::.RecordGeneratorOptions
Provides choices for the available record generation customizations.
codeNamespace
Type: System.CodeDom..::.CodeNamespace
Namespace in which the generated class is placed.
codeGenerator
Type: System.CodeDom.Compiler..::.CodeDomProvider
Code generator representing the language in which the class will be generated.

Exceptions

ExceptionCondition
System..::.ArgumentNullException if options or codeNamespace or codeGenerator is null.

See Also