//--------------------------------------
	//  PUBLIC METHODS
	//--------------------------------------

	public string GetProfileUrl(FacebookProfileImageSize size) {
		return  "https://graph.facebook.com/" + id + "/picture?type=" + size.ToString();
	} 
Example #2
0
 public string GetProfileUrl(FacebookProfileImageSize size)
 {
     return("https://graph.facebook.com/" + UserId + "/picture?type=" + size.ToString());
 }