System.Configuration.FactoryRecord.FactoryRecord C# (CSharp) Method

FactoryRecord() private method

private FactoryRecord ( string configKey, string group, string name, string factoryTypeName, bool allowLocation, ConfigurationAllowDefinition allowDefinition, ConfigurationAllowExeDefinition allowExeDefinition, bool restartOnExternalChanges, bool requirePermission, bool isFromTrustedConfigRecord, bool isUndeclared, string filename, int lineNumber ) : System.Configuration.Internal
configKey string
group string
name string
factoryTypeName string
allowLocation bool
allowDefinition ConfigurationAllowDefinition
allowExeDefinition ConfigurationAllowExeDefinition
restartOnExternalChanges bool
requirePermission bool
isFromTrustedConfigRecord bool
isUndeclared bool
filename string
lineNumber int
return System.Configuration.Internal
        internal FactoryRecord(
                string configKey, 
                string group, 
                string name, 
                string factoryTypeName, 
                bool allowLocation, 
                ConfigurationAllowDefinition allowDefinition, 
                ConfigurationAllowExeDefinition allowExeDefinition, 
                bool restartOnExternalChanges, 
                bool requirePermission,
                bool isFromTrustedConfigRecord,
                bool isUndeclared,
                string filename,
                int lineNumber) {

            _configKey = configKey;
            _group = group;
            _name = name;
            _factoryTypeName = factoryTypeName;
            _allowDefinition = allowDefinition;
            _allowExeDefinition = allowExeDefinition;
            AllowLocation = allowLocation;
            RestartOnExternalChanges = restartOnExternalChanges;
            RequirePermission = requirePermission;
            IsFromTrustedConfigRecord = isFromTrustedConfigRecord;
            IsUndeclared = isUndeclared;
            _filename = filename;
            _lineNumber = lineNumber;
        }

Same methods

FactoryRecord::FactoryRecord ( string configKey, string group, string name, object factory, string factoryTypeName, SimpleBitVector32 flags, ConfigurationAllowDefinition allowDefinition, ConfigurationAllowExeDefinition allowExeDefinition, string filename, int lineNumber, ICollection errors ) : System.Configuration.Internal
FactoryRecord::FactoryRecord ( string configKey, string group, string name, string factoryTypeName, string filename, int lineNumber ) : System.Configuration.Internal