本文整理匯總了C#中MongoDB.Bson.IO.BsonBuffer.WriteCString方法的典型用法代碼示例。如果您正苦於以下問題:C# BsonBuffer.WriteCString方法的具體用法?C# BsonBuffer.WriteCString怎麽用?C# BsonBuffer.WriteCString使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類MongoDB.Bson.IO.BsonBuffer
的用法示例。
在下文中一共展示了BsonBuffer.WriteCString方法的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: WriteBody
// protected methods
protected override void WriteBody(BsonBuffer buffer)
{
buffer.WriteInt32((int)_flags);
buffer.WriteCString(new UTF8Encoding(false, true), _collectionFullName);
_firstDocumentStartPosition = buffer.Position;
// documents to be added later by calling AddDocument
}
示例2: WriteHeaderTo
internal override void WriteHeaderTo(BsonBuffer buffer)
{
base.WriteHeaderTo(buffer);
buffer.WriteInt32(0); // reserved
buffer.WriteCString(new UTF8Encoding(false, true), _collectionFullName);
buffer.WriteInt32(_numberToReturn);
}
示例3: WriteBody
// protected methods
protected override void WriteBody(BsonBuffer buffer)
{
buffer.WriteInt32(0); // reserved
buffer.WriteCString(new UTF8Encoding(false, true), _collectionFullName);
buffer.WriteInt32(_numberToReturn);
buffer.WriteInt64(_cursorId);
}
示例4: WriteBody
// protected methods
protected override void WriteBody(BsonBuffer buffer)
{
buffer.WriteInt32(0); // reserved
buffer.WriteCString(_collectionFullName);
buffer.WriteInt32((int)_flags);
using (var bsonWriter = new BsonBinaryWriter(buffer, false, WriterSettings))
{
if (_query == null)
{
bsonWriter.WriteStartDocument();
bsonWriter.WriteEndDocument();
}
else
{
BsonSerializer.Serialize(bsonWriter, _query.GetType(), _query, DocumentSerializationOptions.SerializeIdFirstInstance);
}
}
}
示例5: WriteBody
// protected methods
protected override void WriteBody(BsonBuffer buffer)
{
buffer.WriteInt32((int)_flags);
buffer.WriteCString(new UTF8Encoding(false, true), _collectionFullName);
buffer.WriteInt32(_numberToSkip);
buffer.WriteInt32(_numberToReturn);
using (var bsonWriter = new BsonBinaryWriter(buffer, false, WriterSettings))
{
if (_query == null)
{
bsonWriter.WriteStartDocument();
bsonWriter.WriteEndDocument();
}
else
{
BsonSerializer.Serialize(bsonWriter, _query.GetType(), _query, DocumentSerializationOptions.SerializeIdFirstInstance);
}
if (_fields != null)
{
BsonSerializer.Serialize(bsonWriter, _fields);
}
}
}
示例6: TestWriteCStringThrowsWhenValueIsNull
public void TestWriteCStringThrowsWhenValueIsNull()
{
using (var bsonBuffer = new BsonBuffer())
{
Assert.Throws<ArgumentNullException>(() => { bsonBuffer.WriteCString((UTF8Encoding)Encoding.UTF8, null); });
}
}
示例7: TestWriteCStringThrowsWhenValueContainsNulls
public void TestWriteCStringThrowsWhenValueContainsNulls()
{
using (var bsonBuffer = new BsonBuffer())
{
Assert.Throws<ArgumentException>(() => { bsonBuffer.WriteCString((UTF8Encoding)Encoding.UTF8, "a\0b"); });
}
}
示例8: WriteHeaderTo
internal override void WriteHeaderTo(BsonBuffer buffer)
{
if ((_flags & QueryFlags.Exhaust) != 0)
{
throw new NotSupportedException("The Exhaust QueryFlag is not yet supported.");
}
base.WriteHeaderTo(buffer);
buffer.WriteInt32((int)_flags);
buffer.WriteCString(new UTF8Encoding(false, true), _collectionFullName);
buffer.WriteInt32(_numberToSkip);
buffer.WriteInt32(_numberToReturn);
}
示例9: WriteHeaderTo
internal override void WriteHeaderTo(BsonBuffer buffer)
{
_batchStartPosition = buffer.Position;
base.WriteHeaderTo(buffer);
buffer.WriteInt32((int)_flags);
buffer.WriteCString(new UTF8Encoding(false, true), _collectionFullName);
}