Interface IParameterInfo
Interface for parameter information.
Inherited Members
System.Dynamic.IDynamicMetaObjectProvider.GetMetaObject(System.Linq.Expressions.Expression)
Namespace: Kephas.Reflection
Assembly: Kephas.Core.dll
Syntax
public interface IParameterInfo : IValueElementInfo, IElementInfo, IExpando, IDynamicMetaObjectProvider, IIndexable, IAttributeProvider
Properties
| Improve this Doc View SourceIsIn
Gets a value indicating whether the parameter is for input.
Declaration
bool IsIn { get; }
Property Value
Type | Description |
---|---|
System.Boolean | True if this parameter is for input, false if not. |
IsOptional
Gets a value indicating whether this parameter is optional.
Declaration
bool IsOptional { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
IsOut
Gets a value indicating whether the parameter is for output.
Declaration
bool IsOut { get; }
Property Value
Type | Description |
---|---|
System.Boolean | True if this parameter is for output, false if not. |
Position
Gets the position in the parameter's list.
Declaration
int Position { get; }
Property Value
Type | Description |
---|---|
System.Int32 | The position in the parameter's list. |