Home
last modified time | relevance | path

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

/external/protobuf/csharp/src/Google.Protobuf.Test/Reflection/
DCustomOptionsTest.cs134 AssertOption(9876543210UL, fileOptions.TryGetUInt64, FileOpt1); in OptionLocations()
168 AssertOption(ulong.MinValue, options.TryGetUInt64, UInt64Opt); in MinValues()
172 AssertOption(ulong.MinValue, options.TryGetUInt64, Fixed64Opt); in MinValues()
185 AssertOption(ulong.MaxValue, options.TryGetUInt64, UInt64Opt); in MaxValues()
/external/protobuf/csharp/src/Google.Protobuf/Reflection/
DCustomOptions.cs114 public bool TryGetFixed64(int field, out ulong value) => TryGetUInt64(field, out value); in TryGetFixed64()
166 … public bool TryGetUInt64(int field, out ulong value) => TryGetPrimitiveValue(field, out value); in TryGetUInt64() method in Google.Protobuf.Reflection.CustomOptions