The bytecode provider to use.

Namespace:  NHibernate.Cfg
Assembly:  NHibernate (in NHibernate.dll)

Syntax

Visual Basic (Declaration)
Public Shared Property BytecodeProvider As IBytecodeProvider
C#
public static IBytecodeProvider BytecodeProvider { get; set; }
Visual C++
public:
static property IBytecodeProvider^ BytecodeProvider {
	IBytecodeProvider^ get ();
	void set (IBytecodeProvider^ value);
}
JavaScript
NHibernate.Cfg.Environment.get_bytecodeProvider = function();
NHibernate.Cfg.Environment.set_bytecodeProvider = function(value);

Remarks

This property is read from the <nhibernate> section of the application configuration file by default. Since it is not always convenient to configure NHibernate through the application configuration file, it is also possible to set the property value manually. This should only be done before a configuration object is created, otherwise the change may not take effect.

See Also