Exemplo n.º 1
0
        public LogServiceConfig(string name)
        {
            Name = name;

            _methods = new List<ILogMethodConfig>();
            _methodsEx = new CKReadOnlyCollectionOnICollection<ILogMethodConfig>( _methods );

            _events = new List<ILogEventConfig>();
            _eventsEx = new CKReadOnlyCollectionOnICollection<ILogEventConfig>( _events );

            _properties = new List<ILogPropertyConfig>();
            _propertiesEx = new CKReadOnlyCollectionOnICollection<ILogPropertyConfig>( _properties );
        }
Exemplo n.º 2
0
 public LogConfig(List<ILogServiceConfig> services, bool doLog)
 {
     _doLog = doLog;
     _services = services;
     _servicesEx = new CKReadOnlyCollectionOnICollection<ILogServiceConfig>( _services );
 }
Exemplo n.º 3
0
 public bool Setup( IPluginSetupInfo info )
 {
     _isClosing = false;
     ClicksVM = new ClicksVM() { Holder = this };
     _clicksVmReadOnlyAdapter = new CKReadOnlyCollectionOnICollection<ClickEmbedderVM>( ClicksVM );
     return true;
 }