|
Sendbird Chat SDK for .NET
|
Public Member Functions | |
| void | Init (SbInitParams inInitParams) |
| Initializes SendbirdChat with given app ID. More... | |
| void | Connect (string inUserId, SbUserHandler inCompletionHandler) |
| Performs a connection to Sendbird with the user ID. More... | |
| void | Connect (string inUserId, string inAuthToken, SbUserHandler inCompletionHandler) |
| Performs a connection to Sendbird with the user ID and the access token. More... | |
| void | Connect (string inUserId, string inAuthToken, string inApiHost, string inWsHost, SbUserHandler inCompletionHandler) |
| Performs a connection to Sendbird with the user ID and the access token. More... | |
| void | Disconnect (SbDisconnectHandler inDisconnectHandler) |
| Disconnects from Sendbird. If this method is invoked, the current user will be invalidated. More... | |
| bool | Reconnect () |
| Starts reconnection explicitly. The ConnectionDelegate delegates will be invoked by the reconnection process. More... | |
| SbConnectionState | GetConnectionState () |
| Gets the SDK connection state. More... | |
| void | SetSessionHandler (SbSessionHandler inSessionHandler) |
| Set a SessionHandler which is required for SDK refresh the session when the current session expires. More... | |
| void | SetChannelInvitationPreference (bool inAutoAccept, SbErrorHandler inCompletionHandler) |
| Sets group channel invitation preference for auto acceptance. More... | |
| void | GetChannelInvitationPreference (SbChannelInvitationPreferenceHandler inCompletionHandler) |
| Gets group channel invitation preference for auto acceptance. More... | |
| void | AddUserEventHandler (string inIdentifier, SbUserEventHandler inUserEventHandler) |
| Adds a user event handler. All added handlers will be notified when events occur. More... | |
| void | RemoveUserEventHandler (string inIdentifier) |
| Removes a user event handler. The deleted handler no longer be notified. More... | |
| void | RemoveAllUserEventHandlers () |
| Removes all user event handlers added by AddUseEventHandler. More... | |
| void | AddConnectionHandler (string inIdentifier, SbConnectionHandler inConnectionHandler) |
| Adds a connection handler. All added handlers will be notified when events occurs. More... | |
| void | RemoveConnectionHandler (string inIdentifier) |
| Removes a connection handler. The deleted handler no longer be notified. More... | |
| void | RemoveAllConnectionHandlers () |
| Removes all connection handlers added by AddConnectionHandler. More... | |
| void | BlockUser (string inUserId, SbUserHandler inCompletionHandler) |
| Blocks the specified User ID. Blocked User cannot send messages to the blocker. More... | |
| void | UnblockUser (string inUserId, SbErrorHandler inCompletionHandler) |
| Unblocks the specified User ID. Unblocked User cannot send messages to the ex-blocker. More... | |
| void | UpdateCurrentUserInfo (SbUserUpdateParams inParams, SbErrorHandler inCompletionHandler) |
| Updates current User's information. More... | |
| void | UpdateCurrentUserInfo (List< string > inPreferredLanguages, SbErrorHandler inCompletionHandler) |
| Updates current User's information. More... | |
| SbApplicationUserListQuery | CreateApplicationUserListQuery (SbApplicationUserListQueryParams inParams=null) |
| Creates a query instance to get the whole User list. More... | |
| SbBlockedUserListQuery | CreateBlockedUserListQuery (SbBlockedUserListQueryParams inParams=null) |
| Creates a query instance to get only the blocked User (by me) list. More... | |
| SbMessageSearchQuery | CreateMessageSearchQuery (SbMessageSearchQueryParams inParams=null) |
| Creates a query instance to search for a message. More... | |
| void | RegisterPushToken (SbPushTokenType inPushTokenType, string inPushToken, bool inUnique, SbPushTokenRegistrationStatusHandler inCompletionHandler) |
| Registers push token for the current User to receive push notification. More... | |
| void | UnregisterPushToken (SbPushTokenType inPushTokenType, string inPushToken, SbErrorHandler inCompletionHandler) |
| Unregisters push token for the current User. More... | |
| void | UnregisterAllPushToken (SbErrorHandler inCompletionHandler) |
| Unregisters all push token bound to the current User. More... | |
| void | GetMyPushTokensByToken (string inToken, SbPushTokenType inPushTokenType, SbPushTokensHandler inCompletionHandler) |
| Requests push tokens of current user from given token. The result is passed to handler. More... | |
| void | SetPushTemplate (string inTemplateName, SbErrorHandler inCompletionHandler) |
| Sets push template option for the current User. More... | |
| void | GetPushTemplate (SbPushTemplateHandler inCompletionHandler) |
| Gets push template option for the current User. For details of push template option, refer to SetPushTemplate. This can be used, for instance, when you need to check the push notification content preview is on or off at the moment. More... | |
| void | SetSnoozePeriod (bool inEnabled, long inStartTimestamp, long inEndTimestamp, SbErrorHandler inCompletionHandler) |
| Sets snooze period for the current User. If this option is enabled, the current User does not receive push notification during the given period. It's not a repetitive operation. If you want to snooze repeatedly, use SetDoNotDisturb. More... | |
| void | GetSnoozePeriod (SbSnoozePeriodHandler inCompletionHandler) |
| Gets snooze period for the current User. More... | |
| void | SetDoNotDisturb (bool inEnabled, int inStartHour, int inStartMin, int inEndHour, int inEndMin, string inTimezone, SbErrorHandler inCompletionHandler) |
| Sets Do-not-disturb option for the current User. If this option is enabled, the current User does not receive push notification during the specified time repeatedly. If you want to snooze specific period, use SetSnoozePeriod. More... | |
| void | GetDoNotDisturb (SbDoNotDisturbHandler inCompletionHandler) |
| Gets Do-not-disturb option for the current User. More... | |
| void | GetPushTriggerOption (SbPushTriggerOptionHandler inCompletionHandler) |
| Requests a setting that decides which push notification for the current user to receive in all the group channel. More... | |
| void | SetPushTriggerOption (SbPushTriggerOption inPushTriggerOption, SbErrorHandler inCompletionHandler) |
| Changes a setting that decides which push notification for the current user to receive in all the group channel. More... | |
| void | Init (SbInitParams inInitParams) |
| Initializes SendbirdChat with given app ID. More... | |
| void | Connect (string inUserId, SbUserHandler inCompletionHandler) |
| Performs a connection to Sendbird with the user ID. More... | |
| void | Connect (string inUserId, string inAuthToken, SbUserHandler inCompletionHandler) |
| Performs a connection to Sendbird with the user ID and the access token. More... | |
| void | Connect (string inUserId, string inAuthToken, string inApiHost, string inWsHost, SbUserHandler inCompletionHandler) |
| Performs a connection to Sendbird with the user ID and the access token. More... | |
| void | Disconnect (SbDisconnectHandler inDisconnectHandler=null) |
| Disconnects from Sendbird. If this method is invoked, the current user will be invalidated. More... | |
| bool | Reconnect () |
| Starts reconnection explicitly. The ConnectionDelegate delegates will be invoked by the reconnection process. More... | |
| SbConnectionState | GetConnectionState () |
| Gets the SDK connection state. More... | |
| void | SetSessionHandler (SbSessionHandler inSessionHandler) |
| Set a SessionHandler which is required for SDK refresh the session when the current session expires. More... | |
| void | SetChannelInvitationPreference (bool inAutoAccept, SbErrorHandler inCompletionHandler) |
| Sets group channel invitation preference for auto acceptance. More... | |
| void | GetChannelInvitationPreference (SbChannelInvitationPreferenceHandler inCompletionHandler) |
| Gets group channel invitation preference for auto acceptance. More... | |
| void | AddUserEventHandler (string inIdentifier, SbUserEventHandler inUserEventHandler) |
| Adds a user event handler. All added handlers will be notified when events occur. More... | |
| void | RemoveUserEventHandler (string inIdentifier) |
| Removes a user event handler. The deleted handler no longer be notified. More... | |
| void | RemoveAllUserEventHandlers () |
| Removes all user event handlers added by AddUseEventHandler. More... | |
| void | AddConnectionHandler (string inIdentifier, SbConnectionHandler inConnectionHandler) |
| Adds a connection handler. All added handlers will be notified when events occurs. More... | |
| void | RemoveConnectionHandler (string inIdentifier) |
| Removes a connection handler. The deleted handler no longer be notified. More... | |
| void | RemoveAllConnectionHandlers () |
| Removes all connection handlers added by AddConnectionHandler. More... | |
| void | BlockUser (string inUserId, SbUserHandler inCompletionHandler) |
| Blocks the specified User ID. Blocked User cannot send messages to the blocker. More... | |
| void | UnblockUser (string inUserId, SbErrorHandler inCompletionHandler) |
| Unblocks the specified User ID. Unblocked User cannot send messages to the ex-blocker. More... | |
| void | UpdateCurrentUserInfo (SbUserUpdateParams inParams, SbErrorHandler inCompletionHandler) |
| Updates current User's information. More... | |
| void | UpdateCurrentUserInfo (List< string > inPreferredLanguages, SbErrorHandler inCompletionHandler) |
| Updates current User's information. More... | |
| SbApplicationUserListQuery | CreateApplicationUserListQuery (SbApplicationUserListQueryParams inParams=null) |
| Creates a query instance to get the whole User list. More... | |
| SbBlockedUserListQuery | CreateBlockedUserListQuery (SbBlockedUserListQueryParams inParams=null) |
| Creates a query instance to get only the blocked User (by me) list. More... | |
| SbMessageSearchQuery | CreateMessageSearchQuery (SbMessageSearchQueryParams inParams=null) |
| Creates a query instance to search for a message. More... | |
| void | RegisterPushToken (SbPushTokenType inPushTokenType, string inPushToken, bool inUnique, SbPushTokenRegistrationStatusHandler inCompletionHandler) |
| Registers push token for the current User to receive push notification. More... | |
| void | UnregisterPushToken (SbPushTokenType inPushTokenType, string inPushToken, SbErrorHandler inCompletionHandler) |
| Unregisters push token for the current User. More... | |
| void | UnregisterAllPushToken (SbErrorHandler inCompletionHandler) |
| Unregisters all push token bound to the current User. More... | |
| void | GetMyPushTokensByToken (string inToken, SbPushTokenType inPushTokenType, SbPushTokensHandler inCompletionHandler) |
| Requests push tokens of current user from given token. The result is passed to handler. More... | |
| void | SetPushTemplate (string inTemplateName, SbErrorHandler inCompletionHandler) |
| Sets push template option for the current User. More... | |
| void | GetPushTemplate (SbPushTemplateHandler inCompletionHandler) |
| Gets push template option for the current User. For details of push template option, refer to SetPushTemplate. This can be used, for instance, when you need to check the push notification content preview is on or off at the moment. More... | |
| void | SetSnoozePeriod (bool inEnabled, long inStartTimestamp, long inEndTimestamp, SbErrorHandler inCompletionHandler) |
| Sets snooze period for the current User. If this option is enabled, the current User does not receive push notification during the given period. It's not a repetitive operation. If you want to snooze repeatedly, use SetDoNotDisturb. More... | |
| void | GetSnoozePeriod (SbSnoozePeriodHandler inCompletionHandler) |
| Gets snooze period for the current User. More... | |
| void | SetDoNotDisturb (bool inEnabled, int inStartHour, int inStartMin, int inEndHour, int inEndMin, string inTimezone, SbErrorHandler inCompletionHandler) |
| Sets Do-not-disturb option for the current User. If this option is enabled, the current User does not receive push notification during the specified time repeatedly. If you want to snooze specific period, use SetSnoozePeriod. More... | |
| void | GetDoNotDisturb (SbDoNotDisturbHandler inCompletionHandler) |
| Gets Do-not-disturb option for the current User. More... | |
| void | GetPushTriggerOption (SbPushTriggerOptionHandler inCompletionHandler) |
| Requests a setting that decides which push notification for the current user to receive in all the group channel. More... | |
| void | SetPushTriggerOption (SbPushTriggerOption inPushTriggerOption, SbErrorHandler inCompletionHandler) |
| Changes a setting that decides which push notification for the current user to receive in all the group channel. More... | |
Properties | |
| string | SDKVersion [get] |
| Current SDK version. More... | |
| string | OSVersion [get] |
| Current OS version. More... | |
| string | ApplicationId [get] |
| Current application ID. More... | |
| string | EKey [get] |
| The key to authenticate the url retrieved from SbFileMessage.PlainUrl, SbUser.PlainProfileImageUrl and SbThumbnail.PlainUrl. This key has to be put into the HTTP header to access the url provided by above methods. More... | |
| SbAppInfo | AppInfo [get] |
| Represents information obtained from the application settings. More... | |
| SbUser | CurrentUser [get] |
| The current connected User. null if connect is not called. More... | |
| SbGroupChannelModule | GroupChannel [get] |
| SbGroupChannelModule class. More... | |
| SbOpenChannelModule | OpenChannel [get] |
| SbOpenChannelModule class. More... | |
| SbMessageModule | Message [get] |
| SbMessageModule class. More... | |
| SendbirdChatOptions | Options [get] |
| SendbirdChatOptions class. More... | |
Properties inherited from ISendbirdChatClient | |
| string | SDKVersion [get] |
| Current SDK version. More... | |
| string | OSVersion [get] |
| Current OS version. More... | |
| string | ApplicationId [get] |
| Current application ID. More... | |
| string | EKey [get] |
| The key to authenticate the url retrieved from SbFileMessage.PlainUrl, SbUser.PlainProfileImageUrl and SbThumbnail.PlainUrl. This key has to be put into the HTTP header to access the url provided by above methods. More... | |
| SbAppInfo | AppInfo [get] |
| Represents information obtained from the application settings. More... | |
| SbUser | CurrentUser [get] |
| The current connected User. null if connect is not called. More... | |
| SbGroupChannelModule | GroupChannel [get] |
| SbGroupChannelModule class. More... | |
| SbOpenChannelModule | OpenChannel [get] |
| SbOpenChannelModule class. More... | |
| SbMessageModule | Message [get] |
| SbMessageModule class. More... | |
| SendbirdChatOptions | Options [get] |
| SendbirdChatOptions class. More... | |
| void AddConnectionHandler | ( | string | inIdentifier, |
| SbConnectionHandler | inConnectionHandler | ||
| ) |
Adds a connection handler. All added handlers will be notified when events occurs.
| inIdentifier | |
| inConnectionHandler |
Implements ISendbirdChatClient.
| void AddUserEventHandler | ( | string | inIdentifier, |
| SbUserEventHandler | inUserEventHandler | ||
| ) |
Adds a user event handler. All added handlers will be notified when events occur.
| inIdentifier | |
| inUserEventHandler |
Implements ISendbirdChatClient.
| void BlockUser | ( | string | inUserId, |
| SbUserHandler | inCompletionHandler | ||
| ) |
Blocks the specified User ID. Blocked User cannot send messages to the blocker.
| inUserId | |
| inCompletionHandler |
Implements ISendbirdChatClient.
| void Connect | ( | string | inUserId, |
| SbUserHandler | inCompletionHandler | ||
| ) |
Performs a connection to Sendbird with the user ID.
| inUserId | The user ID. |
| inCompletionHandler | The handler block to execute. user is the object to represent the current user. |
Implements ISendbirdChatClient.
| void Connect | ( | string | inUserId, |
| string | inAuthToken, | ||
| SbUserHandler | inCompletionHandler | ||
| ) |
Performs a connection to Sendbird with the user ID and the access token.
| inUserId | The user ID. |
| inAuthToken | The auth token. If the user doesnt have auth token, set nil. |
| inCompletionHandler | The handler block to execute. user is the object to represent the current user. |
Implements ISendbirdChatClient.
| void Connect | ( | string | inUserId, |
| string | inAuthToken, | ||
| string | inApiHost, | ||
| string | inWsHost, | ||
| SbUserHandler | inCompletionHandler | ||
| ) |
Performs a connection to Sendbird with the user ID and the access token.
| inUserId | The user ID. |
| inAuthToken | The auth token. If the user doesnt have auth token, set nil. |
| inApiHost | apiHost |
| inWsHost | wsHost |
| inCompletionHandler | The handler block to execute. user is the object to represent the current user. |
Implements ISendbirdChatClient.
| SbApplicationUserListQuery CreateApplicationUserListQuery | ( | SbApplicationUserListQueryParams | inParams = null | ) |
| SbBlockedUserListQuery CreateBlockedUserListQuery | ( | SbBlockedUserListQueryParams | inParams = null | ) |
Creates a query instance to get only the blocked User (by me) list.
| inParams |
Implements ISendbirdChatClient.
| SbMessageSearchQuery CreateMessageSearchQuery | ( | SbMessageSearchQueryParams | inParams = null | ) |
Creates a query instance to search for a message.
| inParams |
Implements ISendbirdChatClient.
| void Disconnect | ( | SbDisconnectHandler | inDisconnectHandler | ) |
Disconnects from Sendbird. If this method is invoked, the current user will be invalidated.
| inDisconnectHandler | The handler block to execute. |
Implements ISendbirdChatClient.
| void GetChannelInvitationPreference | ( | SbChannelInvitationPreferenceHandler | inCompletionHandler | ) |
Gets group channel invitation preference for auto acceptance.
| inCompletionHandler | The handler block to execute. |
Implements ISendbirdChatClient.
| SbConnectionState GetConnectionState | ( | ) |
| void GetDoNotDisturb | ( | SbDoNotDisturbHandler | inCompletionHandler | ) |
Gets Do-not-disturb option for the current User.
| inCompletionHandler |
Implements ISendbirdChatClient.
| void GetMyPushTokensByToken | ( | string | inToken, |
| SbPushTokenType | inPushTokenType, | ||
| SbPushTokensHandler | inCompletionHandler | ||
| ) |
Requests push tokens of current user from given token. The result is passed to handler.
| inToken | The token used to get next pagination of device push tokens. |
| inPushTokenType | The enum type to represent the type of push token. |
| inCompletionHandler | The handler block to be executed after requests. This block has no return value and takes 5 arguments that are device push token list, push token type you are requesting, boolean that indicates having next pagination, token to be used next pagination and error. |
Implements ISendbirdChatClient.
| void GetPushTemplate | ( | SbPushTemplateHandler | inCompletionHandler | ) |
Gets push template option for the current User. For details of push template option, refer to SetPushTemplate. This can be used, for instance, when you need to check the push notification content preview is on or off at the moment.
| inCompletionHandler |
Implements ISendbirdChatClient.
| void GetPushTriggerOption | ( | SbPushTriggerOptionHandler | inCompletionHandler | ) |
Requests a setting that decides which push notification for the current user to receive in all the group channel.
| inCompletionHandler |
Implements ISendbirdChatClient.
| void GetSnoozePeriod | ( | SbSnoozePeriodHandler | inCompletionHandler | ) |
Gets snooze period for the current User.
| inCompletionHandler |
Implements ISendbirdChatClient.
| void Init | ( | SbInitParams | inInitParams | ) |
Initializes SendbirdChat with given app ID.
| inInitParams |
Implements ISendbirdChatClient.
| bool Reconnect | ( | ) |
Starts reconnection explicitly. The ConnectionDelegate delegates will be invoked by the reconnection process.
Implements ISendbirdChatClient.
| void RegisterPushToken | ( | SbPushTokenType | inPushTokenType, |
| string | inPushToken, | ||
| bool | inUnique, | ||
| SbPushTokenRegistrationStatusHandler | inCompletionHandler | ||
| ) |
Registers push token for the current User to receive push notification.
| inPushTokenType | The enum type to represent the type of push token. |
| inPushToken | Device token. |
| inUnique | If true, register device token after removing existing all device tokens of the current user. If false, just add the device token. |
| inCompletionHandler | The handler block to execute. status is the status for push token registration. It is defined in SbPushTokenRegistrationStatus.Success represents the devToken is registered. Pending represents the devToken is not registered because the connection is not established, so this method has to be invoked with getPendingPushToken method after the connection. Error represents the push token registration is failed. |
Implements ISendbirdChatClient.
| void RemoveAllConnectionHandlers | ( | ) |
Removes all connection handlers added by AddConnectionHandler.
Implements ISendbirdChatClient.
| void RemoveAllUserEventHandlers | ( | ) |
Removes all user event handlers added by AddUseEventHandler.
Implements ISendbirdChatClient.
| void RemoveConnectionHandler | ( | string | inIdentifier | ) |
Removes a connection handler. The deleted handler no longer be notified.
| inIdentifier |
Implements ISendbirdChatClient.
| void RemoveUserEventHandler | ( | string | inIdentifier | ) |
Removes a user event handler. The deleted handler no longer be notified.
| inIdentifier |
Implements ISendbirdChatClient.
| void SetChannelInvitationPreference | ( | bool | inAutoAccept, |
| SbErrorHandler | inCompletionHandler | ||
| ) |
Sets group channel invitation preference for auto acceptance.
| inAutoAccept | If true, the current user will accept the group channel invitation automatically. |
| inCompletionHandler | The handler block to execute. |
Implements ISendbirdChatClient.
| void SetDoNotDisturb | ( | bool | inEnabled, |
| int | inStartHour, | ||
| int | inStartMin, | ||
| int | inEndHour, | ||
| int | inEndMin, | ||
| string | inTimezone, | ||
| SbErrorHandler | inCompletionHandler | ||
| ) |
Sets Do-not-disturb option for the current User. If this option is enabled, the current User does not receive push notification during the specified time repeatedly. If you want to snooze specific period, use SetSnoozePeriod.
| inEnabled | Enables or not. |
| inStartHour | Start hour. |
| inStartMin | Start minute. |
| inEndHour | End hour. |
| inEndMin | End minute. |
| inTimezone | Sets timezone. |
| inCompletionHandler | The handler block to execute. |
Implements ISendbirdChatClient.
| void SetPushTemplate | ( | string | inTemplateName, |
| SbErrorHandler | inCompletionHandler | ||
| ) |
Sets push template option for the current User.
| inTemplateName | The name of push template. |
| inCompletionHandler | The handler block to execute. |
Implements ISendbirdChatClient.
| void SetPushTriggerOption | ( | SbPushTriggerOption | inPushTriggerOption, |
| SbErrorHandler | inCompletionHandler | ||
| ) |
Changes a setting that decides which push notification for the current user to receive in all the group channel.
| inPushTriggerOption | |
| inCompletionHandler |
///
Implements ISendbirdChatClient.
| void SetSessionHandler | ( | SbSessionHandler | inSessionHandler | ) |
Set a SessionHandler which is required for SDK refresh the session when the current session expires.
| inSessionHandler |
Implements ISendbirdChatClient.
| void SetSnoozePeriod | ( | bool | inEnabled, |
| long | inStartTimestamp, | ||
| long | inEndTimestamp, | ||
| SbErrorHandler | inCompletionHandler | ||
| ) |
Sets snooze period for the current User. If this option is enabled, the current User does not receive push notification during the given period. It's not a repetitive operation. If you want to snooze repeatedly, use SetDoNotDisturb.
| inEnabled | Enabled means snooze remote push notification in duration. If set to disabled, current user can receive remote push notification. |
| inStartTimestamp | Unix timestamp to start snooze. |
| inEndTimestamp | Unix timestamp to end snooze. |
| inCompletionHandler | The handler block to execute when setting notification snoozed is complete. |
Implements ISendbirdChatClient.
| void UnblockUser | ( | string | inUserId, |
| SbErrorHandler | inCompletionHandler | ||
| ) |
Unblocks the specified User ID. Unblocked User cannot send messages to the ex-blocker.
| inUserId | |
| inCompletionHandler |
Implements ISendbirdChatClient.
| void UnregisterAllPushToken | ( | SbErrorHandler | inCompletionHandler | ) |
Unregisters all push token bound to the current User.
| inCompletionHandler |
Implements ISendbirdChatClient.
| void UnregisterPushToken | ( | SbPushTokenType | inPushTokenType, |
| string | inPushToken, | ||
| SbErrorHandler | inCompletionHandler | ||
| ) |
Unregisters push token for the current User.
| inPushTokenType | |
| inPushToken | |
| inCompletionHandler |
Implements ISendbirdChatClient.
| void UpdateCurrentUserInfo | ( | List< string > | inPreferredLanguages, |
| SbErrorHandler | inCompletionHandler | ||
| ) |
Updates current User's information.
| inPreferredLanguages | New array of preferred languages |
| inCompletionHandler | The handler block to execute. |
Implements ISendbirdChatClient.
| void UpdateCurrentUserInfo | ( | SbUserUpdateParams | inParams, |
| SbErrorHandler | inCompletionHandler | ||
| ) |
Updates current User's information.
| inParams | |
| inCompletionHandler |
Implements ISendbirdChatClient.
|
get |
Represents information obtained from the application settings.
Implements ISendbirdChatClient.
|
get |
|
get |
The current connected User. null if connect is not called.
Implements ISendbirdChatClient.
|
get |
The key to authenticate the url retrieved from SbFileMessage.PlainUrl, SbUser.PlainProfileImageUrl and SbThumbnail.PlainUrl. This key has to be put into the HTTP header to access the url provided by above methods.
Implements ISendbirdChatClient.
|
get |
|
get |
|
get |
|
get |
|
get |
|
get |