Share via


INMessage Constructors

Definition

Overloads

Name Description
INMessage(NSCoder)

A constructor that initializes the object from the data stored in the unarchiver object.

INMessage(NSObjectFlag)

Constructor to call on derived classes to skip initialization and merely allocate the object.

INMessage(NativeHandle)

A constructor used when creating managed representations of unmanaged objects. Called by the runtime.

INMessage(String, String, NSDate, INPerson, INPerson[])
INMessage(String, String, String, NSDate, INPerson, INPerson[], INMessageType)
INMessage(String, String, String, NSDate, INPerson, INPerson[], INSpeakableString, INMessageType)
INMessage(String, String, String, NSDate, INPerson, INPerson[], INSpeakableString, INMessageType, String)
INMessage(String, String, String, NSDate, INPerson, INPerson[], INSpeakableString, String, INMessageLinkMetadata)
INMessage(String, String, String, NSDate, INPerson, INPerson[], INSpeakableString, INMessageType, String, INFile)
INMessage(String, String, String, NSDate, INPerson, INPerson[], INSpeakableString, INMessageType, String, INFile[])
INMessage(String, String, String, NSDate, INPerson, INPerson[], INSpeakableString, String, INMessageType, NSNumber)
INMessage(String, String, String, NSDate, INPerson, INPerson[], INSpeakableString, String, INMessageType, INMessage, INMessageReaction)
INMessage(String, String, String, NSDate, INPerson, INPerson[], INSpeakableString, String, INMessageType, INMessage, INSticker, INMessageReaction)

INMessage(NSCoder)

A constructor that initializes the object from the data stored in the unarchiver object.

[Foundation.Export("initWithCoder:")]
[ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)]
[ObjCRuntime.DesignatedInitializer]
public INMessage(Foundation.NSCoder coder);
[<Foundation.Export("initWithCoder:")>]
[<ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)>]
[<ObjCRuntime.DesignatedInitializer>]
new Intents.INMessage : Foundation.NSCoder -> Intents.INMessage

Parameters

coder
NSCoder

The unarchiver object.

Attributes

Remarks

This constructor is provided to allow the class to be initialized from an unarchiver (for example, during NIB deserialization). This is part of the NSCoding protocol.

If developers want to create a subclass of this object and continue to support deserialization from an archive, they should implement a constructor with an identical signature: taking a single parameter of type NSCoder and decorate it with the [Export("initWithCoder:"] attribute.

The state of this object can also be serialized by using the EncodeTo(NSCoder) companion method.

Applies to

INMessage(NSObjectFlag)

Constructor to call on derived classes to skip initialization and merely allocate the object.

[ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)]
protected INMessage(Foundation.NSObjectFlag t);
[<ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)>]
new Intents.INMessage : Foundation.NSObjectFlag -> Intents.INMessage

Parameters

t
NSObjectFlag

Unused sentinel value, pass NSObjectFlag.Empty.

Attributes

Remarks

This constructor should be called by derived classes when they completely construct the object in managed code and merely want the runtime to allocate and initialize the NSObject. This is required to implement the two-step initialization process that Objective-C uses, the first step is to perform the object allocation, the second step is to initialize the object. When developers invoke this constructor, they take advantage of a direct path that goes all the way up to NSObject to merely allocate the object's memory and bind the Objective-C and C# objects together. The actual initialization of the object is up to the developer.

This constructor is typically used by the binding generator to allocate the object, but prevent the actual initialization to take place. Once the allocation has taken place, the constructor has to initialize the object. With constructors generated by the binding generator this means that it manually invokes one of the "init" methods to initialize the object.

It is the developer's responsibility to completely initialize the object if they chain up using this constructor chain.

In general, if the developer's constructor invokes the corresponding base implementation, then it should also call an Objective-C init method. If this is not the case, developers should instead chain to the proper constructor in their class.

The argument value is ignored and merely ensures that the only code that is executed is the construction phase is the basic NSObject allocation and runtime type registration. Typically the chaining would look like this:

//
// The NSObjectFlag constructor merely allocates the object and registers the C# class with the Objective-C runtime if necessary.
// No actual initXxx method is invoked, that is done later in the constructor
//
// This is taken from the iOS SDK's source code for the UIView class:
//
[Export ("initWithFrame:")]
public UIView (CGRect frame) : base (NSObjectFlag.Empty)
{
    // Invoke the init method now.
    var initWithFrame = new Selector ("initWithFrame:").Handle;
    if (IsDirectBinding) {
        Handle = ObjCRuntime.Messaging.IntPtr_objc_msgSend_CGRect (this.Handle, initWithFrame, frame);
    } else {
        Handle = ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper_CGRect (this.SuperHandle, initWithFrame, frame);
    }
}

Applies to

INMessage(NativeHandle)

A constructor used when creating managed representations of unmanaged objects. Called by the runtime.

[ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)]
protected internal INMessage(ObjCRuntime.NativeHandle handle);
[<ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)>]
new Intents.INMessage : ObjCRuntime.NativeHandle -> Intents.INMessage

Parameters

handle
NativeHandle

Pointer (handle) to the unmanaged object.

Attributes

Remarks

This constructor is invoked by the runtime infrastructure (GetNSObject(IntPtr)) to create a new managed representation for a pointer to an unmanaged Objective-C object. Developers should not invoke this method directly, instead they should call GetNSObject(IntPtr) as it will prevent two instances of a managed object pointing to the same native object.

Applies to

INMessage(String, String, NSDate, INPerson, INPerson[])

[Foundation.Export("initWithIdentifier:content:dateSent:sender:recipients:")]
[ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)]
public INMessage(string identifier, string? content, Foundation.NSDate? dateSent, Intents.INPerson? sender, Intents.INPerson[]? recipients);
[<Foundation.Export("initWithIdentifier:content:dateSent:sender:recipients:")>]
[<ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)>]
new Intents.INMessage : string * string * Foundation.NSDate * Intents.INPerson * Intents.INPerson[] -> Intents.INMessage

Parameters

identifier
String
content
String
dateSent
NSDate
sender
INPerson
recipients
INPerson[]
Attributes

Applies to

INMessage(String, String, String, NSDate, INPerson, INPerson[], INMessageType)

[Foundation.Export("initWithIdentifier:conversationIdentifier:content:dateSent:sender:recipients:messageType:")]
[ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)]
public INMessage(string identifier, string? conversationIdentifier, string? content, Foundation.NSDate? dateSent, Intents.INPerson? sender, Intents.INPerson[]? recipients, Intents.INMessageType messageType);
[<Foundation.Export("initWithIdentifier:conversationIdentifier:content:dateSent:sender:recipients:messageType:")>]
[<ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)>]
new Intents.INMessage : string * string * string * Foundation.NSDate * Intents.INPerson * Intents.INPerson[] * Intents.INMessageType -> Intents.INMessage

Parameters

identifier
String
conversationIdentifier
String
content
String
dateSent
NSDate
sender
INPerson
recipients
INPerson[]
messageType
INMessageType
Attributes

Applies to

INMessage(String, String, String, NSDate, INPerson, INPerson[], INSpeakableString, INMessageType)

[Foundation.Export("initWithIdentifier:conversationIdentifier:content:dateSent:sender:recipients:groupName:messageType:")]
[ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)]
public INMessage(string identifier, string? conversationIdentifier, string? content, Foundation.NSDate? dateSent, Intents.INPerson? sender, Intents.INPerson[]? recipients, Intents.INSpeakableString? groupName, Intents.INMessageType messageType);
[<Foundation.Export("initWithIdentifier:conversationIdentifier:content:dateSent:sender:recipients:groupName:messageType:")>]
[<ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)>]
new Intents.INMessage : string * string * string * Foundation.NSDate * Intents.INPerson * Intents.INPerson[] * Intents.INSpeakableString * Intents.INMessageType -> Intents.INMessage

Parameters

identifier
String
conversationIdentifier
String
content
String
dateSent
NSDate
sender
INPerson
recipients
INPerson[]
groupName
INSpeakableString
messageType
INMessageType
Attributes

Applies to

INMessage(String, String, String, NSDate, INPerson, INPerson[], INSpeakableString, INMessageType, String)

[Foundation.Export("initWithIdentifier:conversationIdentifier:content:dateSent:sender:recipients:groupName:messageType:serviceName:")]
[ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)]
[ObjCRuntime.DesignatedInitializer]
public INMessage(string identifier, string? conversationIdentifier, string? content, Foundation.NSDate? dateSent, Intents.INPerson? sender, Intents.INPerson[]? recipients, Intents.INSpeakableString? groupName, Intents.INMessageType messageType, string? serviceName);
[<Foundation.Export("initWithIdentifier:conversationIdentifier:content:dateSent:sender:recipients:groupName:messageType:serviceName:")>]
[<ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)>]
[<ObjCRuntime.DesignatedInitializer>]
new Intents.INMessage : string * string * string * Foundation.NSDate * Intents.INPerson * Intents.INPerson[] * Intents.INSpeakableString * Intents.INMessageType * string -> Intents.INMessage

Parameters

identifier
String
conversationIdentifier
String
content
String
dateSent
NSDate
sender
INPerson
recipients
INPerson[]
groupName
INSpeakableString
messageType
INMessageType
serviceName
String
Attributes

Applies to

INMessage(String, String, String, NSDate, INPerson, INPerson[], INSpeakableString, String, INMessageLinkMetadata)

[Foundation.Export("initWithIdentifier:conversationIdentifier:content:dateSent:sender:recipients:groupName:serviceName:linkMetadata:")]
[ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)]
public INMessage(string identifier, string? conversationIdentifier, string? content, Foundation.NSDate? dateSent, Intents.INPerson? sender, Intents.INPerson[]? recipients, Intents.INSpeakableString? groupName, string? serviceName, Intents.INMessageLinkMetadata? linkMetadata);
[<Foundation.Export("initWithIdentifier:conversationIdentifier:content:dateSent:sender:recipients:groupName:serviceName:linkMetadata:")>]
[<ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)>]
new Intents.INMessage : string * string * string * Foundation.NSDate * Intents.INPerson * Intents.INPerson[] * Intents.INSpeakableString * string * Intents.INMessageLinkMetadata -> Intents.INMessage

Parameters

identifier
String
conversationIdentifier
String
content
String
dateSent
NSDate
sender
INPerson
recipients
INPerson[]
groupName
INSpeakableString
serviceName
String
linkMetadata
INMessageLinkMetadata
Attributes

Applies to

INMessage(String, String, String, NSDate, INPerson, INPerson[], INSpeakableString, INMessageType, String, INFile)

[Foundation.Export("initWithIdentifier:conversationIdentifier:content:dateSent:sender:recipients:groupName:messageType:serviceName:audioMessageFile:")]
[ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)]
public INMessage(string identifier, string? conversationIdentifier, string? content, Foundation.NSDate? dateSent, Intents.INPerson? sender, Intents.INPerson[]? recipients, Intents.INSpeakableString? groupName, Intents.INMessageType messageType, string? serviceName, Intents.INFile? audioMessageFile);
[<Foundation.Export("initWithIdentifier:conversationIdentifier:content:dateSent:sender:recipients:groupName:messageType:serviceName:audioMessageFile:")>]
[<ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)>]
new Intents.INMessage : string * string * string * Foundation.NSDate * Intents.INPerson * Intents.INPerson[] * Intents.INSpeakableString * Intents.INMessageType * string * Intents.INFile -> Intents.INMessage

Parameters

identifier
String
conversationIdentifier
String
content
String
dateSent
NSDate
sender
INPerson
recipients
INPerson[]
groupName
INSpeakableString
messageType
INMessageType
serviceName
String
audioMessageFile
INFile
Attributes

Applies to

INMessage(String, String, String, NSDate, INPerson, INPerson[], INSpeakableString, INMessageType, String, INFile[])

[Foundation.Export("initWithIdentifier:conversationIdentifier:content:dateSent:sender:recipients:groupName:messageType:serviceName:attachmentFiles:")]
[ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)]
public INMessage(string identifier, string? conversationIdentifier, string? content, Foundation.NSDate? dateSent, Intents.INPerson? sender, Intents.INPerson[]? recipients, Intents.INSpeakableString? groupName, Intents.INMessageType messageType, string? serviceName, Intents.INFile[]? attachmentFiles);
[<Foundation.Export("initWithIdentifier:conversationIdentifier:content:dateSent:sender:recipients:groupName:messageType:serviceName:attachmentFiles:")>]
[<ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)>]
new Intents.INMessage : string * string * string * Foundation.NSDate * Intents.INPerson * Intents.INPerson[] * Intents.INSpeakableString * Intents.INMessageType * string * Intents.INFile[] -> Intents.INMessage

Parameters

identifier
String
conversationIdentifier
String
content
String
dateSent
NSDate
sender
INPerson
recipients
INPerson[]
groupName
INSpeakableString
messageType
INMessageType
serviceName
String
attachmentFiles
INFile[]
Attributes

Applies to

INMessage(String, String, String, NSDate, INPerson, INPerson[], INSpeakableString, String, INMessageType, NSNumber)

[Foundation.Export("initWithIdentifier:conversationIdentifier:content:dateSent:sender:recipients:groupName:serviceName:messageType:numberOfAttachments:")]
[ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)]
public INMessage(string identifier, string? conversationIdentifier, string? content, Foundation.NSDate? dateSent, Intents.INPerson? sender, Intents.INPerson[]? recipients, Intents.INSpeakableString? groupName, string? serviceName, Intents.INMessageType messageType, Foundation.NSNumber? numberOfAttachments);
[<Foundation.Export("initWithIdentifier:conversationIdentifier:content:dateSent:sender:recipients:groupName:serviceName:messageType:numberOfAttachments:")>]
[<ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)>]
new Intents.INMessage : string * string * string * Foundation.NSDate * Intents.INPerson * Intents.INPerson[] * Intents.INSpeakableString * string * Intents.INMessageType * Foundation.NSNumber -> Intents.INMessage

Parameters

identifier
String
conversationIdentifier
String
content
String
dateSent
NSDate
sender
INPerson
recipients
INPerson[]
groupName
INSpeakableString
serviceName
String
messageType
INMessageType
numberOfAttachments
NSNumber
Attributes

Applies to

INMessage(String, String, String, NSDate, INPerson, INPerson[], INSpeakableString, String, INMessageType, INMessage, INMessageReaction)

[Foundation.Export("initWithIdentifier:conversationIdentifier:content:dateSent:sender:recipients:groupName:serviceName:messageType:referencedMessage:reaction:")]
[ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)]
public INMessage(string identifier, string? conversationIdentifier, string? content, Foundation.NSDate? dateSent, Intents.INPerson? sender, Intents.INPerson[]? recipients, Intents.INSpeakableString? groupName, string? serviceName, Intents.INMessageType messageType, Intents.INMessage? referencedMessage, Intents.INMessageReaction? reaction);
[<Foundation.Export("initWithIdentifier:conversationIdentifier:content:dateSent:sender:recipients:groupName:serviceName:messageType:referencedMessage:reaction:")>]
[<ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)>]
new Intents.INMessage : string * string * string * Foundation.NSDate * Intents.INPerson * Intents.INPerson[] * Intents.INSpeakableString * string * Intents.INMessageType * Intents.INMessage * Intents.INMessageReaction -> Intents.INMessage

Parameters

identifier
String
conversationIdentifier
String
content
String
dateSent
NSDate
sender
INPerson
recipients
INPerson[]
groupName
INSpeakableString
serviceName
String
messageType
INMessageType
referencedMessage
INMessage
Attributes

Applies to

INMessage(String, String, String, NSDate, INPerson, INPerson[], INSpeakableString, String, INMessageType, INMessage, INSticker, INMessageReaction)

[Foundation.Export("initWithIdentifier:conversationIdentifier:content:dateSent:sender:recipients:groupName:serviceName:messageType:referencedMessage:sticker:reaction:")]
[ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)]
[ObjCRuntime.DesignatedInitializer]
public INMessage(string identifier, string? conversationIdentifier, string? content, Foundation.NSDate? dateSent, Intents.INPerson? sender, Intents.INPerson[]? recipients, Intents.INSpeakableString? groupName, string? serviceName, Intents.INMessageType messageType, Intents.INMessage? referencedMessage, Intents.INSticker? sticker, Intents.INMessageReaction? reaction);
[<Foundation.Export("initWithIdentifier:conversationIdentifier:content:dateSent:sender:recipients:groupName:serviceName:messageType:referencedMessage:sticker:reaction:")>]
[<ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)>]
[<ObjCRuntime.DesignatedInitializer>]
new Intents.INMessage : string * string * string * Foundation.NSDate * Intents.INPerson * Intents.INPerson[] * Intents.INSpeakableString * string * Intents.INMessageType * Intents.INMessage * Intents.INSticker * Intents.INMessageReaction -> Intents.INMessage

Parameters

identifier
String
conversationIdentifier
String
content
String
dateSent
NSDate
sender
INPerson
recipients
INPerson[]
groupName
INSpeakableString
serviceName
String
messageType
INMessageType
referencedMessage
INMessage
sticker
INSticker
Attributes

Applies to