背水一戰 Windows 10 (82) - 用戶和賬號: 獲取用戶的信息, 獲取用戶的同意

来源:https://www.cnblogs.com/webabcd/archive/2018/01/02/8175643.html
-Advertisement-
Play Games

背水一戰 Windows 10 之 用戶和賬號: 獲取用戶的信息, 獲取用戶的同意 ...


[源碼下載]


背水一戰 Windows 10 (82) - 用戶和賬號: 獲取用戶的信息, 獲取用戶的同意



作者:webabcd


介紹
背水一戰 Windows 10 之 用戶和賬號

  • 獲取用戶的信息
  • 獲取用戶的同意



示例
1、演示如何獲取用戶的信息
UserAndAccount/UserInfo.xaml

<Page
    x:Class="Windows10.UserAndAccount.UserInfo"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:Windows10.UserAndAccount"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d">
    
    <Grid Background="Transparent">
        <StackPanel Margin="10 0 10 10">

            <TextBlock Name="lblMsg" Margin="5" />

            <Image x:Name="imageProfile" Margin="5" Width="64" Height="64" HorizontalAlignment="Left" />
            
        </StackPanel>
    </Grid>
</Page>

UserAndAccount/UserInfo.xaml.cs

/*
 * 演示如何獲取用戶的信息
 * 
 * 需要在 Package.appxmanifest 中的“功能”中勾選“用戶賬戶信息”,即 <Capability Name="userAccountInformation" />
 * 如上配置之後,即可通過 api 獲取用戶的相關信息(系統會自動彈出許可權請求對話框)
 * 
 * User - 用戶
 *     FindAllAsync() - 查找全部用戶,也可以根據 UserType 和 UserAuthenticationStatus 來查找用戶
 *         經過測試,其只能返回當前登錄用戶
 *     GetPropertyAsync(), GetPropertiesAsync() - 獲取用戶的指定屬性
 *         可獲取的屬性請參見 Windows.System.KnownUserProperties
 *     GetPictureAsync() - 獲取用戶圖片
 *         圖片規格有 64x64, 208x208, 424x424, 1080x1080
 *     NonRoamableId - 用戶 id
 *         此 id 不可漫游
 *     UserType - 用戶類型
 *         LocalUser, RemoteUser, LocalGuest, RemoteGuest
 *     UserAuthenticationStatus - 用戶的身份驗證狀態
 *         Unauthenticated, LocallyAuthenticated, RemotelyAuthenticated
 *     CreateWatcher() - 返回 UserWatcher 對象,用於監聽用戶的狀態變化
 *         本例不做演示
 */

using System;
using System.Collections.Generic;
using Windows.Foundation.Collections;
using Windows.Storage.Streams;
using Windows.System;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Media.Imaging;
using Windows.UI.Xaml.Navigation;

namespace Windows10.UserAndAccount
{
    public sealed partial class UserInfo : Page
    {
        public UserInfo()
        {
            this.InitializeComponent();
        }

        protected async override void OnNavigatedTo(NavigationEventArgs e)
        {
            base.OnNavigatedTo(e);

            // 我這裡測試的結果是:返回的集合中只有一個元素,就是當前的登錄用戶
            IReadOnlyList<User> users = await User.FindAllAsync(); // 系統會自動彈出許可權請求對話框
            User user = users?[0];
            if (user != null)
            {
                // 對於獲取用戶的 NonRoamableId, Type, AuthenticationStatus 信息,不同意許可權請求也是可以的
                string result = "NonRoamableId: " + user.NonRoamableId + "\n"; 
                result += "Type: " + user.Type.ToString() + "\n";
                result += "AuthenticationStatus: " + user.AuthenticationStatus.ToString() + "\n";

                // 對於獲取用戶的如下信息及圖片,則必須要同意許可權請求
                string[] desiredProperties = new string[]
                {
                    KnownUserProperties.DisplayName,
                    KnownUserProperties.FirstName,
                    KnownUserProperties.LastName,
                    KnownUserProperties.ProviderName,
                    KnownUserProperties.AccountName,
                    KnownUserProperties.GuestHost,
                    KnownUserProperties.PrincipalName,
                    KnownUserProperties.DomainName,
                    KnownUserProperties.SessionInitiationProtocolUri,
                };
                // 獲取用戶的指定屬性集合
                IPropertySet values = await user.GetPropertiesAsync(desiredProperties);
                foreach (string property in desiredProperties)
                {
                    result += property + ": " + values[property] + "\n";
                }
                // 獲取用戶的指定屬性
                // object displayName = await user.GetPropertyAsync(KnownUserProperties.DisplayName);
                
                lblMsg.Text = result;


                // 獲取用戶的圖片
                IRandomAccessStreamReference streamReference = await user.GetPictureAsync(UserPictureSize.Size64x64);
                if (streamReference != null)
                {
                    IRandomAccessStream stream = await streamReference.OpenReadAsync();
                    BitmapImage bitmapImage = new BitmapImage();
                    bitmapImage.SetSource(stream);
                    imageProfile.Source = bitmapImage;
                }
            }
        }
    }
}


2、演示如何獲取用戶的同意
UserAndAccount/UserVerifier.xaml

<Page
    x:Class="Windows10.UserAndAccount.UserVerifier"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:Windows10.UserAndAccount"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d">

    <Grid Background="Transparent">
        <StackPanel Margin="10 0 10 10">

            <TextBlock Name="lblMsg" Margin="5" />

            <Button Name="buttonRequestConsent" Content="獲取用戶的同意" Click="buttonRequestConsent_Click" Margin="5" />

        </StackPanel>
    </Grid>
</Page>

UserAndAccount/UserVerifier.xaml.cs

/*
 * 演示如何獲取用戶的同意
 * 
 * UserConsentVerifier - 驗證器(比如 pin 驗證等)
 *     CheckAvailabilityAsync() - 驗證器的可用性
 *     RequestVerificationAsync(string message) - 請求用戶的同意(可以指定用於提示用戶的信息)
 */

using System;
using Windows.Security.Credentials.UI;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Navigation;

namespace Windows10.UserAndAccount
{
    public sealed partial class UserVerifier : Page
    {
        public UserVerifier()
        {
            this.InitializeComponent();
        }

        protected async override void OnNavigatedTo(NavigationEventArgs e)
        {
            base.OnNavigatedTo(e);

            try
            {
                UserConsentVerifierAvailability verifierAvailability = await UserConsentVerifier.CheckAvailabilityAsync();
                switch (verifierAvailability)
                {
                    case UserConsentVerifierAvailability.Available: // 驗證器可用
                        lblMsg.Text = "UserConsentVerifierAvailability.Available";
                        break;
                    case UserConsentVerifierAvailability.DeviceBusy:
                        lblMsg.Text = "UserConsentVerifierAvailability.DeviceBusy";
                        break;
                    case UserConsentVerifierAvailability.DeviceNotPresent:
                        lblMsg.Text = "UserConsentVerifierAvailability.DeviceNotPresent";
                        break;
                    case UserConsentVerifierAvailability.DisabledByPolicy:
                        lblMsg.Text = "UserConsentVerifierAvailability.DisabledByPolicy";
                        break;
                    case UserConsentVerifierAvailability.NotConfiguredForUser:
                        lblMsg.Text = "UserConsentVerifierAvailability.NotConfiguredForUser";
                        break;
                    default:
                        break;
                }
            }
            catch (Exception ex)
            {
                lblMsg.Text = ex.ToString();
            }

            lblMsg.Text += "\n";
        }

        private async void buttonRequestConsent_Click(object sender, RoutedEventArgs e)
        {
            try
            {
                UserConsentVerificationResult consentResult = await UserConsentVerifier.RequestVerificationAsync("我要做一些操作,您同意嗎?");
                switch (consentResult)
                {
                    case UserConsentVerificationResult.Verified: // 驗證通過
                        lblMsg.Text += "UserConsentVerificationResult.Verified";
                        break;
                    case UserConsentVerificationResult.DeviceBusy:
                        lblMsg.Text += "UserConsentVerificationResult.DeviceBusy";
                        break;
                    case UserConsentVerificationResult.DeviceNotPresent:
                        lblMsg.Text += "UserConsentVerificationResult.DeviceNotPresent";
                        break;
                    case UserConsentVerificationResult.DisabledByPolicy:
                        lblMsg.Text += "UserConsentVerificationResult.DisabledByPolicy";
                        break;
                    case UserConsentVerificationResult.NotConfiguredForUser:
                        lblMsg.Text += "UserConsentVerificationResult.NotConfiguredForUser";
                        break;
                    case UserConsentVerificationResult.RetriesExhausted:
                        lblMsg.Text += "UserConsentVerificationResult.RetriesExhausted";
                        break;
                    case UserConsentVerificationResult.Canceled: // 驗證取消
                        lblMsg.Text += "UserConsentVerificationResult.Canceled";
                        break;
                    default:
                        break;
                }
            }
            catch (Exception ex)
            {
                lblMsg.Text += ex.ToString();
            }

            lblMsg.Text += "\n";
        }
    }
}



OK
[源碼下載]


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 微信最新的小程式裡面出了個叫“跳一跳”的小游戲,一經推出立馬刷爆了朋友圈,而一些大神們也通過Python實現了自動玩游戲具體代碼見(Github地址:https://github.com/wangshub/wechat_jump_game)。我也通過一些研究成功搭建了這個程式運行的環境,在朋友圈小刷 ...
  • Dict 1 使用鍵-值(key-value)存儲,具有極快的查找速度。 2 eg:d = {'Michael': 95, 'Bob': 75, 'Tracy': 85} >>> d['Michael'] 95 3 要避免key不存在的錯誤,有兩種辦法,一是通過in判斷key是否存在: 二是通過di ...
  • 工作中,需要處理與另一方系統數據交換的問題,採用的是調用遠程介面的方法,數據格式選擇的是json,今天就來聊一聊json,主要分析json數據和java Bean之間的轉換問題。 一、json是什麼 json,全稱是JavaScript Object Notation,中文翻譯是JS對象標記語言,是 ...
  • 官方描述Python is powerful... and fast; plays well with others; runs everywhere; is friendly & easy to learn; is Open.Python是一個易於學習且功能強大的編程語言.他具有高效率的數據結構,... ...
  • 如何在 Linux 上安裝 Nginx 1、下載 nginx 鏈接 : https://pan.baidu.com/s/1sll0Hrf 密碼 : xnem 2、終端依次執行下麵命令 3、解壓 4、進入解壓後的目錄 5、使用 configure 命令創建一 Makefile 文件 ( 直接在終端中輸 ...
  • Spring整合Hibernate Spring的Web項目中,web.xml文件會自動載入,以出現歡迎首頁。也可以在這個文件中對Spring的配置文件進行監聽,自啟動配置文件, 以及之前的整合Struts2,放置過濾器 在Spring的核心配置文件中,進行資料庫連接池配置,建立sessionFac ...
  • c++中給對象分配記憶體常見有三種方法: 使用c++ 庫函數 std::allocator (c++ library); 使用new,new[] 表達式,::operator new() 操作符,(c++ primitives); c 函數 malloc/free (CRT); 測試代碼如下: 1 # ...
  • 一、前言 2017年最後幾天,你們都高高興興的跨年,博主還在加班製作.net安裝包。因為年前要出來第一版的安裝包,所以博主是加班加點啊。本來想用VS自帶的製作工具,不過用過的人都知道,真是非常好(tong)用(ku),各種包需要單獨下載不說,界面也不美觀,所以決定棄用之。同事推薦用Advanced ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...