WebSocialService Class ReferenceManaged web social services.
More...
List of all members.
|
Public Member Functions |
| List< TransitAccount > | GetNewAccounts (string ticket, ServiceQueryOptions options) |
| | Get new accounts.
|
| List< TransitAccount > | GetActiveAccounts (string ticket, ServiceQueryOptions options) |
| | Get active accounts.
|
| int | GetAccountActivityCount (string ticket, AccountActivityQueryOptions queryoptions) |
| | Get account activity count.
|
| List< TransitAccountActivity > | GetAccountActivity (string ticket, AccountActivityQueryOptions queryoptions, ServiceQueryOptions options) |
| | Get account activity.
|
| int | GetNDegreeCountById (string ticket, int id, int deg) |
| | Get n-th degree count.
|
| int | GetFirstDegreeCountById (string ticket, int id) |
| | Get 1st degree count.
|
| int | GetFriendsAccountActivityCount (string ticket, int id) |
| | Get friends activity count.
|
| List< TransitAccountActivity > | GetFriendsAccountActivity (string ticket, int id, ServiceQueryOptions options) |
| | Get friends activity.
|
| int | CreateOrUpdateAccountFriendRequest (string ticket, int friendid, string message) |
| | Create a new friend request.
|
| void | AcceptAccountFriendRequest (string ticket, int id, string message) |
| | Accept a friend request.
|
| void | RejectAccountFriendRequest (string ticket, int id, string message) |
| | Reject a friend request.
|
| int | GetSentAccountFriendRequestsCount (string ticket, int id) |
| | Get total friend requests sent count by account id.
|
| int | GetAccountFriendRequestsCount (string ticket, int id) |
| | Get total friend requests count by account id.
|
| List< TransitAccountFriendRequest > | GetSentAccountFriendRequests (string ticket, int id, ServiceQueryOptions options) |
| | Get sent friend requests.
|
| List< TransitAccountFriendRequest > | GetAccountFriendRequests (string ticket, int id, ServiceQueryOptions options) |
| | Get outstanding friend requests.
|
| void | DeleteAccountFriendRequest (string ticket, int id) |
| | Delete a friend request.
|
| TransitAccountFriendRequest | GetAccountFriendRequestById (string ticket, int id) |
| | Get an account friend request.
|
| void | DeleteAccountFriend (string ticket, int id) |
| | Delete a friend.
|
| int | GetAccountFriendsCount (string ticket, int id) |
| | Get friends count.
|
| List< TransitAccountFriend > | GetAccountFriends (string ticket, int id, ServiceQueryOptions options) |
| | Get friends.
|
| int | CreateOrUpdateAccountAuditEntry (string ticket, TransitAccountAuditEntry t_instance) |
| | Create or update an account audit entry.
|
| TransitAccountAuditEntry | GetAccountAuditEntryById (string ticket, int id) |
| | Get an account audit entry.
|
| int | GetAccountAuditEntriesByAccountIdCount (string ticket, int id) |
| | Get account audit entries count.
|
| List< TransitAccountAuditEntry > | GetAccountAuditEntriesByAccountId (string ticket, int id, ServiceQueryOptions options) |
| | Get all account audit entries.
|
| int | GetAccountAuditEntriesCount (string ticket) |
| | Get all account audit entries count.
|
| List< TransitAccountAuditEntry > | GetAccountAuditEntries (string ticket, ServiceQueryOptions options) |
| | Get all account audit entries.
|
| void | DeleteAccountAuditEntry (string ticket, int id) |
| | Delete an account audit entry.
|
| int | GetAccountFriendAuditEntriesCount (string ticket, int id) |
| | Get all account friends audit entries count.
|
| List< TransitAccountAuditEntry > | GetAccountFriendAuditEntries (string ticket, int id, ServiceQueryOptions options) |
| | Get all account friend audit entries.
|
Detailed Description
Managed web social services.
Member Function Documentation
| List<TransitAccount> GetNewAccounts |
( |
string |
ticket, |
|
|
ServiceQueryOptions |
options | |
|
) |
| | |
Get new accounts.
- Returns:
- transit account
| List<TransitAccount> GetActiveAccounts |
( |
string |
ticket, |
|
|
ServiceQueryOptions |
options | |
|
) |
| | |
Get active accounts.
- Returns:
- transit account
| int GetAccountActivityCount |
( |
string |
ticket, |
|
|
AccountActivityQueryOptions |
queryoptions | |
|
) |
| | |
Get account activity count.
- Returns:
- transit account activity count
| List<TransitAccountActivity> GetAccountActivity |
( |
string |
ticket, |
|
|
AccountActivityQueryOptions |
queryoptions, |
|
|
ServiceQueryOptions |
options | |
|
) |
| | |
Get account activity.
- Returns:
- transit account activity
| int GetNDegreeCountById |
( |
string |
ticket, |
|
|
int |
id, |
|
|
int |
deg | |
|
) |
| | |
Get n-th degree count.
- Parameters:
-
- Returns:
- number of n-th degree contacts
| int GetFirstDegreeCountById |
( |
string |
ticket, |
|
|
int |
id | |
|
) |
| | |
Get 1st degree count.
- Parameters:
-
- Returns:
- number of 1st degree contacts
| int GetFriendsAccountActivityCount |
( |
string |
ticket, |
|
|
int |
id | |
|
) |
| | |
Get friends activity count.
- Returns:
- transit account activity count
| List<TransitAccountActivity> GetFriendsAccountActivity |
( |
string |
ticket, |
|
|
int |
id, |
|
|
ServiceQueryOptions |
options | |
|
) |
| | |
Get friends activity.
- Returns:
- transit account activity
| int CreateOrUpdateAccountFriendRequest |
( |
string |
ticket, |
|
|
int |
friendid, |
|
|
string |
message | |
|
) |
| | |
Create a new friend request.
- Parameters:
-
| ticket | authentication ticket |
| friendid | target friend account id |
| message | optional message to send with the request |
- Returns:
- request id
| void AcceptAccountFriendRequest |
( |
string |
ticket, |
|
|
int |
id, |
|
|
string |
message | |
|
) |
| | |
Accept a friend request.
- Parameters:
-
| ticket | authentication ticket |
| id | request id |
| message | optional message |
| void RejectAccountFriendRequest |
( |
string |
ticket, |
|
|
int |
id, |
|
|
string |
message | |
|
) |
| | |
Reject a friend request.
- Parameters:
-
| ticket | authentication ticket |
| id | request id |
| message | optional message, no mail sent when blank |
| int GetSentAccountFriendRequestsCount |
( |
string |
ticket, |
|
|
int |
id | |
|
) |
| | |
Get total friend requests sent count by account id.
- Parameters:
-
| ticket | authentication ticket |
| int GetAccountFriendRequestsCount |
( |
string |
ticket, |
|
|
int |
id | |
|
) |
| | |
Get total friend requests count by account id.
- Parameters:
-
| ticket | authentication ticket |
| List<TransitAccountFriendRequest> GetSentAccountFriendRequests |
( |
string |
ticket, |
|
|
int |
id, |
|
|
ServiceQueryOptions |
options | |
|
) |
| | |
Get sent friend requests.
- Parameters:
-
| ticket | authentication ticket |
| List<TransitAccountFriendRequest> GetAccountFriendRequests |
( |
string |
ticket, |
|
|
int |
id, |
|
|
ServiceQueryOptions |
options | |
|
) |
| | |
Get outstanding friend requests.
- Parameters:
-
| ticket | authentication ticket |
| void DeleteAccountFriendRequest |
( |
string |
ticket, |
|
|
int |
id | |
|
) |
| | |
Delete a friend request.
- Parameters:
-
| ticket | authentication ticket |
| id | friend request id |
| TransitAccountFriendRequest GetAccountFriendRequestById |
( |
string |
ticket, |
|
|
int |
id | |
|
) |
| | |
Get an account friend request.
- Parameters:
-
| ticket | authentication ticket |
| id | request id |
| void DeleteAccountFriend |
( |
string |
ticket, |
|
|
int |
id | |
|
) |
| | |
Delete a friend.
- Parameters:
-
| ticket | authentication ticket |
| id | friend id |
| int GetAccountFriendsCount |
( |
string |
ticket, |
|
|
int |
id | |
|
) |
| | |
| List<TransitAccountFriend> GetAccountFriends |
( |
string |
ticket, |
|
|
int |
id, |
|
|
ServiceQueryOptions |
options | |
|
) |
| | |
Get friends.
- Parameters:
-
| ticket | authentication ticket |
| account id | account id |
| int CreateOrUpdateAccountAuditEntry |
( |
string |
ticket, |
|
|
TransitAccountAuditEntry |
t_instance | |
|
) |
| | |
Create or update an account audit entry.
- Parameters:
-
| ticket | authentication ticket |
| property | transit account audit entry |
| TransitAccountAuditEntry GetAccountAuditEntryById |
( |
string |
ticket, |
|
|
int |
id | |
|
) |
| | |
Get an account audit entry.
- Returns:
- transit account audit entry
| int GetAccountAuditEntriesByAccountIdCount |
( |
string |
ticket, |
|
|
int |
id | |
|
) |
| | |
Get account audit entries count.
- Parameters:
-
- Returns:
- number of account audit entries
| List<TransitAccountAuditEntry> GetAccountAuditEntriesByAccountId |
( |
string |
ticket, |
|
|
int |
id, |
|
|
ServiceQueryOptions |
options | |
|
) |
| | |
Get all account audit entries.
- Parameters:
-
- Returns:
- list of transit account audit entries
| int GetAccountAuditEntriesCount |
( |
string |
ticket |
) |
|
Get all account audit entries count.
- Returns:
- number of account audit entries
| List<TransitAccountAuditEntry> GetAccountAuditEntries |
( |
string |
ticket, |
|
|
ServiceQueryOptions |
options | |
|
) |
| | |
Get all account audit entries.
- Returns:
- list of transit audit entries
| void DeleteAccountAuditEntry |
( |
string |
ticket, |
|
|
int |
id | |
|
) |
| | |
Delete an account audit entry.
- Parameters:
-
| ticket | authentication ticket |
| id | id |
| int GetAccountFriendAuditEntriesCount |
( |
string |
ticket, |
|
|
int |
id | |
|
) |
| | |
Get all account friends audit entries count.
- Returns:
- number of account friends audit entries
| List<TransitAccountAuditEntry> GetAccountFriendAuditEntries |
( |
string |
ticket, |
|
|
int |
id, |
|
|
ServiceQueryOptions |
options | |
|
) |
| | |
Get all account friend audit entries.
- Returns:
- list of transit audit entries
The documentation for this class was generated from the following file:
|