Interface IParameters
Represents abstract parameters bag
Namespace: NFX
Assembly: NFX.dll
Syntax
public interface IParameters
Properties
AllParameters
Enumerates all parameters
Declaration
IEnumerable<IParameter> AllParameters { get; }
Property Value
Type |
Description |
System.Collections.Generic.IEnumerable<IParameter> |
|
Methods
FindParamByName(String)
Tries to find parameter by name and returns null if parameter could not be found
Declaration
IParameter FindParamByName(string name)
Parameters
Type |
Name |
Description |
System.String |
name |
|
Returns
ParamByName(String)
Returns a parameter found by name or throws exception if it could not be found
Declaration
IParameter ParamByName(string name)
Parameters
Type |
Name |
Description |
System.String |
name |
|
Returns
Extension Methods