2 writes to Name
Microsoft.AspNetCore.Grpc.JsonTranscoding.Tests (2)
artifacts\obj\Microsoft.AspNetCore.Grpc.JsonTranscoding.Tests\Release\net9.0\Proto\Httpbody.cs (2)
213Name = other.Name; 263Name = input.ReadString();
12 references to Name
Microsoft.AspNetCore.Grpc.JsonTranscoding.Tests (12)
artifacts\obj\Microsoft.AspNetCore.Grpc.JsonTranscoding.Tests\Release\net9.0\Proto\Httpbody.cs (10)
129if (Name != other.Name) return false; 138if (Name.Length != 0) hash ^= Name.GetHashCode(); 176if (Name.Length != 0) { 178output.WriteString(Name); 194if (Name.Length != 0) { 195size += 1 + pb::CodedOutputStream.ComputeStringSize(Name); 212if (other.Name.Length != 0) { 213Name = other.Name;
UnaryServerCallHandlerTests.cs (2)
1311return Task.FromResult(new HelloReply { Message = $"Hello {r.Name}" }); 1335Assert.Equal("QueryStringTestName!", request!.Name);