-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathReflectionHelper.cs
35 lines (30 loc) · 1.07 KB
/
ReflectionHelper.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System.Reflection;
namespace RESTClient {
/// <summary>
/// Helper methods to check and get object properties
/// </summary>
public static class ReflectionHelper {
public static bool HasProperty(object obj, string propertyName) {
return GetProperty(obj, propertyName) != null;
}
public static PropertyInfo GetProperty(object obj, string propertyName) {
#if NETFX_CORE
return obj.GetType().GetTypeInfo().GetDeclaredProperty(propertyName); // GetProperty for UWP
#else
return obj.GetType().GetProperty(propertyName);
#endif
}
public static bool HasField(object obj, string fieldName) {
return GetField(obj, fieldName) != null;
}
public static FieldInfo GetField(object obj, string fieldName) {
#if NETFX_CORE
return obj.GetType().GetTypeInfo().GetDeclaredField(fieldName); // GetField for UWP
#else
return obj.GetType().GetField(fieldName);
#endif
}
}
}