Navigation

Categories
Show Navigation Next Topic  »

IFlexSourceProvider interface

Namespace: CodeEffects.Rule.Core

Declaration

using System;

namespace CodeEffects.Rule.Core
{
	public interface IFlexDataProvider
	{
		object GetProperty(object target, string name);
		object CallMethod(object target, string name, params object[] args);
		void SetProperty(object target, string name, object value);
		Type GetPropertyType(string propertyName);
		Type GetMethodReturnType(string methodName);
	}
}

Notes

This interface is used by the FlexSource technology. Please refer to its topic for details.


Post your questions on Stackoverflow and become a part of our growing community

Comments: 0