diff options
author | Tim Emiola <tbetbetbe@users.noreply.github.com> | 2015-03-12 14:09:12 -0700 |
---|---|---|
committer | Tim Emiola <tbetbetbe@users.noreply.github.com> | 2015-03-12 14:09:12 -0700 |
commit | bd3913abe38092dd658e4af20f2bc3013f60b9b2 (patch) | |
tree | 92f67f902bb79907db61761c54a267fa78741093 /src/csharp/Grpc.Core/Marshaller.cs | |
parent | 7459a063968f2d91ec873c56107ff57d8f592ead (diff) | |
parent | 286975fd2b277cdbafaaebf050e307f2634c9041 (diff) |
Merge pull request #1030 from jtattermusch/csharp_immutablecollections
Started using immutable collections and other code cleanup
Diffstat (limited to 'src/csharp/Grpc.Core/Marshaller.cs')
-rw-r--r-- | src/csharp/Grpc.Core/Marshaller.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/csharp/Grpc.Core/Marshaller.cs b/src/csharp/Grpc.Core/Marshaller.cs index 9c9dfa4bc9..e73e7b762e 100644 --- a/src/csharp/Grpc.Core/Marshaller.cs +++ b/src/csharp/Grpc.Core/Marshaller.cs @@ -66,6 +66,9 @@ namespace Grpc.Core } } + /// <summary> + /// Utilities for creating marshallers. + /// </summary> public static class Marshallers { public static Marshaller<T> Create<T>(Func<T, byte[]> serializer, Func<byte[], T> deserializer) |