System.Configuration.ConfigurationElement.Init C# (CSharp) Метод

Init() защищенный Метод

protected Init ( ) : void
Результат void
        protected internal virtual void Init() {
            // If Init is called by the derived class, we may be able
            // to set _bInited to true if the derived class properly
            // calls Init on its base.
            _bInited = true;
        }

Usage Example

Пример #1
0
 ConfigurationElement CreateElement(Type t)
 {
     ConfigurationElement elem = (ConfigurationElement) Activator.CreateInstance (t);
     elem.Init ();
     if (IsReadOnly ())
         elem.SetReadOnly ();
     return elem;
 }
All Usage Examples Of System.Configuration.ConfigurationElement::Init