Fetch ClaimType Enumerations via REST

℡╲_俬逩灬. 提交于 2019-12-14 03:42:13

问题


We're happily enriching our claims via custom RESTful API, but is it possible to instead display the fetched claim values (comma delimetered, for example) in a drop-down and ask used to pick one?

<ClaimType Id="city">
  <DisplayName>city where you work</DisplayName>
  <DataType>string</DataType>
  <UserInputType>DropdownSingleSelect</UserInputType>
  <Restriction>
      <!-- FETCH THESE VIA REST --> 
      <Enumeration Text="Bellevue" Value="bellevue" SelectByDefault="false" />
  </Restriction>
</ClaimType>

来源:https://stackoverflow.com/questions/49253190/fetch-claimtype-enumerations-via-rest

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!