Json 결과를 모델로 deserialize하고 싶습니다. 내가 볼 것은 여기에 당신이 당신의 데이터를 게시하고 u는 쉽게 굉장Azure Active Directory 사용자 Json을 모델 역 직렬화
UserProfile profile = JsonConvert.DeserializeObject<UserProfile>(responseString);
하여 모델 결과를 전송할 수있는 사용자를받은 후 AD에서 단일 사용자를 얻기 위해 인증이며 자동
을 만들어 userProfileModel입니다public class UserProfile
{
public string DisplayName { get; set; }
public string GivenName { get; set; }
public string Surname { get; set; }
}
사용자 목록이 포함 된 Jsonresult를 deserialize하고 싶습니다. UserProfile 대신 무엇을 써야합니까? Azure Active Directory에 사용자 목록을위한 모델이 있습니까? (필자는 AzureTest.Models.Users을 시도하고 그래서 우리는 그것을 나던 작업 말할 수 null을 반환 /)
감사를 여기
[링크 만 대답하면 좋지 않습니다.] (https://stackoverflow.com/help/how-to-answer). 광고 추가 설명을 추가하십시오. 가장 관련성이 높은 부분을 인용 할 수 있습니다. – Nikolay
이것은 수용 가능한 대답이 아닙니다. –