C# 클래스 MongoDB.Protocol.RequestMessageBase

Description of Message.
상속: MongoDB.Protocol.MessageBase, IRequestMessage
파일 보기 프로젝트 열기: oz-systems/mongodb-csharp

공개 메소드들

메소드 설명
Write ( Stream stream ) : void

Writes the specified stream.

보호된 메소드들

메소드 설명
CalculateBodySize ( MongoDB.Bson.BsonWriter writer ) : int

Calculates the size of the body.

RequestMessageBase ( MongoDB.Bson.BsonWriterSettings bsonWriterSettings ) : System

Initializes a new instance of the RequestMessageBase class.

WriteBody ( MongoDB.Bson.BsonWriter writer ) : void

Writes the body.

메소드 상세

CalculateBodySize() 보호된 추상적인 메소드

Calculates the size of the body.
protected abstract CalculateBodySize ( MongoDB.Bson.BsonWriter writer ) : int
writer MongoDB.Bson.BsonWriter The writer.
리턴 int

RequestMessageBase() 보호된 메소드

Initializes a new instance of the RequestMessageBase class.
protected RequestMessageBase ( MongoDB.Bson.BsonWriterSettings bsonWriterSettings ) : System
bsonWriterSettings MongoDB.Bson.BsonWriterSettings The bson writer settings.
리턴 System

Write() 공개 메소드

Writes the specified stream.
public Write ( Stream stream ) : void
stream Stream The stream.
리턴 void

WriteBody() 보호된 추상적인 메소드

Writes the body.
protected abstract WriteBody ( MongoDB.Bson.BsonWriter writer ) : void
writer MongoDB.Bson.BsonWriter The writer.
리턴 void