UserActivityChannel.TryGetForWebAccount(WebAccount) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得指定 Web 帳戶專用的通道,以用來記錄使用者活動。
public:
static UserActivityChannel ^ TryGetForWebAccount(WebAccount ^ account);
static UserActivityChannel TryGetForWebAccount(WebAccount const& account);
public static UserActivityChannel TryGetForWebAccount(WebAccount account);
function tryGetForWebAccount(account)
Public Shared Function TryGetForWebAccount (account As WebAccount) As UserActivityChannel
參數
- account
- WebAccount
要與使用者活動建立關聯的 Web 帳戶。
傳回
用來記錄使用者活動的通道。 通道將會與 Web 帳戶相關聯。
Windows 需求
裝置系列 |
Windows 10, version 1803 (已於 10.0.17134.0 引進)
|
API contract |
Windows.Foundation.UniversalApiContract (已於 v6.0 引進)
|
範例
private static UserActivityChannel _currentChannel;
public static void UpdateActivityChannelForAccount(WebAccount account)
{
_currentChannel = UserActivityChannel.TryGetForWebAccount(account);
if (_currentChannel != null)
{
// app-specific – generate activity that will be associated with the web account
}
}
備註
某些應用程式,例如 Mail,支援應用程式單一實例內的多個使用者帳戶。 如果使用者有 Microsoft 帳戶 (MSA) 和 Azure Active Directory 帳戶 (AAD) ,應用程式可以選擇寫入與 MSA 帳戶或 AAD 帳戶相關聯的活動摘要。