You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// TODO(JamesNK): Remove nullable override after Grpc.Core.Api update
40
+
#pragma warning disable CS8766// Nullability of reference types in return type doesn't match implicitly implemented member (possibly because of nullability attributes).
39
41
publicabstractWriteOptions?WriteOptions{get;set;}
42
+
#pragma warning restore CS8766// Nullability of reference types in return type doesn't match implicitly implemented member (possibly because of nullability attributes).
Copy file name to clipboardExpand all lines: src/Grpc.Net.Client/Internal/Retry/StatusGrpcCall.cs
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -94,7 +94,10 @@ private sealed class StatusClientStreamWriter : IClientStreamWriter<TRequest>
94
94
{
95
95
privatereadonlyStatus_status;
96
96
97
+
// TODO(JamesNK): Remove nullable override after Grpc.Core.Api update
98
+
#pragma warning disable CS8766// Nullability of reference types in return type doesn't match implicitly implemented member (possibly because of nullability attributes).
97
99
publicWriteOptions?WriteOptions{get;set;}
100
+
#pragma warning restore CS8766// Nullability of reference types in return type doesn't match implicitly implemented member (possibly because of nullability attributes).
0 commit comments