Searched refs:TryGetPrimitiveValue (Results 1 – 1 of 1) sorted by relevance
/external/protobuf/csharp/src/Google.Protobuf/Reflection/ |
D | CustomOptions.cs | 80 public bool TryGetBool(int field, out bool value) => TryGetPrimitiveValue(field, out value); in TryGetBool() 88 public bool TryGetInt32(int field, out int value) => TryGetPrimitiveValue(field, out value); in TryGetInt32() 96 … public bool TryGetInt64(int field, out long value) => TryGetPrimitiveValue(field, out value); in TryGetInt64() 141 … public bool TryGetSInt32(int field, out int value) => TryGetPrimitiveValue(field, out value); in TryGetSInt32() 150 … public bool TryGetSInt64(int field, out long value) => TryGetPrimitiveValue(field, out value); in TryGetSInt64() 158 … public bool TryGetUInt32(int field, out uint value) => TryGetPrimitiveValue(field, out value); in TryGetUInt32() 166 … public bool TryGetUInt64(int field, out ulong value) => TryGetPrimitiveValue(field, out value); in TryGetUInt64() 174 … public bool TryGetFloat(int field, out float value) => TryGetPrimitiveValue(field, out value); in TryGetFloat() 182 … public bool TryGetDouble(int field, out double value) => TryGetPrimitiveValue(field, out value); in TryGetDouble() 190 … public bool TryGetString(int field, out string value) => TryGetPrimitiveValue(field, out value); in TryGetString() [all …]
|