예제 #1
0
 /// <summary>
 /// Gets information about the comment with specified <paramref name="identifier"/>.
 /// </summary>
 /// <param name="identifier">The identifier (ID) of the comment.</param>
 /// <param name="fields">A collection of the fields that should be returned by the API.</param>
 /// <returns>An instance of <see cref="FacebookGetCommentResponse"/> representing the response.</returns>
 public FacebookGetCommentResponse GetComment(string identifier, FacebookFieldsCollection fields)
 {
     return(FacebookGetCommentResponse.ParseResponse(Raw.GetComment(identifier, fields)));
 }
예제 #2
0
 /// <summary>
 /// Gets information about the comment matching the specified <paramref name="options"/>.
 /// </summary>
 /// <param name="options">The options for the call to the API.</param>
 /// <returns>An instance of <see cref="FacebookGetCommentResponse"/> representing the response.</returns>
 public FacebookGetCommentResponse GetComment(FacebookGetCommentOptions options)
 {
     return(FacebookGetCommentResponse.ParseResponse(Raw.GetComment(options)));
 }
예제 #3
0
 /// <summary>
 /// Gets information about the comment with specified <paramref name="identifier"/>.
 /// </summary>
 /// <param name="identifier">The identifier (ID) of the comment.</param>
 /// <returns>An instance of <see cref="FacebookGetCommentResponse"/> representing the response.</returns>
 public FacebookGetCommentResponse GetComment(string identifier)
 {
     return(FacebookGetCommentResponse.ParseResponse(Raw.GetComment(identifier)));
 }