/// <summary>
 /// Gets information about the photo matching the specified <code>options</code>.
 /// </summary>
 /// <param name="options">The options for the call to the API.</param>
 public FacebookPhotoResponse GetPhoto(FacebookGetPhotoOptions options) {
     return FacebookPhotoResponse.ParseResponse(Raw.GetPhoto(options));
 }
 /// <summary>
 /// Gets information about the photo matching the specified <code>options</code>.
 /// </summary>
 /// <param name="options">The options for the call to the API.</param>
 public SocialHttpResponse GetPhoto(FacebookGetPhotoOptions options) {
     if (options == null) throw new ArgumentNullException("options");
     return Client.DoAuthenticatedGetRequest("/" + options.Identifier, options);
 }