EMOobGenericIncomingMessage
Objective-C
@protocol EMOobGenericIncomingMessage <EMOobIncomingMessage>
Swift
protocol EMOobGenericIncomingMessage : EMOobIncomingMessage
Interface to an object that contains a generic message received from the OOB server.
Since
3.0-
Get the content type of the generic message.
Since
3.0
Declaration
Objective-C
@property (nonatomic, copy, readonly) NSString *contentType;Swift
var contentType: String! { get }Return Value
The content type.
-
Gets the content of the generic message.
Since
3.0
Declaration
Objective-C
@property (nonatomic, strong, readonly) id<EMSecureByteArray> content;Swift
var content: (any EMSecureByteArray)! { get }Return Value
The content.
-
Gets message content in form of secure string.
Since
3.0
Declaration
Objective-C
@property (nonatomic, strong, readonly) id<EMSecureString> contentString;Swift
var contentString: (any EMSecureString)! { get }Return Value
The content.
-
Gets message content in form of secure string in specific encoding format.
Since
3.0
Declaration
Objective-C
- (id<EMSecureString>)contentStringWithEncoding:(NSStringEncoding)encoding;Swift
func contentString(withEncoding encoding: UInt) -> (any EMSecureString)!Parameters
encodingA string encoding.
Return Value
The content.
EMOobGenericIncomingMessage Protocol Reference