2 writes to SingleBytes
Microsoft.AspNetCore.Grpc.JsonTranscoding.Tests (2)
artifacts\obj\Microsoft.AspNetCore.Grpc.JsonTranscoding.Tests\Release\net10.0\Proto\Transcoding.cs (2)
2186SingleBytes = other.SingleBytes; 2355SingleBytes = 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)
1879if (SingleBytes != other.SingleBytes) return false; 1903if (SingleBytes.Length != 0) hash ^= SingleBytes.GetHashCode(); 2058if (SingleBytes.Length != 0) { 2060output.WriteBytes(SingleBytes); 2122if (SingleBytes.Length != 0) { 2123size += 1 + pb::CodedOutputStream.ComputeBytesSize(SingleBytes); 2185if (other.SingleBytes.Length != 0) { 2186SingleBytes = other.SingleBytes;
UnaryServerCallHandlerTests.cs (1)
1561Assert.Equal(new byte[] { 1, 2, 3 }, request!.Data.SingleBytes.ToByteArray());