System.Configuration.BaseConfigurationRecord.GetSection C# (CSharp) Метод

GetSection() приватный Метод

private GetSection ( string configKey, bool getLkg, bool checkPermission ) : object
configKey string
getLkg bool
checkPermission bool
Результат object
        private object GetSection(string configKey, bool getLkg, bool checkPermission) {
            object result;
            object resultRuntimeObject;

            //
            // Note that GetSectionRecursive may invalidate this record, 
            // so there should be no further references to 'this' after the call.
            //
            GetSectionRecursive(
                    configKey, getLkg, checkPermission, true /* getRuntimeObject */, true /* requestIsHere */,
                    out result, out resultRuntimeObject);

            return resultRuntimeObject;
        }

Same methods

BaseConfigurationRecord::GetSection ( string configKey ) : object
BaseConfigurationRecord