CXCallDirectoryManager.GetEnabledStatusForExtensionAsync(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.
Passe the enabled status of the identified extension, along with an error (if present), to completion
.
public virtual System.Threading.Tasks.Task<CallKit.CXCallDirectoryEnabledStatus> GetEnabledStatusForExtensionAsync (string identifier);
abstract member GetEnabledStatusForExtensionAsync : string -> System.Threading.Tasks.Task<CallKit.CXCallDirectoryEnabledStatus>
override this.GetEnabledStatusForExtensionAsync : string -> System.Threading.Tasks.Task<CallKit.CXCallDirectoryEnabledStatus>
Parameters
- identifier
- String
The unique id of the directory extension to check.
Returns
A task that processes the enabled status of the extension.
Remarks
The GetEnabledStatusForExtensionAsync method is suitable to be used with C# async by returning control to the caller with a Task representing the operation.
To be added.