2 writes to SingleBytes
Microsoft.AspNetCore.Grpc.JsonTranscoding.Tests (2)
artifacts\obj\Microsoft.AspNetCore.Grpc.JsonTranscoding.Tests\Release\net10.0\Proto\Transcoding.cs (2)
2172SingleBytes = other.SingleBytes; 2341SingleBytes = input.ReadBytes();
11 references to SingleBytes
Microsoft.AspNetCore.Grpc.JsonTranscoding.Tests (11)
artifacts\obj\Microsoft.AspNetCore.Grpc.JsonTranscoding.Tests\Release\net10.0\Proto\Transcoding.cs (10)
1865if (SingleBytes != other.SingleBytes) return false; 1889if (SingleBytes.Length != 0) hash ^= SingleBytes.GetHashCode(); 2044if (SingleBytes.Length != 0) { 2046output.WriteBytes(SingleBytes); 2108if (SingleBytes.Length != 0) { 2109size += 1 + pb::CodedOutputStream.ComputeBytesSize(SingleBytes); 2171if (other.SingleBytes.Length != 0) { 2172SingleBytes = other.SingleBytes;
UnaryServerCallHandlerTests.cs (1)
1560Assert.Equal(new byte[] { 1, 2, 3 }, request!.Data.SingleBytes.ToByteArray());