CK.Plugins.ObjectExplorer.ViewModels.LogViewModels.VMLogMethodConfig.ProcessLogOptions C# (CSharp) Method

ProcessLogOptions() private method

private ProcessLogOptions ( ServiceLogMethodOptions logOptions ) : void
logOptions ServiceLogMethodOptions
return void
        private void ProcessLogOptions( ServiceLogMethodOptions logOptions )
        {
            DoLogErrors =       ((logOptions & ServiceLogMethodOptions.LogError) == ServiceLogMethodOptions.LogError);
            DoLogEnter =        ((logOptions & ServiceLogMethodOptions.Enter) == ServiceLogMethodOptions.Enter);
            DoLogParameters =   ((logOptions & ServiceLogMethodOptions.LogParameters) == ServiceLogMethodOptions.LogParameters);
            DoLogCaller =       ((logOptions & ServiceLogMethodOptions.LogCaller) == ServiceLogMethodOptions.LogCaller);
            DoLogLeave =        ((logOptions & ServiceLogMethodOptions.Leave) == ServiceLogMethodOptions.Leave);
            DoLogReturnValue =  ((logOptions & ServiceLogMethodOptions.LogReturnValue) == ServiceLogMethodOptions.LogReturnValue);
        }