Add information about parameters to functions callable via the "C# Function" feature.
Namespace: Composite.FunctionsAssembly: Composite (in Composite.dll) Version: 3.0.4358.29153
Syntax
Examples
Here is an example of how to use FunctionParameterDescriptionAttribute
CopyC#
[FunctionParameterDescription("searchTerm", "Search term", "One or more keywords to search for")] [FunctionParameterDescription("filter", "Filter", "Filter to apply to data before searching for search term", null)] public static int GetItemCount( string searchTerm, Expression<Func<IMyDataType,bool>> filter ) { if (filter == null ) filter = _defaultFilter; // more code here }
Inheritance Hierarchy
System..::..Object
System..::..Attribute
Composite.Functions..::..FunctionParameterDescriptionAttribute
System..::..Attribute
Composite.Functions..::..FunctionParameterDescriptionAttribute