2 writes to Name
Microsoft.AspNetCore.Grpc.JsonTranscoding.Tests (2)
artifacts\obj\Microsoft.AspNetCore.Grpc.JsonTranscoding.Tests\Release\net11.0\Proto\Httpbody.cs (2)
214Name = other.Name; 264Name = input.ReadString();
12 references to Name
Microsoft.AspNetCore.Grpc.JsonTranscoding.Tests (12)
artifacts\obj\Microsoft.AspNetCore.Grpc.JsonTranscoding.Tests\Release\net11.0\Proto\Httpbody.cs (10)
130if (Name != other.Name) return false; 139if (Name.Length != 0) hash ^= Name.GetHashCode(); 177if (Name.Length != 0) { 179output.WriteString(Name); 195if (Name.Length != 0) { 196size += 1 + pb::CodedOutputStream.ComputeStringSize(Name); 213if (other.Name.Length != 0) { 214Name = other.Name;
UnaryServerCallHandlerTests.cs (2)
1312return Task.FromResult(new HelloReply { Message = $"Hello {r.Name}" }); 1336Assert.Equal("QueryStringTestName!", request!.Name);