Enum ConstructorParamType
Defines an enumeration for the parameter types used in constructors of depencendy injection services.
Namespace: Juhta.Net.Services
Assembly: Juhta.Net.Services.dll
Syntax
public enum ConstructorParamType
Fields
Name | Description |
---|---|
Boolean | Specifies the System.Boolean type. |
Byte | Specifies the System.Byte type. |
Char | Specifies the System.Char type. |
Date | Maps to the System.DateTime type so that the time part is 00:00:00. |
DateTime | Specifies the System.DateTime type. |
Decimal | Specifies the System.Decimal type. |
Double | Specifies the System.Double type. |
Float | Maps to the System.Single type. |
Int | Maps to the System.Int32 type. |
Int16 | Specifies the System.Int16 type. |
Int32 | Specifies the System.Int32 type. |
Int64 | Specifies the System.Int64 type. |
Long | Maps to the System.Int64 type. |
SByte | Specifies the System.SByte type. |
Service | Specifies the Service type. |
Short | Maps to the System.Int16 type. |
Single | Specifies the System.Single type. |
String | Specifies the System.String type. |
Time | Maps to the System.DateTime type so that the date part is uninitialized. |
TimeSpan | Specifies the System.TimeSpan type. |
UInt | Maps to the System.UInt32 type. |
UInt16 | Specifies the System.UInt16 type. |
UInt32 | Specifies the System.UInt32 type. |
UInt64 | Specifies the System.UInt64 type. |
ULong | Maps to the System.UInt64 type. |
UShort | Maps to the System.UInt16 type. |