System.Data.Common.DataRecordInternal.DataRecordInternal C# (CSharp) Method

DataRecordInternal() private method

private DataRecordInternal ( SchemaInfo schemaInfo, object values, PropertyDescriptorCollection descriptors, FieldNameLookup fieldNameLookup ) : System.ComponentModel
schemaInfo SchemaInfo
values object
descriptors PropertyDescriptorCollection
fieldNameLookup FieldNameLookup
return System.ComponentModel
        internal DataRecordInternal(SchemaInfo[] schemaInfo, object[] values, PropertyDescriptorCollection descriptors, FieldNameLookup fieldNameLookup)
        {
            Debug.Assert(null != schemaInfo, "invalid attempt to instantiate DataRecordInternal with null schema information");
            Debug.Assert(null != values, "invalid attempt to instantiate DataRecordInternal with null value[]");
            _schemaInfo = schemaInfo;
            _values = values;
            _propertyDescriptors = descriptors;
            _fieldNameLookup = fieldNameLookup;
        }

Same methods

DataRecordInternal::DataRecordInternal ( object values, PropertyDescriptorCollection descriptors, FieldNameLookup fieldNameLookup ) : System.ComponentModel