using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Dynamic; using System.Reflection; using System.Xml.Linq; #pragma warning disable CS8600 // Converting null literal or possible null value to non-nullable type. namespace EasyDevCore.Common.Wrapper { /// /// Call static member /// public class DynamicObjectWrapper : DynamicObject { private Type _type; /// /// Initializes a new instance of the class. /// /// The type. public DynamicObjectWrapper(Type type) { _type = type; } // Handle static properties /// /// Provides the implementation for operations that get member values. Classes derived from the class can override this method to specify dynamic behavior for operations such as getting a value for a property. /// /// Provides information about the object that called the dynamic operation. The binder.Name property provides the name of the member on which the dynamic operation is performed. For example, for the Console.WriteLine(sampleObject.SampleProperty) statement, where sampleObject is an instance of the class derived from the class, binder.Name returns "SampleProperty". The binder.IgnoreCase property specifies whether the member name is case-sensitive. /// The result of the get operation. For example, if the method is called for a property, you can assign the property value to . /// /// true if the operation is successful; otherwise, false. If this method returns false, the run-time binder of the language determines the behavior. (In most cases, a run-time exception is thrown.) /// public override bool TryGetMember(GetMemberBinder binder, out object result) { PropertyInfo prop = _type.GetProperty(binder.Name, BindingFlags.FlattenHierarchy | BindingFlags.Static | BindingFlags.Public); if (prop == null) { result = null; return false; } result = prop.GetValue(null, null); return true; } /// /// Provides the implementation for operations that invoke a member. Classes derived from the class can override this method to specify dynamic behavior for operations such as calling a method. /// /// Provides information about the dynamic operation. The binder.Name property provides the name of the member on which the dynamic operation is performed. For example, for the statement sampleObject.SampleMethod(100), where sampleObject is an instance of the class derived from the class, binder.Name returns "SampleMethod". The binder.IgnoreCase property specifies whether the member name is case-sensitive. /// The arguments that are passed to the object member during the invoke operation. For example, for the statement sampleObject.SampleMethod(100), where sampleObject is derived from the class, is equal to 100. /// The result of the member invocation. /// /// true if the operation is successful; otherwise, false. If this method returns false, the run-time binder of the language determines the behavior. (In most cases, a language-specific run-time exception is thrown.) /// public override bool TryInvokeMember(InvokeMemberBinder binder, object[] args, out object result) { MethodInfo method = _type.GetMethod(binder.Name, BindingFlags.FlattenHierarchy | BindingFlags.Static | BindingFlags.Public); if (method == null) { result = null; return false; } result = method.Invoke(null, args); return true; } } }