Property | Type | Description | |
---|---|---|---|
PostsCount | int |
Method | Description | |
---|---|---|
AddComment ( int ownerId, int postId, string msg, int replyToCid ) : int |
|
|
AddLike ( int postId, bool needPublish ) : int |
|
|
Delete ( int ownerId, int msg_id ) : bool |
Delete wall post
|
|
DeleteComment ( int ownerId, int commentId ) : bool |
|
|
DeleteLike ( int postId ) : int |
|
|
Get ( int ownerId, int count, int offset, string filter ) : List |
Get wall entries
|
|
GetComments ( int ownerId, int postId, SortOrder sortOrder, int offset, int count ) : List |
|
|
Post ( int ownerId, string message ) : int |
Post message in the wall
|
|
Restore ( int ownerId, int msg_id ) : bool |
Restore deleted entry
|
|
RestoreComment ( int ownerId, int commentId ) : bool |
|
|
WallFactory ( ApiManager manager ) : System |
|
Method | Description | |
---|---|---|
buildEntryList ( |
||
getAttachment ( |
||
getAttachmentData ( AttachmentType type, |
public AddComment ( int ownerId, int postId, string msg, int replyToCid ) : int | ||
ownerId | int | |
postId | int | |
msg | string | |
replyToCid | int | |
return | int |
public AddLike ( int postId, bool needPublish ) : int | ||
postId | int | |
needPublish | bool | |
return | int |
public Delete ( int ownerId, int msg_id ) : bool | ||
ownerId | int | if null - wall entry for current user will be deleted, else - for specified user |
msg_id | int | post id to delete |
return | bool |
public DeleteComment ( int ownerId, int commentId ) : bool | ||
ownerId | int | |
commentId | int | |
return | bool |
public Get ( int ownerId, int count, int offset, string filter ) : List |
||
ownerId | int | if null - wall entries for current user will be returned, else - for specified user |
count | int | messages count. null allowed |
offset | int | message offset. null allowed |
filter | string | |
return | List |
public GetComments ( int ownerId, int postId, SortOrder sortOrder, int offset, int count ) : List |
||
ownerId | int | |
postId | int | |
sortOrder | SortOrder | |
offset | int | |
count | int | |
return | List |
public Post ( int ownerId, string message ) : int | ||
ownerId | int | if null - wall entry for current user will be posted, else - for specified user |
message | string | message to be posted |
return | int |
public Restore ( int ownerId, int msg_id ) : bool | ||
ownerId | int | if null - wall entry for current user will be restored, else - for specified user |
msg_id | int | post id to restore |
return | bool |
public RestoreComment ( int ownerId, int commentId ) : bool | ||
ownerId | int | |
commentId | int | |
return | bool |
public WallFactory ( ApiManager manager ) : System | ||
manager | ApiManager | |
return | System |