Releases: Spontifixus/am-e3dc
Releases · Spontifixus/am-e3dc
v1.1.0
v1.0.4
RscpFrame
andRscpContainer
now implement theIEnumerable
-interface. Thus you can now build new frames and containers using the collection initializer syntax:var authFrame = new RscpFrame { new RscpContainer(RscpTag.RSCP_REQ_AUTHENTICATION) { new RscpString(RscpTag.RSCP_AUTHENTICATION_USER, e3dcUserName), new RscpString(RscpTag.RSCP_AUTHENTICATION_PASSWORD, e3dcPassword) } };
v1.0.3
E3dcConnection
can now handle large frames.RscpTime
class can now be constructed from a DateTime and a TimeSpan alike.RscpTime
does no longer inherit from the genericRscpValue<T>
class, thus it does no longer have aValue
-property. Instead it now features aDateTime
and aTimeSpan
property.HasErrors
andGetErrors()
API ofRscpValue
class removed.TryGetValue()
method ofRscpValue
class removed.
v1.0.2
- RscpContainer values can now be deserialized if empty.
- RscpFrame can now contain multiple frames with the same tag.
- The tag list is now a lot more complete.
v1.0.1
Changed the GetVersion()
method of the RscpFrame
class to a property.
v1.0.0
Initial Release. Have fun!