Skip to content

Instantly share code, notes, and snippets.

@aanufriyev
Created February 1, 2015 13:03
Show Gist options
  • Save aanufriyev/feef8e7f78b7da3fc227 to your computer and use it in GitHub Desktop.
Save aanufriyev/feef8e7f78b7da3fc227 to your computer and use it in GitHub Desktop.
// Like this
Task<IEnumerable<Scope>> FindScopesAsync(ConnectRequestContext requestContext, IEnumerable<string> scopeNames, string tenantId = null);
// Or like this
Task<IEnumerable<Scope>> FindScopesAsync(ConnectRequestContext requestContex, IEnumerable<string> scopeNames);
Task<IEnumerable<Scope>> FindScopesAsync(ConnectRequestContext requestContext, string tenantId, IEnumerable<string> scopeNames);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment