UIApplication.SetAlternateIconNameAsync(String) 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 name of the alternate icon.
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 10, 3, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.TvOS, 10, 2, ObjCRuntime.PlatformArchitecture.All, null)]
public virtual System.Threading.Tasks.Task SetAlternateIconNameAsync (string alternateIconName);
abstract member SetAlternateIconNameAsync : string -> System.Threading.Tasks.Task
override this.SetAlternateIconNameAsync : string -> System.Threading.Tasks.Task
Parameters
- alternateIconName
- String
The name of the new alternate icon. This parameter can be .This parameter can be .
Returns
A task that represents the asynchronous SetAlternateIconName operation
- Attributes
Remarks
The SetAlternateIconNameAsync method is suitable to be used with C# async by returning control to the caller with a Task representing the operation.
To be added.