/// <summary>
 /// Gets a list of links of the user or page with the specified <code>identifier</code>.
 /// </summary>
 /// <param name="identifier">The ID or name of the page or user.</param>
 /// <param name="options">The options for the call to the API.</param>
 public FacebookLinksResponse GetLinks(string identifier, FacebookLinksOptions options)
 {
     return(FacebookLinksResponse.ParseResponse(Raw.GetLinks(identifier, options)));
 }
 /// <summary>
 /// Gets a list of links of the user or page with the specified <code>identifier</code>.
 /// </summary>
 /// <param name="identifier">The ID or name.</param>
 /// <param name="options">The options for the call to the API.</param>
 public SocialHttpResponse GetLinks(string identifier, FacebookLinksOptions options) {
     return Client.DoAuthenticatedGetRequest("/" + identifier + "/links", options);
 }
Пример #3
0
 /// <summary>
 /// Gets a list of links of the user or page with the specified <code>identifier</code>.
 /// </summary>
 /// <param name="identifier">The ID or name.</param>
 /// <param name="options">The options for the call to the API.</param>
 public SocialHttpResponse GetLinks(string identifier, FacebookLinksOptions options)
 {
     return(Client.DoAuthenticatedGetRequest("/" + identifier + "/links", options));
 }
 /// <summary>
 /// Gets a list of links of the user or page with the specified <code>identifier</code>.
 /// </summary>
 /// <param name="identifier">The ID or name of the page or user.</param>
 /// <param name="options">The options for the call to the API.</param>
 public FacebookLinksResponse GetLinks(string identifier, FacebookLinksOptions options) {
     return FacebookLinksResponse.ParseResponse(Raw.GetLinks(identifier, options));
 }