3 writes to Body
InteropWebsite (3)
artifacts\obj\InteropWebsite\Release\net10.0\Messages.cs (2)
470
Body
= other.Body;
515
Body
= input.ReadBytes();
TestServiceImpl.cs (1)
96
return new Payload {
Body
= ByteString.CopyFrom(new byte[size]) };
11 references to Body
InteropWebsite (11)
artifacts\obj\InteropWebsite\Release\net10.0\Messages.cs (10)
384
if (
Body
!= other.
Body
) return false;
393
if (
Body
.Length != 0) hash ^=
Body
.GetHashCode();
434
if (
Body
.Length != 0) {
436
output.WriteBytes(
Body
);
451
if (
Body
.Length != 0) {
452
size += 1 + pb::CodedOutputStream.ComputeBytesSize(
Body
);
469
if (other.
Body
.Length != 0) {
470
Body = other.
Body
;
TestServiceImpl.cs (1)
68
sum += request.Payload.
Body
.Length;