Skip to content

Instantly share code, notes, and snippets.

@maisarissi
Last active February 8, 2023 20:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maisarissi/6cc084f4f30519445bf42122368f8a2a to your computer and use it in GitHub Desktop.
Save maisarissi/6cc084f4f30519445bf42122368f8a2a to your computer and use it in GitHub Desktop.
msgraph-dotnet-v5-rc-get-user-list
var usersResponse = await graphServiceClient
    .Users
    .GetAsync(requestConfiguration =>
        requestConfiguration.QueryParameters.Select = new string[] {"id", "createdDateTime"});
List<User> userList = usersResponse.Value;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment