Sends a message to the members of a networking group

Namespace: MonoSoftware.MonoX.BusinessLayer
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
public virtual bool SendMessageToGroup(
	Guid messageId,
	Guid userId,
	string groupName,
	MessageStatus status,
	bool sendMailCopy,
	bool isBodyHtml = false
)
Visual Basic
Public Overridable Function SendMessageToGroup ( 
	messageId As Guid,
	userId As Guid,
	groupName As String,
	status As MessageStatus,
	sendMailCopy As Boolean,
	Optional isBodyHtml As Boolean = false
) As Boolean
Visual C++
public:
virtual bool SendMessageToGroup(
	Guid messageId, 
	Guid userId, 
	String^ groupName, 
	MessageStatus status, 
	bool sendMailCopy, 
	bool isBodyHtml = false
)
F#
abstract SendMessageToGroup : 
        messageId : Guid * 
        userId : Guid * 
        groupName : string * 
        status : MessageStatus * 
        sendMailCopy : bool * 
        ?isBodyHtml : bool 
(* Defaults:
        let _isBodyHtml = defaultArg isBodyHtml false
*)
-> bool 
override SendMessageToGroup : 
        messageId : Guid * 
        userId : Guid * 
        groupName : string * 
        status : MessageStatus * 
        sendMailCopy : bool * 
        ?isBodyHtml : bool 
(* Defaults:
        let _isBodyHtml = defaultArg isBodyHtml false
*)
-> bool 

Parameters

messageId
Type: System..::..Guid
Message id
userId
Type: System..::..Guid
User id
groupName
Type: System..::..String
Group name
status
Type: MonoSoftware.MonoX.Repositories..::..MessageStatus
Message status
sendMailCopy
Type: System..::..Boolean
Indicates wheter to send an e-mail copy of the message to recipients adresses
isBodyHtml (Optional)
Type: System..::..Boolean
Indicates if the mody of the message should be formatted as HTML

Return Value

Type: Boolean
True if successful, false otherwise

Implements

IMessageBLL..::..SendMessageToGroup(Guid, Guid, String, MessageStatus, Boolean, Boolean)

See Also