|
BroConfigurationDomain Property |
Gets or sets current domain for use in a configuration file.
Namespace: BroccoliSharpAssembly: BroccoliSharp (in BroccoliSharp.dll) Version: 1.0.5434.15853
Syntax public static string Domain { get; set; }
Public Shared Property Domain As String
Get
Set
static member Domain : string with get, set
/** @property */
public static String get_Domain()
/** @property */
public static void set_Domain(String value)
BroccoliSharp.BroConfiguration.get_Domain = function();
BroccoliSharp.BroConfiguration.set_Domain = function(value);
Property Value
Type:
StringRemarks
Broccoli's configuration files are divided into sections. The beginning of each config
can have an unnamed section that will be used by default. Case is irrelevant. By setting
Domain to null, the default domain will be selected.
See Also