Data type conversions from .NET to Java Claim Store
In a .NET Web application, when you put values into the Claim Store, the Ambient Data Framework performs a number of conversions from .NET to Java. This topic lists those conversions.
| .NET | Java |
|---|---|
string | java.lang.String |
string[] | java.lang.StringArray |
char | java.lang.String |
int | java.lang.Integer |
byte | java.lang.Integer |
long | java.lang.Long |
double | java.math.BigDecimal |
float | java.lang.Float |
bool | java.lang.Boolean |
DateTime | java.util.Date |
Uri | java.net.URI |
IDictionary | java.util.HashMap |