CSMongo.Bson.BsonFieldDetail.BsonFieldDetail C# (CSharp) 메소드

BsonFieldDetail() 공개 메소드

Creates a new set of details for a BSON field
public BsonFieldDetail ( string field, byte bytes, MongoDataType type ) : System
field string
bytes byte
type MongoDataType
리턴 System
        public BsonFieldDetail(string field, byte[] bytes, MongoDataType type)
        {
            this.Field = field;
            this.Bytes = bytes;
            this.Type = type;
        }
BsonFieldDetail