private void ProfilePhotoCallback(IGraphResult result) { if (string.IsNullOrEmpty(result.Error) && (result.get_Texture() != null)) { this.profilePic = result.get_Texture(); } base.HandleResult(result); }
private void ProfilePhotoCallback(IGraphResult result) { //IL_0011: Unknown result type (might be due to invalid IL or missing references) //IL_0023: Unknown result type (might be due to invalid IL or missing references) //IL_0028: Expected O, but got Unknown if (string.IsNullOrEmpty(result.get_Error()) && result.get_Texture() != null) { profilePic = result.get_Texture(); } HandleResult(result); }