Method | Description | |
---|---|---|
DispatchedFeedbackService ( IFeedbackService wrappedService, |
Initializes a new instance of the DispatchedFeedbackService class
|
|
GetFeedback ( int feedbackId ) : IAsyncResult |
Get a feedback record
|
|
GetFeedbackAsBuyer ( int userId, int offset, int limit ) : IAsyncResult |
Get a list of all feedback where the user was a buyer in the transaction.
|
|
GetFeedbackAsBuyer ( string userName, int offset, int limit ) : IAsyncResult |
Get a list of all feedback where the user was a buyer in the transaction.
|
|
GetFeedbackAsSeller ( int userId, int offset, int limit ) : IAsyncResult |
Get a list of all feedback where the user was a seller in the transaction.
|
|
GetFeedbackAsSeller ( string userName, int offset, int limit ) : IAsyncResult |
Get a list of all feedback where the user was a seller in the transaction.
|
|
GetFeedbackForOthers ( int userId, int offset, int limit ) : IAsyncResult |
Get a list of all feedback that the user left feedback for someone else.
|
|
GetFeedbackForOthers ( string userName, int offset, int limit ) : IAsyncResult |
Get a list of all feedback that the user left feedback for someone else.
|
|
GetFeedbackForUser ( int userId, int offset, int limit ) : IAsyncResult |
Get a list of all feedback for a particular user.
|
|
GetFeedbackForUser ( string userName, int offset, int limit ) : IAsyncResult |
Get a list of all feedback for a particular user.
|
public DispatchedFeedbackService ( IFeedbackService wrappedService, |
||
wrappedService | IFeedbackService | the wrapped service |
dispatcher | the thread dispatcher | |
return | System |
public GetFeedback ( int feedbackId ) : IAsyncResult | ||
feedbackId | int | the id of the record |
return | IAsyncResult |
public GetFeedbackAsBuyer ( int userId, int offset, int limit ) : IAsyncResult | ||
userId | int | the user's numeric ID |
offset | int | To page through large result sets, set offset to a multiple of limit |
limit | int | Specify the number of results to return |
return | IAsyncResult |
public GetFeedbackAsBuyer ( string userName, int offset, int limit ) : IAsyncResult | ||
userName | string | the user's name |
offset | int | To page through large result sets, set offset to a multiple of limit |
limit | int | Specify the number of results to return |
return | IAsyncResult |
public GetFeedbackAsSeller ( int userId, int offset, int limit ) : IAsyncResult | ||
userId | int | the user's numeric ID |
offset | int | To page through large result sets, set offset to a multiple of limit |
limit | int | Specify the number of results to return |
return | IAsyncResult |
public GetFeedbackAsSeller ( string userName, int offset, int limit ) : IAsyncResult | ||
userName | string | the user's name |
offset | int | To page through large result sets, set offset to a multiple of limit |
limit | int | Specify the number of results to return |
return | IAsyncResult |
public GetFeedbackForOthers ( int userId, int offset, int limit ) : IAsyncResult | ||
userId | int | the user's numeric ID |
offset | int | To page through large result sets, set offset to a multiple of limit |
limit | int | Specify the number of results to return |
return | IAsyncResult |
public GetFeedbackForOthers ( string userName, int offset, int limit ) : IAsyncResult | ||
userName | string | the user's name |
offset | int | To page through large result sets, set offset to a multiple of limit |
limit | int | Specify the number of results to return |
return | IAsyncResult |
public GetFeedbackForUser ( int userId, int offset, int limit ) : IAsyncResult | ||
userId | int | the user's numeric ID |
offset | int | To page through large result sets, set offset to a multiple of limit |
limit | int | Specify the number of results to return |
return | IAsyncResult |
public GetFeedbackForUser ( string userName, int offset, int limit ) : IAsyncResult | ||
userName | string | the user's name |
offset | int | To page through large result sets, set offset to a multiple of limit |
limit | int | Specify the number of results to return |
return | IAsyncResult |