2 writes to Name
Microsoft.AspNetCore.Grpc.Swagger.Tests (2)
artifacts\obj\Microsoft.AspNetCore.Grpc.Swagger.Tests\Release\net9.0\Proto\Greeter.cs (2)
192Name = other.Name; 229Name = input.ReadString();
12 references to Name
Microsoft.AspNetCore.Grpc.Swagger.Tests (12)
artifacts\obj\Microsoft.AspNetCore.Grpc.Swagger.Tests\Release\net9.0\Proto\Greeter.cs (10)
121if (Name != other.Name) return false; 129if (Name.Length != 0) hash ^= Name.GetHashCode(); 162if (Name.Length != 0) { 164output.WriteString(Name); 176if (Name.Length != 0) { 177size += 1 + pb::CodedOutputStream.ComputeStringSize(Name); 191if (other.Name.Length != 0) { 192Name = other.Name;
Services\GreeterService.cs (2)
21_logger.LogInformation($"Sending hello to {request.Name}"); 22return Task.FromResult(new HelloReply { Message = $"Hello {request.Name}" });