13 references to IntEncoder
dotnet-svcutil-lib (13)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\BinaryMessageEncoder.cs (6)
392
dictionarySize +=
IntEncoder
.GetEncodedSize(utf8ValueSize) + utf8ValueSize;
423
offset +=
IntEncoder
.Encode(utf8ValueSize, buffer, offset);
430
int headerSize =
IntEncoder
.GetEncodedSize(dictionarySize);
433
IntEncoder
.Encode(dictionarySize, buffer, newOffset);
653
messageOffset +=
IntEncoder
.MaxEncodedSize;
906
bytesRequired +=
IntEncoder
.GetEncodedSize(bytesRequired);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\FramingEncoders.cs (7)
57
int sizeByteCount =
IntEncoder
.GetEncodedSize(valueByteCount);
61
offset +=
IntEncoder
.Encode(valueByteCount, _encodedBytes, offset);
195
public const int MaxMessageFrameSize = 1 +
IntEncoder
.MaxEncodedSize;
220
int spaceNeeded = 1 +
IntEncoder
.GetEncodedSize(messageFrame.Count);
230
IntEncoder
.Encode(messageFrame.Count, buffer, offset);
305
int spaceNeeded =
IntEncoder
.GetEncodedSize(messageFrame.Count);
314
IntEncoder
.Encode(messageFrame.Count, buffer, offset);