UserInformation.SetAccountPictureAsync(IStorageFile) Method

Definition

Sets the picture for the user's account using an IStorageFile object.

Important

The UserInformation class is not supported on Windows 10 or later. Use the User class instead. See Remarks in the UserInformation class documentation.

public:
 static IAsyncOperation<SetAccountPictureResult> ^ SetAccountPictureAsync(IStorageFile ^ image);
 static IAsyncOperation<SetAccountPictureResult> SetAccountPictureAsync(IStorageFile const& image);
/// [Windows.Foundation.Metadata.Deprecated("Use User instead of UserInformation. For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 131072, "Windows.System.UserProfile.UserProfileContract")]
 static IAsyncOperation<SetAccountPictureResult> SetAccountPictureAsync(IStorageFile const& image);
public static IAsyncOperation<SetAccountPictureResult> SetAccountPictureAsync(IStorageFile image);
[Windows.Foundation.Metadata.Deprecated("Use User instead of UserInformation. For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 131072, "Windows.System.UserProfile.UserProfileContract")]
public static IAsyncOperation<SetAccountPictureResult> SetAccountPictureAsync(IStorageFile image);
function setAccountPictureAsync(image)
Public Shared Function SetAccountPictureAsync (image As IStorageFile) As IAsyncOperation(Of SetAccountPictureResult)

Parameters

image
IStorageFile

A file that contains the image.

Returns

A value that indicates the success or failure of the operation.

Attributes

Remarks

Important

The UserInformation class is not supported on Windows 10 or later. Use the User class instead. See Remarks in the UserInformation class documentation.

Applies to

See also