Npgsql.NpgsqlCopySerializer.PrefixField C# (CSharp) 메소드

PrefixField() 보호된 메소드

Prefix field.
protected PrefixField ( ) : void
리턴 void
        protected void PrefixField()
        {
            if (_atField > 0)
            {
                if (_atField >= _context.CurrentState.CopyFormat.FieldCount)
                {
                    throw new NpgsqlException("Tried to add too many fields to a copy record with " + _atField + " fields");
                }
                AddBytes(DelimiterBytes);
            }
        }