Struct WebAuthenticationCoreManager
pub struct WebAuthenticationCoreManager;
Implementations§
§impl WebAuthenticationCoreManager
impl WebAuthenticationCoreManager
pub fn GetTokenSilentlyAsync<P0>(
request: P0,
) -> Result<IAsyncOperation<WebTokenRequestResult>>where
P0: Param<WebTokenRequest>,
pub fn GetTokenSilentlyWithWebAccountAsync<P0, P1>(
request: P0,
webaccount: P1,
) -> Result<IAsyncOperation<WebTokenRequestResult>>where
P0: Param<WebTokenRequest>,
P1: Param<WebAccount>,
pub fn RequestTokenAsync<P0>(
request: P0,
) -> Result<IAsyncOperation<WebTokenRequestResult>>where
P0: Param<WebTokenRequest>,
pub fn RequestTokenWithWebAccountAsync<P0, P1>(
request: P0,
webaccount: P1,
) -> Result<IAsyncOperation<WebTokenRequestResult>>where
P0: Param<WebTokenRequest>,
P1: Param<WebAccount>,
pub fn FindAccountAsync<P0>(
provider: P0,
webaccountid: &HSTRING,
) -> Result<IAsyncOperation<WebAccount>>where
P0: Param<WebAccountProvider>,
pub fn FindAccountProviderAsync( webaccountproviderid: &HSTRING, ) -> Result<IAsyncOperation<WebAccountProvider>>
pub fn FindAccountProviderWithAuthorityAsync( webaccountproviderid: &HSTRING, authority: &HSTRING, ) -> Result<IAsyncOperation<WebAccountProvider>>
pub fn FindAccountProviderWithAuthorityForUserAsync<P2>(
webaccountproviderid: &HSTRING,
authority: &HSTRING,
user: P2,
) -> Result<IAsyncOperation<WebAccountProvider>>where
P2: Param<User>,
pub fn CreateWebAccountMonitor<P0>(webaccounts: P0) -> Result<WebAccountMonitor>where
P0: Param<IIterable<WebAccount>>,
pub fn FindAllAccountsAsync<P0>(
provider: P0,
) -> Result<IAsyncOperation<FindAllAccountsResult>>where
P0: Param<WebAccountProvider>,
pub fn FindAllAccountsWithClientIdAsync<P0>(
provider: P0,
clientid: &HSTRING,
) -> Result<IAsyncOperation<FindAllAccountsResult>>where
P0: Param<WebAccountProvider>,
pub fn FindSystemAccountProviderAsync( webaccountproviderid: &HSTRING, ) -> Result<IAsyncOperation<WebAccountProvider>>
pub fn FindSystemAccountProviderWithAuthorityAsync( webaccountproviderid: &HSTRING, authority: &HSTRING, ) -> Result<IAsyncOperation<WebAccountProvider>>
pub fn FindSystemAccountProviderWithAuthorityForUserAsync<P2>(
webaccountproviderid: &HSTRING,
authority: &HSTRING,
user: P2,
) -> Result<IAsyncOperation<WebAccountProvider>>where
P2: Param<User>,
pub fn AddAccountWithTransferTokenAsync<P0>(
request: P0,
) -> Result<IAsyncOperation<WebAuthenticationAddAccountResult>>where
P0: Param<WebAuthenticationTransferTokenRequest>,
Auto Trait Implementations§
impl Freeze for WebAuthenticationCoreManager
impl RefUnwindSafe for WebAuthenticationCoreManager
impl Send for WebAuthenticationCoreManager
impl Sync for WebAuthenticationCoreManager
impl Unpin for WebAuthenticationCoreManager
impl UnwindSafe for WebAuthenticationCoreManager
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more