Home
last modified time | relevance | path

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

/external/protobuf/csharp/src/Google.Protobuf.Test/Reflection/
DCustomOptionsTest.cs167 AssertOption(uint.MinValue, options.TryGetUInt32, UInt32Opt); in MinValues()
171 AssertOption(uint.MinValue, options.TryGetUInt32, Fixed32Opt); in MinValues()
184 AssertOption(uint.MaxValue, options.TryGetUInt32, UInt32Opt); in MaxValues()
/external/protobuf/csharp/src/Google.Protobuf/Reflection/
DCustomOptions.cs105 public bool TryGetFixed32(int field, out uint value) => TryGetUInt32(field, out value); in TryGetFixed32()
158 … public bool TryGetUInt32(int field, out uint value) => TryGetPrimitiveValue(field, out value); in TryGetUInt32() method in Google.Protobuf.Reflection.CustomOptions