 | LocalMailMessageServiceCreateMailbox Method |
Create a new mailbox for the specified user
Namespace: SanteDB.Core.Services.ImplAssembly: SanteDB.Core.Api (in SanteDB.Core.Api.dll) Version: 3.0.2081-alpha+b4ae72647f2cc271f89142f76fff26ad69e00f5a
Syntaxpublic Mailbox CreateMailbox(
string name,
Guid? ownerKey = null
)
Public Function CreateMailbox (
name As String,
Optional ownerKey As Guid? = Nothing
) As Mailbox
public:
virtual Mailbox^ CreateMailbox(
String^ name,
Nullable<Guid> ownerKey = nullptr
) sealed
abstract CreateMailbox :
name : string *
?ownerKey : Nullable<Guid>
(* Defaults:
let _ownerKey = defaultArg ownerKey null
*)
-> Mailbox
override CreateMailbox :
name : string *
?ownerKey : Nullable<Guid>
(* Defaults:
let _ownerKey = defaultArg ownerKey null
*)
-> Mailbox Parameters
- name String
- The name of the mailbox to be created
- ownerKey NullableGuid (Optional)
- The key of the user that should own the mailbox
Return Value
MailboxThe created mailbox
Implements
IMailMessageServiceCreateMailbox(String, NullableGuid)
See Also