Home
last modified time | relevance | path

Searched defs:IMessage (Results 1 – 6 of 6) sorted by relevance

/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/csharp/src/Google.Protobuf/
DIMessage.cs42 public interface IMessage interface
78 public interface IMessage<T> : IMessage, IEquatable<T>, IDeepCloneable<T> where T : IMessage<T> interface
DJsonParser.cs376 public T Parse<T>(string json) where T : IMessage, new() field in Google.Protobuf.JsonParser
389 public T Parse<T>(TextReader jsonReader) where T : IMessage, new() field in Google.Protobuf.JsonParser
DFieldCodec.cs221 … public static FieldCodec<T> ForMessage<T>(uint tag, MessageParser<T> parser) where T : IMessage<T> property in Google.Protobuf.FieldCodec
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/csharp/src/Google.Protobuf.Test/
DCodedInputStreamExtensions.cs46 where T : IMessage<T> property in Google.Protobuf.CodedInputStreamExtensions
DJsonParserTest.cs233 private static void AssertRoundtrip<T>(T message) where T : IMessage<T>, new() field in Google.Protobuf.JsonParserTest
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/csharp/src/Google.Protobuf/WellKnownTypes/
DAnyPartial.cs69 public T Unpack<T>() where T : IMessage, new() field in Google.Protobuf.WellKnownTypes.Any