Class MmsMessage
Class with MMS (Multimedia Messaging Service) message properties and content.
Inheritance
System.Object
MmsMessage
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Eclo.nF.SIM800H
Assembly: cs.temp.dll.dll
Syntax
public class MmsMessage
Constructors
MmsMessage(Byte[], String)
Instantiates a new MMS message with the given parameters.
Declaration
public MmsMessage(byte[] image, string title = null)
Parameters
Type | Name | Description |
---|---|---|
System.Byte[] | image | Message image. |
System.String | title | Message title. Optional. Set to null if not used. |
MmsMessage(String)
Instantiates a new MMS message with the given parameters.
Declaration
public MmsMessage(string title = null)
Parameters
Type | Name | Description |
---|---|---|
System.String | title | Message title. Optional. Set to null if not used. |
MmsMessage(String, Byte[], String)
Instantiates a new MMS message with the given parameters.
Declaration
public MmsMessage(string text = null, byte[] image = null, string title = null)
Parameters
Type | Name | Description |
---|---|---|
System.String | text | Message content. |
System.Byte[] | image | Message image. |
System.String | title | Message title. Optional. Set to null if not used. |
MmsMessage(String, String)
Instantiates a new MMS message with the given parameters.
Declaration
public MmsMessage(string text, string title = null)
Parameters
Type | Name | Description |
---|---|---|
System.String | text | Message content. |
System.String | title | Message title. Optional. Set to null if not used. |
Properties
Image
Image content to be included in the message.
Declaration
public byte[] Image { get; }
Property Value
Type | Description |
---|---|
System.Byte[] |
Text
Text content to be included in the message.
Declaration
public string Text { get; }
Property Value
Type | Description |
---|---|
System.String |
Title
Message title
Declaration
public string Title { get; }
Property Value
Type | Description |
---|---|
System.String |