Skip to content

Commit f1a0493

Browse files
committed
fix intellisense; prep release notes
1 parent 0320f84 commit f1a0493

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

docs/releasenotes.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release Notes
22

3+
## 1.0.**
4+
5+
- make use of the contextual (buffer rather than `byte[]`) APIs when possible (i.e. when protobuf-net v3 is targeted)
6+
37
## 1.0.81
48

59
- support `CancellationToken` in service signatures in place of `CallContext` (#95)

src/protobuf-net.Grpc/Configuration/ProtoBufMarshallerFactory.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ public enum Options
2828
/// </summary>
2929
ContractTypesOnly = 1 << 0,
3030
/// <summary>
31-
/// Disable 'contextual' serializer usage (this means serializers that use <see cref="ReadOnlySequence{byte}"/> or <see cref="IBufferWriter{byte}"/>),
32-
/// using the legacy <see cref="byte[]"/> APIs.
31+
/// Disable 'contextual' serializer usage (this means serializers that use <see cref="ReadOnlySequence{T}"/> or <see cref="IBufferWriter{T}"/>),
32+
/// using the legacy <see cref="T:byte[]" /> APIs.
3333
/// </summary>
3434
DisableContextualSerializer = 1 << 1,
3535
}

0 commit comments

Comments
 (0)