LogManagerCreateDomain Method (Type)Apache log4net™ SDK Documentation

Note: This API is now obsolete.

Creates a repository with the specified repository type.

Namespace: log4net
Assembly: log4net (in log4net.dll) Version: 2.0.8.0-.NET 4.0
Syntax

[ObsoleteAttribute("Use CreateRepository instead of CreateDomain")]
public static ILoggerRepository CreateDomain(
	Type repositoryType
)

Parameters

repositoryType
Type: SystemType
A Type that implements ILoggerRepository and has a no arg constructor. An instance of this type will be created to act as the ILoggerRepository for the repository specified.

Return Value

Type: ILoggerRepository
The ILoggerRepository created for the repository.
Remarks

CreateDomain is obsolete. Use CreateRepository instead of CreateDomain.

The ILoggerRepository created will be associated with the repository specified such that a call to [M:GetRepository()] will return the same repository instance.

See Also

Reference