System.Configuration.SettingsBase.this C# (CSharp) Метод

this() публичный Метод

public this ( string propertyName ) : object
propertyName string
Результат object
       public virtual object this[string propertyName]
       {
           get {
               if (IsSynchronized) {
                   lock (this) {
                       return GetPropertyValueByName(propertyName);
                   }
               } else {
                   return GetPropertyValueByName(propertyName);
               }
           }
           set {
               if (IsSynchronized) {
                   lock (this) {
                       SetPropertyValueByName(propertyName, value);
                   }
               } else {
                   SetPropertyValueByName(propertyName, value);
               }
           }
       }