Home
last modified time | relevance | path

Searched refs:GetGetMethod (Results 1 – 5 of 5) sorted by relevance

/external/protobuf/csharp/src/Google.Protobuf/Compatibility/
DPropertyInfoExtensions.cs48 internal static MethodInfo GetGetMethod(this PropertyInfo target) in GetGetMethod() method in Google.Protobuf.Compatibility.PropertyInfoExtensions
51 var method = target.GetGetMethod(); in GetGetMethod()
/external/protobuf/csharp/src/Google.Protobuf.Test/Compatibility/
DPropertyInfoExtensionsTest.cs57 Assert.IsNotNull(PropertyInfoExtensions.GetGetMethod(propertyInfo)); in GetGetMethod_Success()
70 Assert.IsNull(PropertyInfoExtensions.GetGetMethod(propertyInfo)); in GetGetMethod_NoAccessibleGetter()
/external/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/Compatibility/
DPropertyInfoExtensionsTest.cs57 Assert.IsNotNull(PropertyInfoExtensions.GetGetMethod(propertyInfo)); in GetGetMethod_Success()
70 Assert.IsNull(PropertyInfoExtensions.GetGetMethod(propertyInfo)); in GetGetMethod_NoAccessibleGetter()
/external/protobuf/csharp/src/Google.Protobuf/Reflection/
DFieldAccessorBase.cs50 getValueDelegate = ReflectionUtil.CreateFuncIMessageObject(property.GetGetMethod()); in FieldAccessorBase()
DOneofAccessor.cs55 caseDelegate = ReflectionUtil.CreateFuncIMessageInt32(caseProperty.GetGetMethod()); in OneofAccessor()