C# 클래스 Hyves.Service.MessagesService

Represents the service APIs that allow access to information on Hyves message.
파일 보기 프로젝트 열기: Sitecore/Hyves-network-provider-for-Sitecore-Social-Connected-1.3

공개 메소드들

메소드 설명
SendMessage ( string title, string body, Collection targetUserIds, Collection hubIds, Collection groupIds ) : bool

Send a private message to multiple targets. This corresponds to the messages.send Hyves method.

Spam sensitive method (for trusted partners only).

SendMessage ( string title, string body, string targetUserId ) : bool

Send a private message to multiple targets. This corresponds to the messages.send Hyves method.

Spam sensitive method (for trusted partners only).

SendMessageToUser ( string title, string body, Collection targetUserIds ) : bool

Send a private message to an user. This corresponds to the messages.sendToUser Hyves method.

Spam sensitive method (for trusted partners only).

SendMessageToUser ( string title, string body, string targetUserId ) : bool

Send a private message to an user. This corresponds to the messages.sendToUser Hyves method.

Spam sensitive method (for trusted partners only).

비공개 메소드들

메소드 설명
MessagesService ( HyvesSession session ) : System

메소드 상세

SendMessage() 공개 메소드

Send a private message to multiple targets. This corresponds to the messages.send Hyves method.
Spam sensitive method (for trusted partners only).
public SendMessage ( string title, string body, Collection targetUserIds, Collection hubIds, Collection groupIds ) : bool
title string Title of the message.
body string Body of the message.
targetUserIds Collection
hubIds Collection A list of hubs.
groupIds Collection A list of groups.
리턴 bool

SendMessage() 공개 메소드

Send a private message to multiple targets. This corresponds to the messages.send Hyves method.
Spam sensitive method (for trusted partners only).
public SendMessage ( string title, string body, string targetUserId ) : bool
title string Title of the message.
body string Body of the message.
targetUserId string A single user.
리턴 bool

SendMessageToUser() 공개 메소드

Send a private message to an user. This corresponds to the messages.sendToUser Hyves method.
Spam sensitive method (for trusted partners only).
public SendMessageToUser ( string title, string body, Collection targetUserIds ) : bool
title string Title of the message.
body string Body of the message.
targetUserIds Collection
리턴 bool

SendMessageToUser() 공개 메소드

Send a private message to an user. This corresponds to the messages.sendToUser Hyves method.
Spam sensitive method (for trusted partners only).
public SendMessageToUser ( string title, string body, string targetUserId ) : bool
title string Title of the message.
body string Body of the message.
targetUserId string A single userid.
리턴 bool