Update 07082021
This commit is contained in:
494
packages/Microsoft.Owin.Security.4.0.1/lib/net45/Microsoft.Owin.Security.XML
vendored
Normal file
494
packages/Microsoft.Owin.Security.4.0.1/lib/net45/Microsoft.Owin.Security.XML
vendored
Normal file
@@ -0,0 +1,494 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>Microsoft.Owin.Security</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:Microsoft.Owin.Security.AppBuilderSecurityExtensions">
|
||||
<summary>
|
||||
Provides extensions methods for app.Property values that are only needed by implementations of authentication middleware.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.AppBuilderSecurityExtensions.GetDefaultSignInAsAuthenticationType(Owin.IAppBuilder)">
|
||||
<summary>
|
||||
Returns the previously set AuthenticationType that external sign in middleware should use when the
|
||||
browser navigates back to their return url.
|
||||
</summary>
|
||||
<param name="app">App builder passed to the application startup code</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.AppBuilderSecurityExtensions.SetDefaultSignInAsAuthenticationType(Owin.IAppBuilder,System.String)">
|
||||
<summary>
|
||||
Called by middleware to change the name of the AuthenticationType that external middleware should use
|
||||
when the browser navigates back to their return url.
|
||||
</summary>
|
||||
<param name="app">App builder passed to the application startup code</param>
|
||||
<param name="authenticationType">AuthenticationType that external middleware should sign in as.</param>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.Security.AuthenticationMode">
|
||||
<summary>
|
||||
Controls the behavior of authentication middleware
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.Owin.Security.AuthenticationMode.Active">
|
||||
<summary>
|
||||
In Active mode the authentication middleware will alter the user identity as the request arrives, and
|
||||
will also alter a plain 401 as the response leaves.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.Owin.Security.AuthenticationMode.Passive">
|
||||
<summary>
|
||||
In Passive mode the authentication middleware will only provide user identity when asked, and will only
|
||||
alter 401 responses where the authentication type named in the extra challenge data.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.Security.AuthenticationOptions">
|
||||
<summary>
|
||||
Base Options for all authentication middleware
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.AuthenticationOptions.#ctor(System.String)">
|
||||
<summary>
|
||||
Initialize properties of AuthenticationOptions base class
|
||||
</summary>
|
||||
<param name="authenticationType">Assigned to the AuthenticationType property</param>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.Security.AuthenticationOptions.AuthenticationType">
|
||||
<summary>
|
||||
The AuthenticationType in the options corresponds to the IIdentity AuthenticationType property. A different
|
||||
value may be assigned in order to use the same authentication middleware type more than once in a pipeline.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.Security.AuthenticationOptions.AuthenticationMode">
|
||||
<summary>
|
||||
If Active the authentication middleware alter the request user coming in and
|
||||
alter 401 Unauthorized responses going out. If Passive the authentication middleware will only provide
|
||||
identity and alter responses when explicitly indicated by the AuthenticationType.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.Security.AuthenticationOptions.Description">
|
||||
<summary>
|
||||
Additional information about the authentication type which is made available to the application.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.Security.Constants">
|
||||
<summary>
|
||||
String constants used only by the Security assembly
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.Owin.Security.Constants.DefaultSignInAsAuthenticationType">
|
||||
<summary>
|
||||
Used by middleware extension methods to coordinate the default value Options property SignInAsAuthenticationType
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.Security.DataProtection.IDataProtector">
|
||||
<summary>
|
||||
Service used to protect and unprotect data
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.DataProtection.IDataProtector.Protect(System.Byte[])">
|
||||
<summary>
|
||||
Called to protect user data.
|
||||
</summary>
|
||||
<param name="userData">The original data that must be protected</param>
|
||||
<returns>A different byte array that may be unprotected or altered only by software that has access to
|
||||
the an identical IDataProtection service.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.DataProtection.IDataProtector.Unprotect(System.Byte[])">
|
||||
<summary>
|
||||
Called to unprotect user data
|
||||
</summary>
|
||||
<param name="protectedData">The byte array returned by a call to Protect on an identical IDataProtection service.</param>
|
||||
<returns>The byte array identical to the original userData passed to Protect.</returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.Security.DataProtection.IDataProtectionProvider">
|
||||
<summary>
|
||||
Factory used to create IDataProtection instances
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.DataProtection.IDataProtectionProvider.Create(System.String[])">
|
||||
<summary>
|
||||
Returns a new instance of IDataProtection for the provider.
|
||||
</summary>
|
||||
<param name="purposes">Additional entropy used to ensure protected data may only be unprotected for the correct purposes.</param>
|
||||
<returns>An instance of a data protection service</returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.Security.DataProtection.DpapiDataProtectionProvider">
|
||||
<summary>
|
||||
Used to provide the data protection services that are derived from the Data Protection API. It is the best choice of
|
||||
data protection when you application is not hosted by ASP.NET and all processes are running as the same domain identity.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.DataProtection.DpapiDataProtectionProvider.#ctor">
|
||||
<summary>
|
||||
Initializes a new DpapiDataProtectionProvider with a random application
|
||||
name. This is only useful to protect data for the duration of the
|
||||
current application execution.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.DataProtection.DpapiDataProtectionProvider.#ctor(System.String)">
|
||||
<summary>
|
||||
Initializes a new DpapiDataProtectionProvider which uses the given
|
||||
appName as part of the protection algorithm
|
||||
</summary>
|
||||
<param name="appName">A user provided value needed to round-trip secured
|
||||
data. The default value comes from the IAppBuilder.Properties["owin.AppName"]
|
||||
when self-hosted.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.DataProtection.DpapiDataProtectionProvider.Create(System.String[])">
|
||||
<summary>
|
||||
Returns a new instance of IDataProtection for the provider.
|
||||
</summary>
|
||||
<param name="purposes">Additional entropy used to ensure protected data may only be unprotected for the correct purposes.</param>
|
||||
<returns>An instance of a data protection service</returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.Security.Infrastructure.AuthenticationHandler`1">
|
||||
<summary>
|
||||
Base class for the per-request work performed by most authentication middleware.
|
||||
</summary>
|
||||
<typeparam name="TOptions">Specifies which type for of AuthenticationOptions property</typeparam>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.Infrastructure.AuthenticationHandler`1.Initialize(`0,Microsoft.Owin.IOwinContext)">
|
||||
<summary>
|
||||
Initialize is called once per request to contextualize this instance with appropriate state.
|
||||
</summary>
|
||||
<param name="options">The original options passed by the application control behavior</param>
|
||||
<param name="context">The utility object to observe the current request and response</param>
|
||||
<returns>async completion</returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.Security.Infrastructure.AuthenticationHandler">
|
||||
<summary>
|
||||
Base class for the per-request work performed by most authentication middleware.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.Infrastructure.AuthenticationHandler.TeardownAsync">
|
||||
<summary>
|
||||
Called once per request after Initialize and Invoke.
|
||||
</summary>
|
||||
<returns>async completion</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.Infrastructure.AuthenticationHandler.InvokeAsync">
|
||||
<summary>
|
||||
Called once by common code after initialization. If an authentication middleware responds directly to
|
||||
specifically known paths it must override this virtual, compare the request path to it's known paths,
|
||||
provide any response information as appropriate, and true to stop further processing.
|
||||
</summary>
|
||||
<returns>Returning false will cause the common code to call the next middleware in line. Returning true will
|
||||
cause the common code to begin the async completion journey without calling the rest of the middleware
|
||||
pipeline.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.Infrastructure.AuthenticationHandler.AuthenticateAsync">
|
||||
<summary>
|
||||
Causes the authentication logic in AuthenticateCore to be performed for the current request
|
||||
at most once and returns the results. Calling Authenticate more than once will always return
|
||||
the original value.
|
||||
|
||||
This method should always be called instead of calling AuthenticateCore directly.
|
||||
</summary>
|
||||
<returns>The ticket data provided by the authentication logic</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.Infrastructure.AuthenticationHandler.AuthenticateCoreAsync">
|
||||
<summary>
|
||||
The core authentication logic which must be provided by the handler. Will be invoked at most
|
||||
once per request. Do not call directly, call the wrapping Authenticate method instead.
|
||||
</summary>
|
||||
<returns>The ticket data provided by the authentication logic</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.Infrastructure.AuthenticationHandler.ApplyResponseAsync">
|
||||
<summary>
|
||||
Causes the ApplyResponseCore to be invoked at most once per request. This method will be
|
||||
invoked either earlier, when the response headers are sent as a result of a response write or flush,
|
||||
or later, as the last step when the original async call to the middleware is returning.
|
||||
</summary>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.Infrastructure.AuthenticationHandler.ApplyResponseCoreAsync">
|
||||
<summary>
|
||||
Core method that may be overridden by handler. The default behavior is to call two common response
|
||||
activities, one that deals with sign-in/sign-out concerns, and a second to deal with 401 challenges.
|
||||
</summary>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.Infrastructure.AuthenticationHandler.ApplyResponseGrantAsync">
|
||||
<summary>
|
||||
Override this method to dela with sign-in/sign-out concerns, if an authentication scheme in question
|
||||
deals with grant/revoke as part of it's request flow. (like setting/deleting cookies)
|
||||
</summary>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.Infrastructure.AuthenticationHandler.ApplyResponseChallengeAsync">
|
||||
<summary>
|
||||
Override this method to deal with 401 challenge concerns, if an authentication scheme in question
|
||||
deals an authentication interaction as part of it's request flow. (like adding a response header, or
|
||||
changing the 401 result to 302 of a login page or external sign-in location.)
|
||||
</summary>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.Security.Infrastructure.SecurityHelper">
|
||||
<summary>
|
||||
Helper code used when implementing authentication middleware
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.Infrastructure.SecurityHelper.#ctor(Microsoft.Owin.IOwinContext)">
|
||||
<summary>
|
||||
Helper code used when implementing authentication middleware
|
||||
</summary>
|
||||
<param name="context"></param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.Infrastructure.SecurityHelper.AddUserIdentity(System.Security.Principal.IIdentity)">
|
||||
<summary>
|
||||
Add an additional ClaimsIdentity to the ClaimsPrincipal in the "server.User" environment key
|
||||
</summary>
|
||||
<param name="identity"></param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.Infrastructure.SecurityHelper.LookupChallenge(System.String,Microsoft.Owin.Security.AuthenticationMode)">
|
||||
<summary>
|
||||
Find response challenge details for a specific authentication middleware
|
||||
</summary>
|
||||
<param name="authenticationType">The authentication type to look for</param>
|
||||
<param name="authenticationMode">The authentication mode the middleware is running under</param>
|
||||
<returns>The information instructing the middleware how it should behave</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.Infrastructure.SecurityHelper.LookupSignIn(System.String)">
|
||||
<summary>
|
||||
Find response sign-in details for a specific authentication middleware
|
||||
</summary>
|
||||
<param name="authenticationType">The authentication type to look for</param>
|
||||
<returns>The information instructing the middleware how it should behave</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.Infrastructure.SecurityHelper.LookupSignOut(System.String,Microsoft.Owin.Security.AuthenticationMode)">
|
||||
<summary>
|
||||
Find response sign-out details for a specific authentication middleware
|
||||
</summary>
|
||||
<param name="authenticationType">The authentication type to look for</param>
|
||||
<param name="authenticationMode">The authentication mode the middleware is running under</param>
|
||||
<returns>The information instructing the middleware how it should behave</returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.Security.AuthenticationTicket">
|
||||
<summary>
|
||||
Contains user identity information as well as additional authentication state.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.AuthenticationTicket.#ctor(System.Security.Claims.ClaimsIdentity,Microsoft.Owin.Security.AuthenticationProperties)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Microsoft.Owin.Security.AuthenticationTicket"/> class
|
||||
</summary>
|
||||
<param name="identity"></param>
|
||||
<param name="properties"></param>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.Security.AuthenticationTicket.Identity">
|
||||
<summary>
|
||||
Gets the authenticated user identity.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.Security.AuthenticationTicket.Properties">
|
||||
<summary>
|
||||
Additional state values for the authentication session.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.Security.ICertificateValidator">
|
||||
<summary>
|
||||
Interface for providing pinned certificate validation, which checks HTTPS
|
||||
communication against a known good list of certificates to protect against
|
||||
compromised or rogue CAs issuing certificates for hosts without the
|
||||
knowledge of the host owner.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.ICertificateValidator.Validate(System.Object,System.Security.Cryptography.X509Certificates.X509Certificate,System.Security.Cryptography.X509Certificates.X509Chain,System.Net.Security.SslPolicyErrors)">
|
||||
<summary>
|
||||
Verifies the remote Secure Sockets Layer (SSL) certificate used for authentication.
|
||||
</summary>
|
||||
<param name="sender">An object that contains state information for this validation.</param>
|
||||
<param name="certificate">The certificate used to authenticate the remote party.</param>
|
||||
<param name="chain">The chain of certificate authorities associated with the remote certificate.</param>
|
||||
<param name="sslPolicyErrors">One or more errors associated with the remote certificate.</param>
|
||||
<returns>A Boolean value that determines whether the specified certificate is accepted for authentication.</returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.Security.CertificateThumbprintValidator">
|
||||
<summary>
|
||||
Provides pinned certificate validation based on the certificate thumbprint.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.CertificateThumbprintValidator.#ctor(System.Collections.Generic.IEnumerable{System.String})">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Microsoft.Owin.Security.CertificateThumbprintValidator"/> class.
|
||||
</summary>
|
||||
<param name="validThumbprints">A set of thumbprints which are valid for an HTTPS request.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.CertificateThumbprintValidator.Validate(System.Object,System.Security.Cryptography.X509Certificates.X509Certificate,System.Security.Cryptography.X509Certificates.X509Chain,System.Net.Security.SslPolicyErrors)">
|
||||
<summary>
|
||||
Validates that the certificate thumbprints in the signing chain match at least one whitelisted thumbprint.
|
||||
</summary>
|
||||
<param name="sender">An object that contains state information for this validation.</param>
|
||||
<param name="certificate">The certificate used to authenticate the remote party.</param>
|
||||
<param name="chain">The chain of certificate authorities associated with the remote certificate.</param>
|
||||
<param name="sslPolicyErrors">One or more errors associated with the remote certificate.</param>
|
||||
<returns>A Boolean value that determines whether the specified certificate is accepted for authentication.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.Notifications.BaseNotification`1.HandleResponse">
|
||||
<summary>
|
||||
Discontinue all processing for this request and return to the client.
|
||||
The caller is responsible for generating the full response.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.Notifications.BaseNotification`1.SkipToNextMiddleware">
|
||||
<summary>
|
||||
Discontinue processing the request in the current middleware and pass control to the next one.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.Owin.Security.Notifications.NotificationResultState.Continue">
|
||||
<summary>
|
||||
Continue with normal processing.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.Owin.Security.Notifications.NotificationResultState.Skipped">
|
||||
<summary>
|
||||
Discontinue processing the request in the current middleware and pass control to the next one.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.Owin.Security.Notifications.NotificationResultState.HandledResponse">
|
||||
<summary>
|
||||
Discontinue all processing for this request.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.Notifications.RedirectToIdentityProviderNotification`2.HandleResponse">
|
||||
<summary>
|
||||
Discontinue all processing for this request and return to the client.
|
||||
The caller is responsible for generating the full response.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.Security.Notifications.SecurityTokenValidatedNotification`2.AuthenticationTicket">
|
||||
<summary>
|
||||
Gets or set the <see cref="P:Microsoft.Owin.Security.Notifications.SecurityTokenValidatedNotification`2.AuthenticationTicket"/>
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.Security.Notifications.SecurityTokenValidatedNotification`2.ProtocolMessage">
|
||||
<summary>
|
||||
Gets or sets the Protocol message
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.Security.Provider.BaseContext`1">
|
||||
<summary>
|
||||
Base class used for certain event contexts
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.Security.Provider.EndpointContext`1">
|
||||
<summary>
|
||||
Base class used for certain event contexts
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.Provider.EndpointContext`1.#ctor(Microsoft.Owin.IOwinContext,`0)">
|
||||
<summary>
|
||||
Creates an instance of this context
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.Security.Provider.EndpointContext`1.IsRequestCompleted">
|
||||
<summary>
|
||||
True if the request should not be processed further by other components.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.Provider.EndpointContext`1.RequestCompleted">
|
||||
<summary>
|
||||
Prevents the request from being processed further by other components.
|
||||
IsRequestCompleted becomes true after calling.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.Security.Resources">
|
||||
<summary>
|
||||
A strongly-typed resource class, for looking up localized strings, etc.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.Security.Resources.ResourceManager">
|
||||
<summary>
|
||||
Returns the cached ResourceManager instance used by this class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.Security.Resources.Culture">
|
||||
<summary>
|
||||
Overrides the current thread's CurrentUICulture property for all
|
||||
resource lookups using this strongly typed resource class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.Security.Resources.Exception_AuthenticationTokenDoesNotProvideSyncMethods">
|
||||
<summary>
|
||||
Looks up a localized string similar to The AuthenticationTokenProvider's required synchronous events have not been registered..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.Security.Resources.Exception_DefaultDpapiRequiresAppNameKey">
|
||||
<summary>
|
||||
Looks up a localized string similar to The default data protection provider may only be used when the IAppBuilder.Properties contains an appropriate 'host.AppName' key..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.Security.Resources.Exception_MissingDefaultSignInAsAuthenticationType">
|
||||
<summary>
|
||||
Looks up a localized string similar to A default value for SignInAsAuthenticationType was not found in IAppBuilder Properties. This can happen if your authentication middleware are added in the wrong order, or if one is missing..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.Security.Resources.Exception_UnhookAuthenticationStateType">
|
||||
<summary>
|
||||
Looks up a localized string similar to The state passed to UnhookAuthentication may only be the return value from HookAuthentication..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.Security.CertificateSubjectKeyIdentifierValidator">
|
||||
<summary>
|
||||
Provides pinned certificate validation based on the subject key identifier of the certificate.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.CertificateSubjectKeyIdentifierValidator.#ctor(System.Collections.Generic.IEnumerable{System.String})">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Microsoft.Owin.Security.CertificateSubjectKeyIdentifierValidator"/> class.
|
||||
</summary>
|
||||
<param name="validSubjectKeyIdentifiers">A set of subject key identifiers which are valid for an HTTPS request.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.CertificateSubjectKeyIdentifierValidator.Validate(System.Object,System.Security.Cryptography.X509Certificates.X509Certificate,System.Security.Cryptography.X509Certificates.X509Chain,System.Net.Security.SslPolicyErrors)">
|
||||
<summary>
|
||||
Verifies the remote Secure Sockets Layer (SSL) certificate used for authentication.
|
||||
</summary>
|
||||
<param name="sender">An object that contains state information for this validation.</param>
|
||||
<param name="certificate">The certificate used to authenticate the remote party.</param>
|
||||
<param name="chain">The chain of certificate authorities associated with the remote certificate.</param>
|
||||
<param name="sslPolicyErrors">One or more errors associated with the remote certificate.</param>
|
||||
<returns>A Boolean value that determines whether the specified certificate is accepted for authentication.</returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.Security.SubjectPublicKeyInfoAlgorithm">
|
||||
<summary>
|
||||
The algorithm used to generate the subject public key information blob hashes.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.Security.CertificateSubjectPublicKeyInfoValidator">
|
||||
<summary>
|
||||
Implements a cert pinning validator passed on
|
||||
http://datatracker.ietf.org/doc/draft-ietf-websec-key-pinning/?include_text=1
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.CertificateSubjectPublicKeyInfoValidator.#ctor(System.Collections.Generic.IEnumerable{System.String},Microsoft.Owin.Security.SubjectPublicKeyInfoAlgorithm)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Microsoft.Owin.Security.CertificateSubjectPublicKeyInfoValidator"/> class.
|
||||
</summary>
|
||||
<param name="validBase64EncodedSubjectPublicKeyInfoHashes">A collection of valid base64 encoded hashes of the certificate public key information blob.</param>
|
||||
<param name="algorithm">The algorithm used to generate the hashes.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.CertificateSubjectPublicKeyInfoValidator.Validate(System.Object,System.Security.Cryptography.X509Certificates.X509Certificate,System.Security.Cryptography.X509Certificates.X509Chain,System.Net.Security.SslPolicyErrors)">
|
||||
<summary>
|
||||
Validates at least one SPKI hash is known.
|
||||
</summary>
|
||||
<param name="sender">An object that contains state information for this validation.</param>
|
||||
<param name="certificate">The certificate used to authenticate the remote party.</param>
|
||||
<param name="chain">The chain of certificate authorities associated with the remote certificate.</param>
|
||||
<param name="sslPolicyErrors">One or more errors associated with the remote certificate.</param>
|
||||
<returns>A Boolean value that determines whether the specified certificate is accepted for authentication.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Win32.NativeMethods.CryptEncodeObject(System.UInt32,System.IntPtr,Microsoft.Win32.NativeMethods.CERT_PUBLIC_KEY_INFO@,System.Byte[],System.UInt32@)">
|
||||
<summary>
|
||||
Encodes a structure of the type indicated by the value of the lpszStructType parameter.
|
||||
</summary>
|
||||
<param name="dwCertEncodingType">Type of encoding used.</param>
|
||||
<param name="lpszStructType">The high-order word is zero, the low-order word specifies the integer identifier for the type of the specified structure so
|
||||
we can use the constants in http://msdn.microsoft.com/en-us/library/windows/desktop/aa378145%28v=vs.85%29.aspx</param>
|
||||
<param name="pvStructInfo">A pointer to the structure to be encoded.</param>
|
||||
<param name="pbEncoded">A pointer to a buffer to receive the encoded structure. This parameter can be NULL to retrieve the size of this information for memory allocation purposes.</param>
|
||||
<param name="pcbEncoded">A pointer to a DWORD variable that contains the size, in bytes, of the buffer pointed to by the pbEncoded parameter.</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
BIN
packages/Microsoft.Owin.Security.4.0.1/lib/net45/Microsoft.Owin.Security.dll
vendored
Normal file
BIN
packages/Microsoft.Owin.Security.4.0.1/lib/net45/Microsoft.Owin.Security.dll
vendored
Normal file
Binary file not shown.
BIN
packages/Microsoft.Owin.Security.4.0.1/lib/net45/de/Microsoft.Owin.Security.resources.dll
vendored
Normal file
BIN
packages/Microsoft.Owin.Security.4.0.1/lib/net45/de/Microsoft.Owin.Security.resources.dll
vendored
Normal file
Binary file not shown.
549
packages/Microsoft.Owin.Security.4.0.1/lib/net45/de/Microsoft.Owin.Security.xml
vendored
Normal file
549
packages/Microsoft.Owin.Security.4.0.1/lib/net45/de/Microsoft.Owin.Security.xml
vendored
Normal file
@@ -0,0 +1,549 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>Microsoft.Owin.Security</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:Microsoft.Owin.Security.AppBuilderSecurityExtensions">
|
||||
<summary>Stellt Erweiterungsmethoden für app.Property-Werte zur Verfügung, die nur von Implementierungen von Authentifizierungsmiddleware benötigt werden.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.AppBuilderSecurityExtensions.GetDefaultSignInAsAuthenticationType(Owin.IAppBuilder)">
|
||||
<summary>Gibt den zuvor festgelegten AuthenticationType zurück, den externe Anmeldungsmiddleware verwenden soll, wenn der Browser zurück zu deren Rückgabe-URL navigiert.</summary>
|
||||
<param name="app">Der App-Generator, der an den Anwendungsstartcode übergeben wird.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.AppBuilderSecurityExtensions.SetDefaultSignInAsAuthenticationType(Owin.IAppBuilder,System.String)">
|
||||
<summary>Wird von Middleware zum Ändern des Namens des AuthenticationType aufgerufen, den externe Middleware verwenden soll, wenn der Browser zurück deren Rückgabe-URL navigiert.</summary>
|
||||
<param name="app">Der App-Generator, der an den Anwendungsstartcode übergeben wird.</param>
|
||||
<param name="authenticationType">Der AuthenticationType, als der sich externe Middleware anmelden soll.</param>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.Security.AuthenticationMode">
|
||||
<summary>Steuert das Verhalten der Authentifizierungsmiddleware.</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.Owin.Security.AuthenticationMode.Active">
|
||||
<summary>Im aktiven Modus ändert die Authentifizierungsmiddleware die Benutzeridentität, wenn die Anforderung eingeht. Außerdem wird eine einfache Antwort 401 geändert, wenn die Antwort gesendet wird.</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.Owin.Security.AuthenticationMode.Passive">
|
||||
<summary>Im passiven Modus stellt die Authentifizierungsmiddleware die Benutzeridentität nur auf Aufforderung zur Verfügung. Außerdem werden Antworten des Typs 401 nur geändert, wenn der Authentifizierungstyp in den zusätzlichen Aufforderungsdaten genannt wird.</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.Security.AuthenticationOptions">
|
||||
<summary>Die Basisoptionen für die gesamte Authentifizierungsmiddleware.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.AuthenticationOptions.#ctor(System.String)">
|
||||
<summary>Initialisiert Eigenschaften der Basisklasse AuthenticationOptions.</summary>
|
||||
<param name="authenticationType">Wird der Eigenschaft AuthenticationType zugewiesen.</param>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.Security.AuthenticationOptions.AuthenticationMode">
|
||||
<summary>Im aktiven Modus ändert die Authentifizierungsmiddleware den eingehenden Anforderungsbenutzer sowie ausgehende Antworten des Typs "401 Nicht autorisiert".Im passiven Modus stellt die Authentifizierungsmiddleware die Identität nur zur Verfügung und ändert Antworten, wenn dies ausdrücklich in AuthenticationType angegeben wird.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.Security.AuthenticationOptions.AuthenticationType">
|
||||
<summary>Der AuthenticationType in den Optionen entspricht der Eigenschaft AuthenticationType der Identität.Es kann ein anderer Wert zugewiesen werden, um den gleichen Authentifizierungsmiddlewaretyp mehrmals in einer Pipeline zu verwenden.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.Security.AuthenticationOptions.Description">
|
||||
<summary>Zusätzliche Informationen zum Authentifizierungstyp, die der Anwendung zur Verfügung gestellt werden.</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.Security.AuthenticationTicket">
|
||||
<summary>Enthält Benutzeridentitätsinformationen sowie einen zusätzlichen Authentifizierungsstatus.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.AuthenticationTicket.#ctor(System.Security.Claims.ClaimsIdentity,Microsoft.Owin.Security.AuthenticationProperties)">
|
||||
<summary>Initialisiert eine neue Instanz der <see cref="T:Microsoft.Owin.Security.AuthenticationTicket" />-Klasse.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.Security.AuthenticationTicket.Identity">
|
||||
<summary>Ruft die authentifizierte Benutzeridentität ab.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.Security.AuthenticationTicket.Properties">
|
||||
<summary>Zusätzliche Statusswerte für die Authentifizierungssitzung.</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.Security.CertificateSubjectKeyIdentifierValidator">
|
||||
<summary>Stellt immer verfügbare Zertifikatvalidierung basierend auf dem Antragstellerschlüsselbezeichner des Zertifikats zur Verfügung.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.CertificateSubjectKeyIdentifierValidator.#ctor(System.Collections.Generic.IEnumerable{System.String})">
|
||||
<summary>Initialisiert eine neue Instanz der <see cref="T:Microsoft.Owin.Security.CertificateSubjectKeyIdentifierValidator" />-Klasse.</summary>
|
||||
<param name="validSubjectKeyIdentifiers">Eine Sammlung von Antragstellerschlüsselbezeichnern, die für eine HTTPS-Anforderung gültig sind.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.CertificateSubjectKeyIdentifierValidator.Validate(System.Object,System.Security.Cryptography.X509Certificates.X509Certificate,System.Security.Cryptography.X509Certificates.X509Chain,System.Net.Security.SslPolicyErrors)">
|
||||
<summary>Überprüft dass SSL-Remotezertifikat (Secure Sockets Layer), das für die Authentifizierung verwendet wird.</summary>
|
||||
<returns>Ein boolescher Wert, der festlegt, ob das angegebene Zertifikat für die Authentifizierung akzeptiert wird.</returns>
|
||||
<param name="sender">Ein Objekt, das Statusinformationen für diese Überprüfung enthält.</param>
|
||||
<param name="certificate">Das Zertifikat, das zum Authentifizieren der Remotepartei verwendet wird.</param>
|
||||
<param name="chain">Die Kette der Zertififizierungsstellen, die dem Remotezertifikat zugeordnet sind.</param>
|
||||
<param name="sslPolicyErrors">Mindestens ein dem Remotezertifikat zugeordneter Fehler.</param>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.Security.CertificateSubjectPublicKeyInfoValidator">
|
||||
<summary>Implementiert eine immer verfügbare Zertifikatüberprüfung, die auf http://datatracker.ietf.org/doc/draft-ietf-websec-key-pinning/?include_text=1 übergeben wird.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.CertificateSubjectPublicKeyInfoValidator.#ctor(System.Collections.Generic.IEnumerable{System.String},Microsoft.Owin.Security.SubjectPublicKeyInfoAlgorithm)">
|
||||
<summary>Initialisiert eine neue Instanz der <see cref="T:Microsoft.Owin.Security.CertificateSubjectPublicKeyInfoValidator" />-Klasse.</summary>
|
||||
<param name="validBase64EncodedSubjectPublicKeyInfoHashes">Eine Auflistung gültiger base64-codierter Hashwerte des Informations-BLOBs für öffentliche Schlüssel des Zertifikats.</param>
|
||||
<param name="algorithm">Der Algorithmus, der zum Generieren der Hashwerte verwendet wird.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.CertificateSubjectPublicKeyInfoValidator.Validate(System.Object,System.Security.Cryptography.X509Certificates.X509Certificate,System.Security.Cryptography.X509Certificates.X509Chain,System.Net.Security.SslPolicyErrors)">
|
||||
<summary>Überprüft, ob mindestens ein SPKI-Hash bekannt ist.</summary>
|
||||
<returns>Ein boolescher Wert, der festlegt, ob das angegebene Zertifikat für die Authentifizierung akzeptiert wird.</returns>
|
||||
<param name="sender">Ein Objekt, das Statusinformationen für diese Überprüfung enthält.</param>
|
||||
<param name="certificate">Das Zertifikat, das zum Authentifizieren der Remotepartei verwendet wird.</param>
|
||||
<param name="chain">Die Kette der Zertififizierungsstellen, die dem Remotezertifikat zugeordnet sind.</param>
|
||||
<param name="sslPolicyErrors">Mindestens ein dem Remotezertifikat zugeordneter Fehler.</param>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.Security.CertificateThumbprintValidator">
|
||||
<summary>Stellt immer verfügbare Zertifikatüberprüfung basierend auf dem Fingerabdruck des Zertifikats zur Verfügung.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.CertificateThumbprintValidator.#ctor(System.Collections.Generic.IEnumerable{System.String})">
|
||||
<summary>Initialisiert eine neue Instanz der <see cref="T:Microsoft.Owin.Security.CertificateThumbprintValidator" />-Klasse.</summary>
|
||||
<param name="validThumbprints">Eine Gruppe von Fingerabdrücken, die für eine HTTPS-Anforderung gültig sind.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.CertificateThumbprintValidator.Validate(System.Object,System.Security.Cryptography.X509Certificates.X509Certificate,System.Security.Cryptography.X509Certificates.X509Chain,System.Net.Security.SslPolicyErrors)">
|
||||
<summary>Überprüft, ob die Zertifikatfingerabdrücke in der Signaturkette mit mindestens einem Fingerabdruck in der Positivliste übereinstimmen.</summary>
|
||||
<returns>Ein boolescher Wert, der festlegt, ob das angegebene Zertifikat für die Authentifizierung akzeptiert wird.</returns>
|
||||
<param name="sender">Ein Objekt, das Statusinformationen für diese Überprüfung enthält.</param>
|
||||
<param name="certificate">Das Zertifikat, das zum Authentifizieren der Remotepartei verwendet wird.</param>
|
||||
<param name="chain">Die Kette der Zertififizierungsstellen, die dem Remotezertifikat zugeordnet sind.</param>
|
||||
<param name="sslPolicyErrors">Mindestens ein dem Remotezertifikat zugeordneter Fehler.</param>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.Security.ICertificateValidator">
|
||||
<summary>Eine Schnittstelle für die Überprüfung immer verfügbarer Zertifikate. Dabei wird die HTTPS-Kommunikation anhand einer Liste zulässiger Zertifikate überprüft, um Schutz vor gefährdeten oder nicht autorisierten Zertifizierungsstellen zu bieten, die Zertifikate für Hosts ohne Kenntnis des Hostbesitzers ausstellen.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.ICertificateValidator.Validate(System.Object,System.Security.Cryptography.X509Certificates.X509Certificate,System.Security.Cryptography.X509Certificates.X509Chain,System.Net.Security.SslPolicyErrors)">
|
||||
<summary>Überprüft dass SSL-Remotezertifikat (Secure Sockets Layer), das für die Authentifizierung verwendet wird.</summary>
|
||||
<returns>Ein boolescher Wert, der festlegt, ob das angegebene Zertifikat für die Authentifizierung akzeptiert wird.</returns>
|
||||
<param name="sender">Ein Objekt, das Statusinformationen für diese Überprüfung enthält.</param>
|
||||
<param name="certificate">Das Zertifikat, das zum Authentifizieren der Remotepartei verwendet wird.</param>
|
||||
<param name="chain">Die Kette der Zertififizierungsstellen, die dem Remotezertifikat zugeordnet sind.</param>
|
||||
<param name="sslPolicyErrors">Mindestens ein dem Remotezertifikat zugeordneter Fehler.</param>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.Security.ISecureDataFormat`1">
|
||||
<summary>Stellt die zu sichernden Daten dar.</summary>
|
||||
<typeparam name="TData">Der generische Datentyp.</typeparam>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.ISecureDataFormat`1.Protect(`0)">
|
||||
<summary>Schützt Daten, damit diese nicht formatiert werden können.</summary>
|
||||
<returns>Die zu schützenden Daten.</returns>
|
||||
<param name="data">Die Daten.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.ISecureDataFormat`1.Unprotect(System.String)">
|
||||
<summary>Entschlüsselt die Daten in einem angegebenen Text.</summary>
|
||||
<returns>Die Daten, die entschlüsselt werden sollen.</returns>
|
||||
<param name="protectedText">Der geschützte Text.</param>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.Security.SubjectPublicKeyInfoAlgorithm">
|
||||
<summary>Der Algorithmus, der zum Generieren der Antragsteller-Blob-Hashes der Informationen öffentlicher Schlüssel verwendet wird.</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.Owin.Security.SubjectPublicKeyInfoAlgorithm.Sha1">
|
||||
<summary />
|
||||
</member>
|
||||
<member name="F:Microsoft.Owin.Security.SubjectPublicKeyInfoAlgorithm.Sha256">
|
||||
<summary />
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.Security.DataHandler.PropertiesDataFormat"></member>
|
||||
<member name="M:Microsoft.Owin.Security.DataHandler.PropertiesDataFormat.#ctor(Microsoft.Owin.Security.DataProtection.IDataProtector)"></member>
|
||||
<member name="T:Microsoft.Owin.Security.DataHandler.SecureDataFormat`1">
|
||||
<typeparam name="TData"></typeparam>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.DataHandler.SecureDataFormat`1.#ctor(Microsoft.Owin.Security.DataHandler.Serializer.IDataSerializer{`0},Microsoft.Owin.Security.DataProtection.IDataProtector,Microsoft.Owin.Security.DataHandler.Encoder.ITextEncoder)"></member>
|
||||
<member name="M:Microsoft.Owin.Security.DataHandler.SecureDataFormat`1.Protect(`0)"></member>
|
||||
<member name="M:Microsoft.Owin.Security.DataHandler.SecureDataFormat`1.Unprotect(System.String)"></member>
|
||||
<member name="T:Microsoft.Owin.Security.DataHandler.TicketDataFormat"></member>
|
||||
<member name="M:Microsoft.Owin.Security.DataHandler.TicketDataFormat.#ctor(Microsoft.Owin.Security.DataProtection.IDataProtector)"></member>
|
||||
<member name="T:Microsoft.Owin.Security.DataHandler.Encoder.Base64TextEncoder">
|
||||
<summary>Stellt einen Textcodierer für das Format base64 dar.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.DataHandler.Encoder.Base64TextEncoder.#ctor">
|
||||
<summary>Initialisiert eine neue Instanz der <see cref="T:Microsoft.Owin.Security.DataHandler.Encoder.Base64TextEncoder" />-Klasse.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.DataHandler.Encoder.Base64TextEncoder.Decode(System.String)">
|
||||
<summary>Decodiert den angegebenen Text.</summary>
|
||||
<returns>Ein <see cref="T:System.Byte" />-Objekt, das die decodierten Daten darstellt.</returns>
|
||||
<param name="text">Der zu decodierende Text.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.DataHandler.Encoder.Base64TextEncoder.Encode(System.Byte[])">
|
||||
<summary>Konvertiert Daten in eine Zeichenfolge im Format base64.</summary>
|
||||
<returns>Gibt eine Zeichenfolge von Daten zurück, die in das Format base64 konvertiert wurden.</returns>
|
||||
<param name="data">Die zu konvertierenden Daten.</param>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.Security.DataHandler.Encoder.Base64UrlTextEncoder">
|
||||
<summary>Stellt einen Textcodierer für das Format Base64Url dar.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.DataHandler.Encoder.Base64UrlTextEncoder.#ctor">
|
||||
<summary>Initialisiert eine neue Instanz der <see cref="T:Microsoft.Owin.Security.DataHandler.Encoder.Base64UrlTextEncoder" />-Klasse.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.DataHandler.Encoder.Base64UrlTextEncoder.Decode(System.String)">
|
||||
<summary>Decodiert den angegebenen Text.</summary>
|
||||
<returns>Ein <see cref="T:System.Byte" />-Objekt, das die decodierten Daten darstellt.</returns>
|
||||
<param name="text">Der zu decodierende Text.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.DataHandler.Encoder.Base64UrlTextEncoder.Encode(System.Byte[])">
|
||||
<summary>Konvertiert Daten in eine Zeichenfolge im Format Base64Url.</summary>
|
||||
<returns>Gibt eine Zeichenfolge von Daten zurück, die in das Format Base64Url konvertiert wurden.</returns>
|
||||
<param name="data">Die zu konvertierenden Daten.</param>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.Security.DataHandler.Encoder.ITextEncoder">
|
||||
<summary>Stellt eine Schnittstelle für den Textcodierer dar.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.DataHandler.Encoder.ITextEncoder.Decode(System.String)">
|
||||
<summary>Decodiert den angegebenen Text.</summary>
|
||||
<returns>Ein <see cref="T:System.Byte" />-Objekt, das die decodierten Daten darstellt.</returns>
|
||||
<param name="text">Der zu decodierende Text.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.DataHandler.Encoder.ITextEncoder.Encode(System.Byte[])">
|
||||
<summary>Konvertiert Daten in eine Zeichenfolge.</summary>
|
||||
<returns>Eine Zeichenfolge der konvertierten Daten.</returns>
|
||||
<param name="data">Die zu konvertierenden Daten.</param>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.Security.DataHandler.Encoder.TextEncodings">
|
||||
<summary>Stellt ein Textcodierungen dar.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.Security.DataHandler.Encoder.TextEncodings.Base64">
|
||||
<summary>Ruft einen Base64-Textcodierer ab.</summary>
|
||||
<returns>Ein Base64-Textcodierer.</returns>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.Security.DataHandler.Encoder.TextEncodings.Base64Url">
|
||||
<summary>Ruft einen Base64Url-Textcodierer ab.</summary>
|
||||
<returns>Ein Base64Url-Textcodierer.</returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.Security.DataHandler.Serializer.DataSerializers">
|
||||
<summary>Stellt Datenserialisierer zur Verfügung.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.Security.DataHandler.Serializer.DataSerializers.Properties"></member>
|
||||
<member name="P:Microsoft.Owin.Security.DataHandler.Serializer.DataSerializers.Ticket">
|
||||
<summary>Ruft den Ticketdatenserialisierer ab bzw. legt diesen fest.</summary>
|
||||
<returns>Der Ticketdatenserialisierer.</returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.Security.DataHandler.Serializer.IDataSerializer`1">
|
||||
<summary>Stellt eine Schnittstelle für einen Datenserialisierer dar.</summary>
|
||||
<typeparam name="TModel">Der Typ des Modells für die Daten.</typeparam>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.DataHandler.Serializer.IDataSerializer`1.Deserialize(System.Byte[])">
|
||||
<summary>Deserialisiert die angegebenen Daten.</summary>
|
||||
<param name="data">Die zu deserialisierenden Daten.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.DataHandler.Serializer.IDataSerializer`1.Serialize(`0)">
|
||||
<summary>Serialisiert Daten mit einem angegebenen Modell.</summary>
|
||||
<param name="model">Das Datenmodell.</param>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.Security.DataHandler.Serializer.PropertiesSerializer"></member>
|
||||
<member name="M:Microsoft.Owin.Security.DataHandler.Serializer.PropertiesSerializer.#ctor"></member>
|
||||
<member name="M:Microsoft.Owin.Security.DataHandler.Serializer.PropertiesSerializer.Deserialize(System.Byte[])"></member>
|
||||
<member name="M:Microsoft.Owin.Security.DataHandler.Serializer.PropertiesSerializer.Read(System.IO.BinaryReader)"></member>
|
||||
<member name="M:Microsoft.Owin.Security.DataHandler.Serializer.PropertiesSerializer.Serialize(Microsoft.Owin.Security.AuthenticationProperties)"></member>
|
||||
<member name="M:Microsoft.Owin.Security.DataHandler.Serializer.PropertiesSerializer.Write(System.IO.BinaryWriter,Microsoft.Owin.Security.AuthenticationProperties)"></member>
|
||||
<member name="T:Microsoft.Owin.Security.DataHandler.Serializer.TicketSerializer">
|
||||
<summary>Stellt einen Ticketserialisierer dar.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.DataHandler.Serializer.TicketSerializer.#ctor">
|
||||
<summary>Initialisiert eine neue Instanz der <see cref="T:Microsoft.Owin.Security.DataHandler.Serializer.TicketSerializer" />-Klasse.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.DataHandler.Serializer.TicketSerializer.Deserialize(System.Byte[])">
|
||||
<summary>Deserialisiert die Ticketdaten.</summary>
|
||||
<returns>Die Daten, die aktuell deserialisiert werden.</returns>
|
||||
<param name="data">Die zu deserialisierenden Daten.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.DataHandler.Serializer.TicketSerializer.Read(System.IO.BinaryReader)">
|
||||
<summary>Liest die angegebenen Daten aus dem Reader.</summary>
|
||||
<returns>Die Daten, die aktuell gelesen werden.</returns>
|
||||
<param name="reader">Der Reader, aus dem gelesen werden soll.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.DataHandler.Serializer.TicketSerializer.Serialize(Microsoft.Owin.Security.AuthenticationTicket)">
|
||||
<summary>Serialisiert Daten mit einem angegebenen Modell.</summary>
|
||||
<param name="model">Das Datenmodell.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.DataHandler.Serializer.TicketSerializer.Write(System.IO.BinaryWriter,Microsoft.Owin.Security.AuthenticationTicket)">
|
||||
<summary>Schreibt Daten aus dem angegebenen Writer.</summary>
|
||||
<param name="writer">Der Writer.</param>
|
||||
<param name="model">Das Datenmodell.</param>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.Security.DataProtection.AppBuilderExtensions">
|
||||
<summary>Die Erweiterungen des Anwendungsbuilders.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.DataProtection.AppBuilderExtensions.CreateDataProtector(Owin.IAppBuilder,System.String[])">
|
||||
<summary>Erstellt ein Datenschutzmodul.</summary>
|
||||
<returns>Das erstellte <see cref="T:Microsoft.Owin.Security.DataProtection.IDataProtector" />-Objekt.</returns>
|
||||
<param name="app">Der Anwendungsbuilder.</param>
|
||||
<param name="purposes">Eine Liste von Zwecken für das Erstellen des Datenschutzmoduls.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.DataProtection.AppBuilderExtensions.GetDataProtectionProvider(Owin.IAppBuilder)">
|
||||
<summary>Ruft einen Datenschutzanbieter für die Anwendung ab.</summary>
|
||||
<returns>Das abzurufende <see cref="T:Microsoft.Owin.Security.DataProtection.IDataProtectionProvider" />-Objekt.</returns>
|
||||
<param name="app">Der Anwendungsbuilder.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.DataProtection.AppBuilderExtensions.SetDataProtectionProvider(Owin.IAppBuilder,Microsoft.Owin.Security.DataProtection.IDataProtectionProvider)">
|
||||
<summary>Legt einen Datenschutzanbieter fest.</summary>
|
||||
<param name="app">Der Anwendungsbuilder.</param>
|
||||
<param name="dataProtectionProvider">Der festzulegende Datenschutzanbieter.</param>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.Security.DataProtection.DpapiDataProtectionProvider">
|
||||
<summary>Wird zum Bereitstellen der Datenschutzdienste verwendet, die aus der Datenschutz-API abgeleitet werden.Dies stellt die beste Wahl hinsichtlich des Datenschutzes dar, wenn Ihre Anwendung nicht von ASP.NET gehostet wird und alle Prozesse als die gleiche Domänenidentität ausgeführt werden.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.DataProtection.DpapiDataProtectionProvider.#ctor">
|
||||
<summary>Initialisiert einen neuen DpapiDataProtectionProvider mit einem zufälligen Anwendungsnamen.Dies ist nur sinnvoll, um Daten für die Dauer der Ausführung der aktuellen Anwendung zu schützen.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.DataProtection.DpapiDataProtectionProvider.#ctor(System.String)">
|
||||
<summary>Initialisiert einen neuen DpapiDataProtectionProvider, der den angegebenen appName als Teil des Schutzalgorithmus verwendet.</summary>
|
||||
<param name="appName">Ein vom Benutzer bereitgestellter Wert, der für den Roundtripvorgang gesicherter Daten erforderlich ist.Der Wert stammt bei Selbsthosting aus IAppBuilder.Properties["owin.AppName"].</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.DataProtection.DpapiDataProtectionProvider.Create(System.String[])">
|
||||
<summary>Gibt eine neue Instanz von IDataProtection für die den Anbieter zurück.</summary>
|
||||
<returns>Eine Instanz eines Datenschutzdiensts.</returns>
|
||||
<param name="purposes">Eine zusätzliche Entropie, die die sicherstellt, dass der Schutz geschützter Daten nur aus den richtigen Gründen aufgehoben werden kann.</param>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.Security.DataProtection.IDataProtectionProvider">
|
||||
<summary> Eine Factory, die zum Erstellen von IDataProtection-Instanzen verwendet wird.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.DataProtection.IDataProtectionProvider.Create(System.String[])">
|
||||
<summary> Gibt eine neue Instanz von IDataProtection für die den Anbieter zurück. </summary>
|
||||
<returns>Eine Instanz eines Datenschutzdiensts.</returns>
|
||||
<param name="purposes">Eine zusätzliche Entropie, die die sicherstellt, dass der Schutz geschützter Daten nur aus den richtigen Gründen aufgehoben werden kann.</param>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.Security.DataProtection.IDataProtector">
|
||||
<summary> Ein Dienst, der zum Schützen sowie zum Aufheben des Schutzes von Daten verwendet wird.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.DataProtection.IDataProtector.Protect(System.Byte[])">
|
||||
<summary> Wird zum Schützen von Benutzerdaten aufgerufen.</summary>
|
||||
<param name="userData">Die ursprünglichen Daten, die geschützt werden müssen.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.DataProtection.IDataProtector.Unprotect(System.Byte[])">
|
||||
<summary> Wird zum Aufheben des Schutzes von Daten aufgerufen.</summary>
|
||||
<param name="protectedData">Das Bytearray, das von einem Aufruf von Protect für einen identischen IDataProtection-Dienst zurückgegeben wird.</param>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.Security.Infrastructure.AuthenticationHandler">
|
||||
<summary> Die Basisklasse für die pro Anforderung von fast jeder Authentifizierungsmiddleware ausgeführten Vorgänge. </summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.Infrastructure.AuthenticationHandler.#ctor">
|
||||
<summary>Initialisiert eine neue Instanz der <see cref="T:Microsoft.Owin.Security.Infrastructure.AuthenticationHandler" />-Klasse.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.Infrastructure.AuthenticationHandler.ApplyResponseChallengeAsync">
|
||||
<summary>Diese Methode überschreiben, um 401-Aufforderungsaspekte zu verarbeiten, wenn ein betroffenes Authentifizierungsschema eine Authentifizierungsinteraktion als Teil des Anforderungsflusses behandelt.(wie das Hinzufügen eines Antwortheaders oder das Ändern des 401-Ergebnisses einer Anmeldeseite oder eines externen Anmeldeorts in 302.)</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.Infrastructure.AuthenticationHandler.ApplyResponseCoreAsync">
|
||||
<summary>Kernmethode, die ggf. vom Handler überschrieben wird.Das Standardverhalten besteht darin, zwei allgemeine Reaktionsaktivitäten aufzurufen, eine für das Verarbeiten der Anmelde-/Abmeldeaspekte, das zweite zur Verarbeitung der 401-Aufforderungen.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.Infrastructure.AuthenticationHandler.ApplyResponseGrantAsync">
|
||||
<summary>Diese Methode überschreiben, um Anmelde-/Abmeldeaspekte zu verarbeiten, wenn ein betroffenes Authentifizierungsschema das Gewähren/Widerrufen als Teil des Anforderungsflusses behandelt.(wie das Festlegen/Löschen von Cookies)</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.Infrastructure.AuthenticationHandler.AuthenticateAsync">
|
||||
<summary>Bewirkt, dass die Authentifizierungslogik im AuthenticateCore für die aktuelle Anforderung höchstens einmal ausgeführt wird, und gibt die Ergebnisse zurück.Das mehrmalige Aufrufen von Authenticate wird immer den ursprünglichen Wert zurückgeben.Diese Methode sollte immer aufgerufen werden anstatt AuthenticateCore direkt aufzurufen.</summary>
|
||||
<returns>Die von der Authentifizierungslogik bereitgestellten Ticketdaten.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.Infrastructure.AuthenticationHandler.AuthenticateCoreAsync">
|
||||
<summary>Die Kernauthentifizierungslogik, die vom Handler bereitgestellt werden muss.Wird höchstens einmal pro Anforderung aufgerufen.Rufen Sie sie nicht direkt auf, rufen Sie stattdessen die "Umbruchmethode" Authenticate auf.</summary>
|
||||
<returns>Die von der Authentifizierungslogik bereitgestellten Ticketdaten.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.Infrastructure.AuthenticationHandler.BaseInitializeAsync(Microsoft.Owin.Security.AuthenticationOptions,Microsoft.Owin.IOwinContext)"></member>
|
||||
<member name="P:Microsoft.Owin.Security.Infrastructure.AuthenticationHandler.Context"></member>
|
||||
<member name="M:Microsoft.Owin.Security.Infrastructure.AuthenticationHandler.GenerateCorrelationId(Microsoft.Owin.Security.AuthenticationProperties)"></member>
|
||||
<member name="P:Microsoft.Owin.Security.Infrastructure.AuthenticationHandler.Helper"></member>
|
||||
<member name="M:Microsoft.Owin.Security.Infrastructure.AuthenticationHandler.InitializeCoreAsync"></member>
|
||||
<member name="M:Microsoft.Owin.Security.Infrastructure.AuthenticationHandler.InvokeAsync">
|
||||
<summary>Wird einmal nach der Initialisierung vom allgemeinen Code aufgerufen.Wenn eine Authentifizierungs-Middleware direkt auf spezielle, bekannte Pfade antwortet, muss sie dies virtuell überschreiben, den Anforderungspfad mit ihren bekannten Pfaden vergleichen, ggf. Antwortinformationen und "True" bereitstellen, um eine weitere Bearbeitung zu beenden.</summary>
|
||||
<returns>Das Zurückgeben von false bewirkt, dass der allgemeine Code die nächste Middleware aufruft.Das Zurückgeben von true bewirkt, dass der allgemeine Code den asynchronen Abschlussvorgang beginnt, ohne den Rest der Middlewarepipeline aufzurufen.</returns>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.Security.Infrastructure.AuthenticationHandler.Request"></member>
|
||||
<member name="P:Microsoft.Owin.Security.Infrastructure.AuthenticationHandler.RequestPathBase"></member>
|
||||
<member name="P:Microsoft.Owin.Security.Infrastructure.AuthenticationHandler.Response"></member>
|
||||
<member name="M:Microsoft.Owin.Security.Infrastructure.AuthenticationHandler.TeardownCoreAsync"></member>
|
||||
<member name="M:Microsoft.Owin.Security.Infrastructure.AuthenticationHandler.ValidateCorrelationId(Microsoft.Owin.Security.AuthenticationProperties,Microsoft.Owin.Logging.ILogger)"></member>
|
||||
<member name="T:Microsoft.Owin.Security.Infrastructure.AuthenticationHandler`1">
|
||||
<summary>Die Basisklasse für die pro Anforderung von fast jeder Authentifizierungsmiddleware ausgeführten Vorgänge.</summary>
|
||||
<typeparam name="TOptions">Gibt den Typ der Eigenschaft AuthenticationOptions an.</typeparam>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.Infrastructure.AuthenticationHandler`1.#ctor">
|
||||
<summary>Initialisiert eine neue Instanz der <see cref="T:Microsoft.Owin.Security.Infrastructure.AuthenticationHandler`1" />-Klasse.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.Security.Infrastructure.AuthenticationHandler`1.Options"></member>
|
||||
<member name="T:Microsoft.Owin.Security.Infrastructure.AuthenticationMiddleware`1">
|
||||
<summary>Stellt eine Authentifizierung-Middleware dar.</summary>
|
||||
<typeparam name="TOptions">Der Typ der Authentifizierungsoptionen.</typeparam>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.Infrastructure.AuthenticationMiddleware`1.#ctor(Microsoft.Owin.OwinMiddleware,`0)">
|
||||
<summary>Initialisiert eine neue Instanz der <see cref="T:Microsoft.Owin.Security.Infrastructure.AuthenticationMiddleware`1" />-Klasse.</summary>
|
||||
<param name="next">Die nächste OWIN-Middleware.</param>
|
||||
<param name="options">Die Authentifizierungsoptionen.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.Infrastructure.AuthenticationMiddleware`1.CreateHandler">
|
||||
<summary>Erstellt einen Authentifizierungshandler.</summary>
|
||||
<returns>Das erstellte <see cref="T:Microsoft.Owin.Security.Infrastructure.AuthenticationHandler`1" />-Objekt.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.Infrastructure.AuthenticationMiddleware`1.Invoke(Microsoft.Owin.IOwinContext)"></member>
|
||||
<member name="P:Microsoft.Owin.Security.Infrastructure.AuthenticationMiddleware`1.Options">
|
||||
<summary>Ruft die Authentifizierungsoptionen ab bzw. legt diese fest.</summary>
|
||||
<returns>Der Task, der die Authentifizierung abschließt.</returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.Security.Infrastructure.AuthenticationTokenCreateContext"></member>
|
||||
<member name="M:Microsoft.Owin.Security.Infrastructure.AuthenticationTokenCreateContext.#ctor(Microsoft.Owin.IOwinContext,Microsoft.Owin.Security.ISecureDataFormat{Microsoft.Owin.Security.AuthenticationTicket},Microsoft.Owin.Security.AuthenticationTicket)"></member>
|
||||
<member name="M:Microsoft.Owin.Security.Infrastructure.AuthenticationTokenCreateContext.SerializeTicket"></member>
|
||||
<member name="M:Microsoft.Owin.Security.Infrastructure.AuthenticationTokenCreateContext.SetToken(System.String)"></member>
|
||||
<member name="P:Microsoft.Owin.Security.Infrastructure.AuthenticationTokenCreateContext.Ticket"></member>
|
||||
<member name="P:Microsoft.Owin.Security.Infrastructure.AuthenticationTokenCreateContext.Token"></member>
|
||||
<member name="T:Microsoft.Owin.Security.Infrastructure.AuthenticationTokenProvider"></member>
|
||||
<member name="M:Microsoft.Owin.Security.Infrastructure.AuthenticationTokenProvider.#ctor"></member>
|
||||
<member name="M:Microsoft.Owin.Security.Infrastructure.AuthenticationTokenProvider.Create(Microsoft.Owin.Security.Infrastructure.AuthenticationTokenCreateContext)"></member>
|
||||
<member name="M:Microsoft.Owin.Security.Infrastructure.AuthenticationTokenProvider.CreateAsync(Microsoft.Owin.Security.Infrastructure.AuthenticationTokenCreateContext)"></member>
|
||||
<member name="P:Microsoft.Owin.Security.Infrastructure.AuthenticationTokenProvider.OnCreate"></member>
|
||||
<member name="P:Microsoft.Owin.Security.Infrastructure.AuthenticationTokenProvider.OnCreateAsync"></member>
|
||||
<member name="P:Microsoft.Owin.Security.Infrastructure.AuthenticationTokenProvider.OnReceive"></member>
|
||||
<member name="P:Microsoft.Owin.Security.Infrastructure.AuthenticationTokenProvider.OnReceiveAsync"></member>
|
||||
<member name="M:Microsoft.Owin.Security.Infrastructure.AuthenticationTokenProvider.Receive(Microsoft.Owin.Security.Infrastructure.AuthenticationTokenReceiveContext)"></member>
|
||||
<member name="M:Microsoft.Owin.Security.Infrastructure.AuthenticationTokenProvider.ReceiveAsync(Microsoft.Owin.Security.Infrastructure.AuthenticationTokenReceiveContext)"></member>
|
||||
<member name="T:Microsoft.Owin.Security.Infrastructure.AuthenticationTokenReceiveContext"></member>
|
||||
<member name="M:Microsoft.Owin.Security.Infrastructure.AuthenticationTokenReceiveContext.#ctor(Microsoft.Owin.IOwinContext,Microsoft.Owin.Security.ISecureDataFormat{Microsoft.Owin.Security.AuthenticationTicket},System.String)"></member>
|
||||
<member name="M:Microsoft.Owin.Security.Infrastructure.AuthenticationTokenReceiveContext.DeserializeTicket(System.String)"></member>
|
||||
<member name="M:Microsoft.Owin.Security.Infrastructure.AuthenticationTokenReceiveContext.SetTicket(Microsoft.Owin.Security.AuthenticationTicket)"></member>
|
||||
<member name="P:Microsoft.Owin.Security.Infrastructure.AuthenticationTokenReceiveContext.Ticket"></member>
|
||||
<member name="P:Microsoft.Owin.Security.Infrastructure.AuthenticationTokenReceiveContext.Token"></member>
|
||||
<member name="T:Microsoft.Owin.Security.Infrastructure.IAuthenticationTokenProvider"></member>
|
||||
<member name="M:Microsoft.Owin.Security.Infrastructure.IAuthenticationTokenProvider.Create(Microsoft.Owin.Security.Infrastructure.AuthenticationTokenCreateContext)"></member>
|
||||
<member name="M:Microsoft.Owin.Security.Infrastructure.IAuthenticationTokenProvider.CreateAsync(Microsoft.Owin.Security.Infrastructure.AuthenticationTokenCreateContext)"></member>
|
||||
<member name="M:Microsoft.Owin.Security.Infrastructure.IAuthenticationTokenProvider.Receive(Microsoft.Owin.Security.Infrastructure.AuthenticationTokenReceiveContext)"></member>
|
||||
<member name="M:Microsoft.Owin.Security.Infrastructure.IAuthenticationTokenProvider.ReceiveAsync(Microsoft.Owin.Security.Infrastructure.AuthenticationTokenReceiveContext)"></member>
|
||||
<member name="T:Microsoft.Owin.Security.Infrastructure.SecurityHelper">
|
||||
<summary>Hilfscode, der beim Implementieren der Authentifizierungsmiddleware verwendet wird.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.Infrastructure.SecurityHelper.#ctor(Microsoft.Owin.IOwinContext)">
|
||||
<summary>Hilfscode, der beim Implementieren der Authentifizierungsmiddleware verwendet wird.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.Infrastructure.SecurityHelper.AddUserIdentity(System.Security.Principal.IIdentity)">
|
||||
<summary>Fügt dem ClaimsPrincipal im Umgebungsschlüssel server.User eine zusätzliche ClaimsIdentity hinzu.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.Infrastructure.SecurityHelper.Equals(Microsoft.Owin.Security.Infrastructure.SecurityHelper)"></member>
|
||||
<member name="M:Microsoft.Owin.Security.Infrastructure.SecurityHelper.Equals(System.Object)"></member>
|
||||
<member name="M:Microsoft.Owin.Security.Infrastructure.SecurityHelper.GetHashCode"></member>
|
||||
<member name="M:Microsoft.Owin.Security.Infrastructure.SecurityHelper.LookupChallenge(System.String,Microsoft.Owin.Security.AuthenticationMode)">
|
||||
<summary>Sucht nach Antwortaufforderungsdetails für eine bestimmte Authentifizierungsmiddleware.</summary>
|
||||
<returns>Die Informationen, die die Middleware anweisen, welches Verhalten verwendet werden soll.</returns>
|
||||
<param name="authenticationType">Der Authentifizierungstyp, nach dem gesucht werden soll.</param>
|
||||
<param name="authenticationMode">Der Authentifizierungsmodus, unter dem die Middleware ausgeführt wird.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.Infrastructure.SecurityHelper.LookupSignIn(System.String)">
|
||||
<summary>Sucht nach Anmeldeantwortdetails für eine bestimmte Authentifizierungsmiddleware.</summary>
|
||||
<returns>Die Informationen, die die Middleware anweisen, welches Verhalten verwendet werden soll.</returns>
|
||||
<param name="authenticationType">Der Authentifizierungstyp, nach dem gesucht werden soll.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.Infrastructure.SecurityHelper.LookupSignOut(System.String,Microsoft.Owin.Security.AuthenticationMode)">
|
||||
<summary>Sucht nach Abmeldeantwortdetails für eine bestimmte Authentifizierungsmiddleware.</summary>
|
||||
<returns>Die Informationen, die die Middleware anweisen, welches Verhalten verwendet werden soll.</returns>
|
||||
<param name="authenticationType">Der Authentifizierungstyp, nach dem gesucht werden soll.</param>
|
||||
<param name="authenticationMode">Der Authentifizierungsmodus, unter dem die Middleware ausgeführt wird.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.Infrastructure.SecurityHelper.op_Equality(Microsoft.Owin.Security.Infrastructure.SecurityHelper,Microsoft.Owin.Security.Infrastructure.SecurityHelper)"></member>
|
||||
<member name="M:Microsoft.Owin.Security.Infrastructure.SecurityHelper.op_Inequality(Microsoft.Owin.Security.Infrastructure.SecurityHelper,Microsoft.Owin.Security.Infrastructure.SecurityHelper)"></member>
|
||||
<member name="T:Microsoft.Owin.Security.Notifications.AuthenticationFailedNotification`2">
|
||||
<typeparam name="TMessage"></typeparam>
|
||||
<typeparam name="TOptions"></typeparam>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.Notifications.AuthenticationFailedNotification`2.#ctor(Microsoft.Owin.IOwinContext,`1)"></member>
|
||||
<member name="P:Microsoft.Owin.Security.Notifications.AuthenticationFailedNotification`2.Exception"></member>
|
||||
<member name="P:Microsoft.Owin.Security.Notifications.AuthenticationFailedNotification`2.ProtocolMessage"></member>
|
||||
<member name="T:Microsoft.Owin.Security.Notifications.BaseNotification`1">
|
||||
<typeparam name="TOptions"></typeparam>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.Notifications.BaseNotification`1.#ctor(Microsoft.Owin.IOwinContext,`0)"></member>
|
||||
<member name="P:Microsoft.Owin.Security.Notifications.BaseNotification`1.HandledResponse"></member>
|
||||
<member name="M:Microsoft.Owin.Security.Notifications.BaseNotification`1.HandleResponse">
|
||||
<summary>Stellt jegliche Verarbeitung für diese Anforderung ein und kehrt zum Client zurück.Der Aufrufer ist dafür verantwortlich, die vollständige Antwort zu generieren.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.Security.Notifications.BaseNotification`1.Skipped"></member>
|
||||
<member name="M:Microsoft.Owin.Security.Notifications.BaseNotification`1.SkipToNextMiddleware">
|
||||
<summary>Stellt die Verarbeitung der Anforderung in der aktuellen Middleware ein und übergibt die Steuerung an die nächste Middleware.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.Security.Notifications.BaseNotification`1.State"></member>
|
||||
<member name="T:Microsoft.Owin.Security.Notifications.MessageReceivedNotification`2">
|
||||
<typeparam name="TMessage"></typeparam>
|
||||
<typeparam name="TOptions"></typeparam>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.Notifications.MessageReceivedNotification`2.#ctor(Microsoft.Owin.IOwinContext,`1)"></member>
|
||||
<member name="P:Microsoft.Owin.Security.Notifications.MessageReceivedNotification`2.ProtocolMessage"></member>
|
||||
<member name="T:Microsoft.Owin.Security.Notifications.NotificationResultState"></member>
|
||||
<member name="F:Microsoft.Owin.Security.Notifications.NotificationResultState.Continue">
|
||||
<summary>Setzt die normale Verarbeitung fort.</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.Owin.Security.Notifications.NotificationResultState.HandledResponse">
|
||||
<summary>Stellt die gesamte Verarbeitung für diese Anforderungen ein.</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.Owin.Security.Notifications.NotificationResultState.Skipped">
|
||||
<summary>Stellt die Verarbeitung der Anforderung in der aktuellen Middleware ein und übergibt die Steuerung an die nächste Middleware.</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.Security.Notifications.RedirectToIdentityProviderNotification`2">
|
||||
<typeparam name="TMessage"></typeparam>
|
||||
<typeparam name="TOptions"></typeparam>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.Notifications.RedirectToIdentityProviderNotification`2.#ctor(Microsoft.Owin.IOwinContext,`1)"></member>
|
||||
<member name="P:Microsoft.Owin.Security.Notifications.RedirectToIdentityProviderNotification`2.HandledResponse"></member>
|
||||
<member name="M:Microsoft.Owin.Security.Notifications.RedirectToIdentityProviderNotification`2.HandleResponse">
|
||||
<summary>Stellt jegliche Verarbeitung für diese Anforderung ein und kehrt zum Client zurück.Der Aufrufer ist dafür verantwortlich, die vollständige Antwort zu generieren.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.Security.Notifications.RedirectToIdentityProviderNotification`2.ProtocolMessage"></member>
|
||||
<member name="P:Microsoft.Owin.Security.Notifications.RedirectToIdentityProviderNotification`2.State"></member>
|
||||
<member name="T:Microsoft.Owin.Security.Notifications.SecurityTokenReceivedNotification`2">
|
||||
<typeparam name="TMessage"></typeparam>
|
||||
<typeparam name="TOptions"></typeparam>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.Notifications.SecurityTokenReceivedNotification`2.#ctor(Microsoft.Owin.IOwinContext,`1)"></member>
|
||||
<member name="P:Microsoft.Owin.Security.Notifications.SecurityTokenReceivedNotification`2.ProtocolMessage"></member>
|
||||
<member name="T:Microsoft.Owin.Security.Notifications.SecurityTokenValidatedNotification`2">
|
||||
<typeparam name="TMessage"></typeparam>
|
||||
<typeparam name="TOptions"></typeparam>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.Notifications.SecurityTokenValidatedNotification`2.#ctor(Microsoft.Owin.IOwinContext,`1)"></member>
|
||||
<member name="P:Microsoft.Owin.Security.Notifications.SecurityTokenValidatedNotification`2.AuthenticationTicket">
|
||||
<summary>Ruft das <see cref="P:Microsoft.Owin.Security.Notifications.SecurityTokenValidatedNotification`2.AuthenticationTicket" /> ab oder legt dieses fest.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.Security.Notifications.SecurityTokenValidatedNotification`2.ProtocolMessage">
|
||||
<summary>Ruft die Protocol-Nachricht ab bzw. legt sie fest.</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.Security.Provider.BaseContext">
|
||||
<summary>Stellt den Basiskontext dar.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.Provider.BaseContext.#ctor(Microsoft.Owin.IOwinContext)"></member>
|
||||
<member name="P:Microsoft.Owin.Security.Provider.BaseContext.OwinContext"></member>
|
||||
<member name="P:Microsoft.Owin.Security.Provider.BaseContext.Request"></member>
|
||||
<member name="P:Microsoft.Owin.Security.Provider.BaseContext.Response"></member>
|
||||
<member name="T:Microsoft.Owin.Security.Provider.BaseContext`1">
|
||||
<summary>Die Basisklasse, die für bestimmte Ereigniskontexte verwendet wird.</summary>
|
||||
<typeparam name="TOptions"></typeparam>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.Provider.BaseContext`1.#ctor(Microsoft.Owin.IOwinContext,`0)"></member>
|
||||
<member name="P:Microsoft.Owin.Security.Provider.BaseContext`1.Options"></member>
|
||||
<member name="P:Microsoft.Owin.Security.Provider.BaseContext`1.OwinContext"></member>
|
||||
<member name="P:Microsoft.Owin.Security.Provider.BaseContext`1.Request"></member>
|
||||
<member name="P:Microsoft.Owin.Security.Provider.BaseContext`1.Response"></member>
|
||||
<member name="T:Microsoft.Owin.Security.Provider.EndpointContext">
|
||||
<summary>Stellt einen Endpunktkontext dar.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.Provider.EndpointContext.#ctor(Microsoft.Owin.IOwinContext)"></member>
|
||||
<member name="P:Microsoft.Owin.Security.Provider.EndpointContext.IsRequestCompleted">
|
||||
<summary>Ruft einen Wert ab, der angibt, ob die Anforderung für diesen Kontext abgeschlossen ist, oder legt diesen Wert fest.</summary>
|
||||
<returns>true, wenn die Anforderung für diesen Kontext abgeschlossen ist, andernfalls false.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.Provider.EndpointContext.RequestCompleted">
|
||||
<summary>Gibt die abgeschlossene Anforderung für den Kontext an.</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.Security.Provider.EndpointContext`1">
|
||||
<summary>Die Basisklasse, die für bestimmte Ereigniskontexte verwendet wird.</summary>
|
||||
<typeparam name="TOptions"></typeparam>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.Provider.EndpointContext`1.#ctor(Microsoft.Owin.IOwinContext,`0)">
|
||||
<summary>Erstellt eine Instanz dieses Kontexts.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.Security.Provider.EndpointContext`1.IsRequestCompleted">
|
||||
<summary>true, wenn die Anforderung von anderen Komponenten nicht weiter verarbeitet werden soll.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.Provider.EndpointContext`1.RequestCompleted">
|
||||
<summary>Verhindert, dass die Anforderung von anderen Komponenten weiter verarbeitet wird.IsRequestCompleted erhält nach dem Aufruf den Wert true.</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Owin.Security.Provider.ReturnEndpointContext">
|
||||
<summary>Stellt den Rückgabeendpunktkontext dar.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Owin.Security.Provider.ReturnEndpointContext.#ctor(Microsoft.Owin.IOwinContext,Microsoft.Owin.Security.AuthenticationTicket)"></member>
|
||||
<member name="P:Microsoft.Owin.Security.Provider.ReturnEndpointContext.Identity">
|
||||
<summary>Ruft die Identität dieses Kontexts ab bzw. legt sie fest.</summary>
|
||||
<returns>Die Identität dieses Kontexts.</returns>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.Security.Provider.ReturnEndpointContext.Properties"></member>
|
||||
<member name="P:Microsoft.Owin.Security.Provider.ReturnEndpointContext.RedirectUri">
|
||||
<summary>Ruft den URI ab bzw. legt den URI fest, der bei der Rückgabe dieses Kontexts verwendet werden soll.</summary>
|
||||
<returns>Die URL, die bei der Rückgabe dieses Kontexts verwendet werden soll.</returns>
|
||||
</member>
|
||||
<member name="P:Microsoft.Owin.Security.Provider.ReturnEndpointContext.SignInAsAuthenticationType">
|
||||
<summary>Ruft den Kontext ab bzw. legt den Kontext fest, der als Authentifizierungstyp angemeldet wird.</summary>
|
||||
<returns>Der Kontext, der als Authentifizierungstyp angemeldet wird.</returns>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
Reference in New Issue
Block a user