We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Because of the nature of the MQTT protocol, we make use of specific byte length and signed/unsigned variables that turn out to be non CLS compliant.
CLS compliance includes rules like:
Unsigned types should not be part of the public interface of the class.
The library uses UInt8, ushort and other similar types throughout. We likely have to do a full review to be CLS compliant.
The text was updated successfully, but these errors were encountered:
We are now CLS-compliant 💪
Sorry, something went wrong.
No branches or pull requests
🚀 Feature Request
Because of the nature of the MQTT protocol, we make use of specific byte length and signed/unsigned variables that turn out to be non CLS compliant.
CLS compliance includes rules like:
The library uses UInt8, ushort and other similar types throughout. We likely have to do a full review to be CLS compliant.
📎 Additional context
The text was updated successfully, but these errors were encountered: