C# 클래스 Netsy.UI.DispatchedServices.DispatchedFeedbackService

Feedback service wrapped to use a dispatcher To put the results back on the Dispatcher's thread
상속: DispatchedService, IFeedbackService
파일 보기 프로젝트 열기: AnthonySteele/Netsy

공개 메소드들

메소드 설명
DispatchedFeedbackService ( IFeedbackService wrappedService, Dispatcher dispatcher ) : System

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.

메소드 상세

DispatchedFeedbackService() 공개 메소드

Initializes a new instance of the DispatchedFeedbackService class
public DispatchedFeedbackService ( IFeedbackService wrappedService, Dispatcher dispatcher ) : System
wrappedService IFeedbackService the wrapped service
dispatcher System.Windows.Threading.Dispatcher the thread dispatcher
리턴 System

GetFeedback() 공개 메소드

Get a feedback record
public GetFeedback ( int feedbackId ) : IAsyncResult
feedbackId int the id of the record
리턴 IAsyncResult

GetFeedbackAsBuyer() 공개 메소드

Get a list of all feedback where the user was a buyer in the transaction.
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
리턴 IAsyncResult

GetFeedbackAsBuyer() 공개 메소드

Get a list of all feedback where the user was a buyer in the transaction.
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
리턴 IAsyncResult

GetFeedbackAsSeller() 공개 메소드

Get a list of all feedback where the user was a seller in the transaction.
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
리턴 IAsyncResult

GetFeedbackAsSeller() 공개 메소드

Get a list of all feedback where the user was a seller in the transaction.
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
리턴 IAsyncResult

GetFeedbackForOthers() 공개 메소드

Get a list of all feedback that the user left feedback for someone else.
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
리턴 IAsyncResult

GetFeedbackForOthers() 공개 메소드

Get a list of all feedback that the user left feedback for someone else.
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
리턴 IAsyncResult

GetFeedbackForUser() 공개 메소드

Get a list of all feedback for a particular user.
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
리턴 IAsyncResult

GetFeedbackForUser() 공개 메소드

Get a list of all feedback for a particular user.
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
리턴 IAsyncResult