Interface IParameter
Represents abstract parameter
Inherited Members
Namespace: NFX
Assembly: NFX.dll
Syntax
public interface IParameter : INamed
Properties
HasValue
Indicates whether parameter has a value, even if Value==null parameter may or may not have a value (be assigned) in some scenarious
Declaration
bool HasValue { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
IsInput
Indicates whether parameter is purposed as an input for a target
Declaration
bool IsInput { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
Value
Parameter Value
Declaration
object Value { get; }
Property Value
Type | Description |
---|---|
System.Object |