Aspects.Logging.Configuration.Infrastructure.LogAspectConfig.Open C# (CSharp) Method

Open() public static method

Get this configuration set from the application's default config file
public static Open ( ) : LogAspectConfig
return LogAspectConfig
        public static LogAspectConfig Open()
        {
            Assembly assembly = Assembly.GetEntryAssembly();
            if (assembly != null) return Open(assembly.Location);
            return null;
        }

Same methods

LogAspectConfig::Open ( string path ) : LogAspectConfig