public void ToString_Empty() { var any = new Any(); Assert.AreEqual("{ \"@type\": \"\", \"@value\": \"\" }", any.ToString()); }
private object GetRequestData(Google.Protobuf.WellKnownTypes.Any data, Type requestType) { var method = data.GetType().GetMethod("Unpack") !.MakeGenericMethod(requestType); return((object)method.Invoke(data, null) !); }