Home
last modified time | relevance | path

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

/third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
DFieldMaskPartial.cs118 public static FieldMask FromString<T>(string value) where T : IMessage property in Google.Protobuf.WellKnownTypes.FieldMask
127 … public static FieldMask FromStringEnumerable<T>(IEnumerable<string> paths) where T : IMessage property in Google.Protobuf.WellKnownTypes.FieldMask
154 public static FieldMask FromFieldNumbers<T>(params int[] fieldNumbers) where T : IMessage property in Google.Protobuf.WellKnownTypes.FieldMask
163 … public static FieldMask FromFieldNumbers<T>(IEnumerable<int> fieldNumbers) where T : IMessage property in Google.Protobuf.WellKnownTypes.FieldMask
211 public static bool IsValid<T>(FieldMask fieldMask) where T : IMessage property in Google.Protobuf.WellKnownTypes.FieldMask
238 public static bool IsValid<T>(string path) where T : IMessage property in Google.Protobuf.WellKnownTypes.FieldMask
DAnyPartial.cs88 public T Unpack<T>() where T : IMessage, new() field in Google.Protobuf.WellKnownTypes.Any
108 public bool TryUnpack<T>(out T result) where T : IMessage, new() field in Google.Protobuf.WellKnownTypes.Any
/third_party/protobuf/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.cs394 public T Parse<T>(string json) where T : IMessage, new() field in Google.Protobuf.JsonParser
407 public T Parse<T>(TextReader jsonReader) where T : IMessage, new() field in Google.Protobuf.JsonParser
DFieldCodec.cs404 … static FieldCodec<T> ForMessage<T>(uint tag, MessageParser<T> parser) where T : class, IMessage<T> class in Google.Protobuf.FieldCodec
449 …ec<T> ForGroup<T>(uint startTag, uint endTag, MessageParser<T> parser) where T : class, IMessage<T> class
/third_party/protobuf/csharp/src/Google.Protobuf.Test/
DMessageParsingHelpers.cs42 …ertReadingMessage<T>(MessageParser<T> parser, byte[] bytes, Action<T> assert) where T : IMessage<T> property in Google.Protobuf.MessageParsingHelpers
81 …rip<T>(MessageParser<T> parser, T message, Action<T> additionalAssert = null) where T : IMessage<T> property in Google.Protobuf.MessageParsingHelpers
DCodedInputStreamExtensions.cs46 where T : IMessage<T> property in Google.Protobuf.CodedInputStreamExtensions
DJsonParserTest.cs235 private static void AssertRoundtrip<T>(T message) where T : IMessage<T>, new() field in Google.Protobuf.JsonParserTest
/third_party/protobuf/csharp/compatibility_tests/v3.0.0/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
/third_party/protobuf/csharp/src/Google.Protobuf/Reflection/
DOneofAccessor.cs47 …private OneofAccessor(OneofDescriptor descriptor, Func<IMessage, int> caseDelegate, Action<IMessag… in OneofAccessor()
DCustomOptions.cs206 public bool TryGetMessage<T>(int field, out T value) where T : class, IMessage, new() field in Google.Protobuf.Reflection.CustomOptions