Lines Matching refs:TryGetPrimitiveValue
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()
198 …public bool TryGetBytes(int field, out ByteString value) => TryGetPrimitiveValue(field, out value); in TryGetBytes()
243 private bool TryGetPrimitiveValue<T>(int field, out T value) in TryGetPrimitiveValue() method in Google.Protobuf.Reflection.CustomOptions