01/29/16

.net Client Library Update

We’ve updated our .NET library to protect against invalid “optout_email” values.

UserRequest.OptoutEmail is now an enum rather than a string. In your code, replace the string “all” with OptoutStatus.All, “blast” with OptoutStatus.Blast, “basic” with OptoutStatus.Basic, and “none” withOptoutStatus.None. For example, “userRequest.OptoutEmail = “all”;” should now be “userRequest.OptoutEmail = UserRequest.OptoutStatus.All;”

Visit our documentation for more information or click directly to the Github library.

Top