Home
last modified time | relevance | path

Searched refs:TryGetInt64 (Results 1 – 2 of 2) sorted by relevance

/external/protobuf/csharp/src/Google.Protobuf.Test/Reflection/
DCustomOptionsTest.cs166 AssertOption(long.MinValue, options.TryGetInt64, Int64Opt); in MinValues()
174 AssertOption(long.MinValue, options.TryGetInt64, SFixed64Opt); in MinValues()
183 AssertOption(long.MaxValue, options.TryGetInt64, Int64Opt); in MaxValues()
/external/protobuf/csharp/src/Google.Protobuf/Reflection/
DCustomOptions.cs96 … public bool TryGetInt64(int field, out long value) => TryGetPrimitiveValue(field, out value); in TryGetInt64() method in Google.Protobuf.Reflection.CustomOptions
132 public bool TryGetSFixed64(int field, out long value) => TryGetInt64(field, out value); in TryGetSFixed64()