我正在嘗試從 Microsoft 圖形用戶中獲取創(chuàng)建用戶的日期 (createdDateTime)。在 Microsoft Graph Explorer 中,您可以找到該屬性并且它有一個(gè)值。但是當(dāng)我嘗試在我的 c# 代碼中填寫(xiě)我的屬性時(shí),microsoft.graph.user 沒(méi)有createdDateTime任何類型的屬性,所以它屬于其他東西還是尚未實(shí)現(xiàn)?List<QueryOption> options = new List<QueryOption> { new QueryOption("$select", "id,userPrincipalName,createdDateTime") };var graphserviceClient = new GraphServiceClient(new DelegateAuthenticationProvider((requestMessage) => { requestMessage.Headers.Authorization = new AuthenticationHeaderValue("bearer", BearerToken.access_token); return Task.FromResult(0); }));var AllUsers = await graphserviceClient.Users.Request(options).GetAsync();foreach ( Microsoft.Graph.User FoundUser in AllUsers) { DateTimeOffset? cD = FoundUser.???//createdDateTime }在圖中 https://graph.microsoft.com/v1.0/me/ ?$select=displayName,createdDateTime結(jié)果"displayName": "-K*** D****","createdDateTime": "2016-10-26T20:30:04Z"預(yù)期:我只是想知道從哪里獲取存儲(chǔ)在圖形中的這個(gè)屬性的值
1 回答

心有法竹
TA貢獻(xiàn)1866條經(jīng)驗(yàn) 獲得超5個(gè)贊
這是因?yàn)樵?code>createdDateTime屬性在 Dictionary 中可用,它位于User 繼承自AdditionalData
的父類之一中。Entity
用戶:目錄對(duì)象:實(shí)體
public IDictionary<string, object> AdditionalData { get; set; }
你會(huì)在那里找到它。
- 1 回答
- 0 關(guān)注
- 95 瀏覽
添加回答
舉報(bào)
0/150
提交
取消