aboutsummaryrefslogtreecommitdiff
path: root/src/ProtocolBuffers/CodedOutputStream.ComputeSize.cs
diff options
context:
space:
mode:
authorcsharptest <roger@csharptest.net>2011-07-14 14:11:48 -0500
committerrogerk <devnull@localhost>2011-07-14 14:11:48 -0500
commitd95293e355bc56cd6ec690ecdd28a67d0e4e49e0 (patch)
treec848c20a9e204de35cd679c5edf6c4638e168f1d /src/ProtocolBuffers/CodedOutputStream.ComputeSize.cs
parent541686c89f0080e7420ff1c1fc2a130c60f21053 (diff)
downloadprotobuf-d95293e355bc56cd6ec690ecdd28a67d0e4e49e0.tar.gz
protobuf-d95293e355bc56cd6ec690ecdd28a67d0e4e49e0.tar.bz2
protobuf-d95293e355bc56cd6ec690ecdd28a67d0e4e49e0.zip
Integrated feedback from revision 1525875aec27
Diffstat (limited to 'src/ProtocolBuffers/CodedOutputStream.ComputeSize.cs')
-rw-r--r--src/ProtocolBuffers/CodedOutputStream.ComputeSize.cs16
1 files changed, 3 insertions, 13 deletions
diff --git a/src/ProtocolBuffers/CodedOutputStream.ComputeSize.cs b/src/ProtocolBuffers/CodedOutputStream.ComputeSize.cs
index ef197d8f..50bf28d2 100644
--- a/src/ProtocolBuffers/CodedOutputStream.ComputeSize.cs
+++ b/src/ProtocolBuffers/CodedOutputStream.ComputeSize.cs
@@ -41,19 +41,9 @@ using Google.ProtocolBuffers.Descriptors;
namespace Google.ProtocolBuffers
{
- /// <summary>
- /// Encodes and writes protocol message fields.
- /// </summary>
- /// <remarks>
- /// This class contains two kinds of methods: methods that write specific
- /// protocol message constructs and field types (e.g. WriteTag and
- /// WriteInt32) and methods that write low-level values (e.g.
- /// WriteRawVarint32 and WriteRawBytes). If you are writing encoded protocol
- /// messages, you should use the former methods, but if you are writing some
- /// other format of your own design, use the latter. The names of the former
- /// methods are taken from the protocol buffer type names, not .NET types.
- /// (Hence WriteFloat instead of WriteSingle, and WriteBool instead of WriteBoolean.)
- /// </remarks>
+ // This part of CodedOutputStream provides all the static entry points that are used
+ // by generated code and internally to compute the size of messages prior to being
+ // written to an instance of CodedOutputStream.
public sealed partial class CodedOutputStream
{
private const int LittleEndian64Size = 8;