/*Copyright (c) 2010 James CraigPermission is hereby granted, free of charge, to any person obtaining a copyof this software and associated documentation files (the "Software"), to dealin the Software without restriction, including without limitation the rightsto use, copy, modify, merge, publish, distribute, sublicense, and/or sellcopies of the Software, and to permit persons to whom the Software isfurnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included inall copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS ORIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THEAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHERLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS INTHE SOFTWARE.*/#region Usingsusing System;using System.IO;using System.Reflection;using System.Text;using System.Linq.Expressions;using System.Collections;#endregionnamespace Utilities{ /// /// Utility class that handles various /// functions dealing with reflection. /// public static class Reflection { /// /// Gets a property's type /// /// object who contains the property /// Path of the property (ex: Prop1.Prop2.Prop3 would be /// the Prop1 of the source object, which then has a Prop2 on it, which in turn /// has a Prop3 on it.) /// The type of the property specified or null if it can not be reached. public static Type GetPropertyType(object SourceObject, string PropertyPath) { try { if (SourceObject == null || string.IsNullOrEmpty(PropertyPath)) return null; string[] Splitter = { "." }; string[] SourceProperties = PropertyPath.Split(Splitter, StringSplitOptions.None); object TempSourceProperty = SourceObject; Type PropertyType = SourceObject.GetType(); PropertyInfo PropertyInfo = null; for (int x = 0; x < SourceProperties.Length; ++x) { PropertyInfo = PropertyType.GetProperty(SourceProperties[x]); PropertyType = PropertyInfo.PropertyType; } return PropertyType; } catch { throw; } } /// /// Gets a property's type /// /// Object type /// Path of the property (ex: Prop1.Prop2.Prop3 would be /// the Prop1 of the source object, which then has a Prop2 on it, which in turn /// has a Prop3 on it.) /// The type of the property specified or null if it can not be reached. public static Type GetPropertyType(string PropertyPath) { try { if (string.IsNullOrEmpty(PropertyPath)) return null; Type ObjectType = typeof(T); object Object = ObjectType.Assembly.CreateInstance(ObjectType.FullName); return GetPropertyType(Object, PropertyPath); } catch { throw; } } }}