Enum SmsType
Represents the encoding type of an SMS message body.
public enum SmsType
Fields
[EnumMember(Value = "binary")] Binary = 2Binary message with raw data payload. Use with the Body and Udh properties.
[EnumMember(Value = "text")] Text = 1Standard text message using GSM 7-bit encoding. Supports basic Latin characters, numbers, and common symbols.
[EnumMember(Value = "unicode")] Unicode = 4Unicode message using UCS-2 encoding. Required for messages containing non-GSM characters such as emoji, Chinese, Arabic, etc.