UserInformation.SetAccountPicturesFromStreamsAsync Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Sets the pictures for the user's account using an IRandomAccessStream object. Supports adding a small image, large image, and video.
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> ^ SetAccountPicturesFromStreamsAsync(IRandomAccessStream ^ smallImage, IRandomAccessStream ^ largeImage, IRandomAccessStream ^ video);
static IAsyncOperation<SetAccountPictureResult> SetAccountPicturesFromStreamsAsync(IRandomAccessStream const& smallImage, IRandomAccessStream const& largeImage, IRandomAccessStream const& video);
/// [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> SetAccountPicturesFromStreamsAsync(IRandomAccessStream const& smallImage, IRandomAccessStream const& largeImage, IRandomAccessStream const& video);
public static IAsyncOperation<SetAccountPictureResult> SetAccountPicturesFromStreamsAsync(IRandomAccessStream smallImage, IRandomAccessStream largeImage, IRandomAccessStream video);
[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> SetAccountPicturesFromStreamsAsync(IRandomAccessStream smallImage, IRandomAccessStream largeImage, IRandomAccessStream video);
function setAccountPicturesFromStreamsAsync(smallImage, largeImage, video)
Public Shared Function SetAccountPicturesFromStreamsAsync (smallImage As IRandomAccessStream, largeImage As IRandomAccessStream, video As IRandomAccessStream) As IAsyncOperation(Of SetAccountPictureResult)
Parameters
- smallImage
- IRandomAccessStream
A small version of the image.
- largeImage
- IRandomAccessStream
A large version of the image.
- video
- IRandomAccessStream
A video.
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.