Package system.web.security
Class FormsAuthentication
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- system.web.security.FormsAuthentication
-
- All Implemented Interfaces:
IJCOBridgeReflected
public class FormsAuthentication extends NetObject
The base .NET class managing System.Web.Security.FormsAuthentication, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Web.Security.FormsAuthentication
Powered by JCOBridge: more info at https://www.jcobridge.com
- Author:
- MASES s.r.l https://masesgroup.com
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
assemblyFullName
Fully assembly qualified name: System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3astatic java.lang.String
assemblyShortName
Assembly name: System.Webstatic java.lang.String
className
Qualified class name: System.Web.Security.FormsAuthenticationstatic JCType
classType
The type managed from JCOBridge.
-
Constructor Summary
Constructors Constructor Description FormsAuthentication()
FormsAuthentication(java.lang.Object instance)
Internal constructor.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static boolean
Authenticate(java.lang.String name, java.lang.String password)
static FormsAuthentication
cast(IJCOBridgeReflected from)
Try to cast theIJCOBridgeReflected
instance intoFormsAuthentication
, a cast assert is made to check if types are compatible.static FormsAuthenticationTicket
Decrypt(java.lang.String encryptedTicket)
static void
EnableFormsAuthentication(NameValueCollection configurationData)
static java.lang.String
Encrypt(FormsAuthenticationTicket ticket)
static HttpCookie
GetAuthCookie(java.lang.String userName, boolean createPersistentCookie)
static HttpCookie
GetAuthCookie(java.lang.String userName, boolean createPersistentCookie, java.lang.String strCookiePath)
static java.lang.String
getCookieDomain()
static HttpCookieMode
getCookieMode()
static SameSiteMode
getCookieSameSite()
static boolean
getCookiesSupported()
static java.lang.String
getDefaultUrl()
static boolean
getEnableCrossAppRedirects()
static java.lang.String
getFormsCookieName()
static java.lang.String
getFormsCookiePath()
static boolean
getIsEnabled()
java.lang.String
getJCOAssemblyName()
Returns the reflected Assembly namejava.lang.String
getJCOClassName()
Returns the reflected Class namejava.lang.Object
getJCOInstance()
Returns the instantiated classjava.lang.String
getJCOObjectName()
Returns the reflected Class name used to build the objectJCType
getJCOType()
Returns the instantiated class Typestatic java.lang.String
getLoginUrl()
static java.lang.String
GetRedirectUrl(java.lang.String userName, boolean createPersistentCookie)
static boolean
getRequireSSL()
static boolean
getSlidingExpiration()
static TicketCompatibilityMode
getTicketCompatibilityMode()
static TimeSpan
getTimeout()
static java.lang.String
HashPasswordForStoringInConfigFile(java.lang.String password, java.lang.String passwordFormat)
static void
Initialize()
static void
RedirectFromLoginPage(java.lang.String userName, boolean createPersistentCookie)
static void
RedirectFromLoginPage(java.lang.String userName, boolean createPersistentCookie, java.lang.String strCookiePath)
static void
RedirectToLoginPage()
static void
RedirectToLoginPage(java.lang.String extraQueryString)
static FormsAuthenticationTicket
RenewTicketIfOld(FormsAuthenticationTicket tOld)
static void
SetAuthCookie(java.lang.String userName, boolean createPersistentCookie)
static void
SetAuthCookie(java.lang.String userName, boolean createPersistentCookie, java.lang.String strCookiePath)
void
setJCOInstance(JCObject instance)
static void
SignOut()
-
-
-
Field Detail
-
assemblyFullName
public static final java.lang.String assemblyFullName
Fully assembly qualified name: System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a- See Also:
- Constant Field Values
-
assemblyShortName
public static final java.lang.String assemblyShortName
Assembly name: System.Web- See Also:
- Constant Field Values
-
className
public static final java.lang.String className
Qualified class name: System.Web.Security.FormsAuthentication- See Also:
- Constant Field Values
-
-
Method Detail
-
getJCOAssemblyName
public java.lang.String getJCOAssemblyName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Assembly name- Specified by:
getJCOAssemblyName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOAssemblyName
in classNetObject
- Returns:
- A
String
representing the Fullname of reflected Assembly
-
getJCOClassName
public java.lang.String getJCOClassName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Class name- Specified by:
getJCOClassName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOClassName
in classNetObject
- Returns:
- A
String
representing the Fullname of reflected Class
-
getJCOObjectName
public java.lang.String getJCOObjectName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Class name used to build the object- Specified by:
getJCOObjectName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOObjectName
in classNetObject
- Returns:
- A
String
representing the name used to allocated the object in CLR context
-
getJCOInstance
public java.lang.Object getJCOInstance()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class- Specified by:
getJCOInstance
in interfaceIJCOBridgeReflected
- Overrides:
getJCOInstance
in classNetObject
- Returns:
- An
Object
representing the CLR instance of the instantiated Class
-
setJCOInstance
public void setJCOInstance(JCObject instance)
- Overrides:
setJCOInstance
in classNetObject
-
getJCOType
public JCType getJCOType()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class Type- Specified by:
getJCOType
in interfaceIJCOBridgeReflected
- Overrides:
getJCOType
in classNetObject
- Returns:
- A
JCType
representing the CLR Type of the instantiated Class
-
cast
public static FormsAuthentication cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflected
instance intoFormsAuthentication
, a cast assert is made to check if types are compatible.- Parameters:
from
-IJCOBridgeReflected
instance to be casted- Returns:
FormsAuthentication
instance- Throws:
java.lang.Throwable
- in case of error during cast operation
-
Authenticate
public static boolean Authenticate(java.lang.String name, java.lang.String password) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, HttpException, IndexOutOfRangeException, ProviderException, ConfigurationErrorsException, NotSupportedException, MissingManifestResourceException, InvalidOperationException, ConfigurationException, NullReferenceException, PlatformNotSupportedException, KeyNotFoundException, CryptographicException, OutOfMemoryException, ObjectDisposedException, SecurityException, UnauthorizedAccessException, IOException, OverflowException, AbandonedMutexException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
HttpException
IndexOutOfRangeException
ProviderException
ConfigurationErrorsException
NotSupportedException
MissingManifestResourceException
InvalidOperationException
ConfigurationException
NullReferenceException
PlatformNotSupportedException
KeyNotFoundException
CryptographicException
OutOfMemoryException
ObjectDisposedException
SecurityException
UnauthorizedAccessException
IOException
OverflowException
AbandonedMutexException
-
Encrypt
public static java.lang.String Encrypt(FormsAuthenticationTicket ticket) throws java.lang.Throwable, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, HttpException, IndexOutOfRangeException, ProviderException, ConfigurationErrorsException, NotSupportedException, MissingManifestResourceException, InvalidOperationException, ConfigurationException, OverflowException, ThreadAbortException, ObjectDisposedException, PlatformNotSupportedException, Win32Exception, CryptographicException, MissingMethodException, OutOfMemoryException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
ArgumentOutOfRangeException
HttpException
IndexOutOfRangeException
ProviderException
ConfigurationErrorsException
NotSupportedException
MissingManifestResourceException
InvalidOperationException
ConfigurationException
OverflowException
ThreadAbortException
ObjectDisposedException
PlatformNotSupportedException
Win32Exception
CryptographicException
MissingMethodException
OutOfMemoryException
-
GetRedirectUrl
public static java.lang.String GetRedirectUrl(java.lang.String userName, boolean createPersistentCookie) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, HttpException, IndexOutOfRangeException, ProviderException, ConfigurationErrorsException, NotSupportedException, MissingManifestResourceException, InvalidOperationException, ConfigurationException, NullReferenceException, FormatException, OverflowException, UriFormatException, OutOfMemoryException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
HttpException
IndexOutOfRangeException
ProviderException
ConfigurationErrorsException
NotSupportedException
MissingManifestResourceException
InvalidOperationException
ConfigurationException
NullReferenceException
FormatException
OverflowException
UriFormatException
OutOfMemoryException
-
HashPasswordForStoringInConfigFile
public static java.lang.String HashPasswordForStoringInConfigFile(java.lang.String password, java.lang.String passwordFormat) throws java.lang.Throwable, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, InvalidOperationException, MissingMethodException, TargetInvocationException, CultureNotFoundException, NullReferenceException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, IndexOutOfRangeException, FormatException, PlatformNotSupportedException, KeyNotFoundException, CryptographicException, OutOfMemoryException, SecurityException, UnauthorizedAccessException, IOException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
ArgumentOutOfRangeException
InvalidOperationException
MissingMethodException
TargetInvocationException
CultureNotFoundException
NullReferenceException
MissingManifestResourceException
NotImplementedException
ObjectDisposedException
IndexOutOfRangeException
FormatException
PlatformNotSupportedException
KeyNotFoundException
CryptographicException
OutOfMemoryException
SecurityException
UnauthorizedAccessException
IOException
-
GetAuthCookie
public static HttpCookie GetAuthCookie(java.lang.String userName, boolean createPersistentCookie) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, HttpException, InvalidOperationException, ProviderException, ConfigurationErrorsException, OverflowException, ThreadAbortException, CryptographicException, PlatformNotSupportedException, NotSupportedException, OutOfMemoryException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
HttpException
InvalidOperationException
ProviderException
ConfigurationErrorsException
OverflowException
ThreadAbortException
CryptographicException
PlatformNotSupportedException
NotSupportedException
OutOfMemoryException
-
GetAuthCookie
public static HttpCookie GetAuthCookie(java.lang.String userName, boolean createPersistentCookie, java.lang.String strCookiePath) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, HttpException, IndexOutOfRangeException, ProviderException, ConfigurationErrorsException, NotSupportedException, MissingManifestResourceException, InvalidOperationException, ConfigurationException, OverflowException, ThreadAbortException, ObjectDisposedException, PlatformNotSupportedException, CryptographicException, OutOfMemoryException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
HttpException
IndexOutOfRangeException
ProviderException
ConfigurationErrorsException
NotSupportedException
MissingManifestResourceException
InvalidOperationException
ConfigurationException
OverflowException
ThreadAbortException
ObjectDisposedException
PlatformNotSupportedException
CryptographicException
OutOfMemoryException
-
Decrypt
public static FormsAuthenticationTicket Decrypt(java.lang.String encryptedTicket) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, FormatException, HttpException, ProviderException, ConfigurationErrorsException, ThreadAbortException, InvalidCastException, PlatformNotSupportedException, Win32Exception, CryptographicException, OutOfMemoryException, EndOfStreamException, OverflowException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
NotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
FormatException
HttpException
ProviderException
ConfigurationErrorsException
ThreadAbortException
InvalidCastException
PlatformNotSupportedException
Win32Exception
CryptographicException
OutOfMemoryException
EndOfStreamException
OverflowException
-
RenewTicketIfOld
public static FormsAuthenticationTicket RenewTicketIfOld(FormsAuthenticationTicket tOld) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentException, ArgumentNullException, InvalidTimeZoneException, NotSupportedException, OverflowException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentException
ArgumentNullException
InvalidTimeZoneException
NotSupportedException
OverflowException
-
EnableFormsAuthentication
public static void EnableFormsAuthentication(NameValueCollection configurationData) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, HttpException, ProviderException, ConfigurationErrorsException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
HttpException
ProviderException
ConfigurationErrorsException
-
Initialize
public static void Initialize() throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, MissingManifestResourceException, HttpException, InvalidOperationException, ConfigurationException, ProviderException, NotSupportedException, NullReferenceException, ConfigurationErrorsException
-
RedirectFromLoginPage
public static void RedirectFromLoginPage(java.lang.String userName, boolean createPersistentCookie) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, HttpException, InvalidOperationException, ProviderException, ConfigurationErrorsException, OverflowException, UriFormatException, OutOfMemoryException, IndexOutOfRangeException, MissingMethodException, TargetInvocationException, FormatException, HttpRequestValidationException, NotSupportedException, ApplicationException, CryptographicException, PlatformNotSupportedException, ObjectDisposedException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
HttpException
InvalidOperationException
ProviderException
ConfigurationErrorsException
OverflowException
UriFormatException
OutOfMemoryException
IndexOutOfRangeException
MissingMethodException
TargetInvocationException
FormatException
HttpRequestValidationException
NotSupportedException
ApplicationException
CryptographicException
PlatformNotSupportedException
ObjectDisposedException
-
RedirectFromLoginPage
public static void RedirectFromLoginPage(java.lang.String userName, boolean createPersistentCookie, java.lang.String strCookiePath) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, HttpException, InvalidOperationException, ProviderException, ConfigurationErrorsException, CultureNotFoundException, FormatException, OverflowException, UriFormatException, OutOfMemoryException, IndexOutOfRangeException, TypeLoadException, MissingMethodException, TargetInvocationException, NotSupportedException, ApplicationException, CryptographicException, PlatformNotSupportedException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
HttpException
InvalidOperationException
ProviderException
ConfigurationErrorsException
CultureNotFoundException
FormatException
OverflowException
UriFormatException
OutOfMemoryException
IndexOutOfRangeException
TypeLoadException
MissingMethodException
TargetInvocationException
NotSupportedException
ApplicationException
CryptographicException
PlatformNotSupportedException
-
RedirectToLoginPage
public static void RedirectToLoginPage() throws java.lang.Throwable, ArgumentException, ArgumentNullException, MissingManifestResourceException, ArgumentOutOfRangeException, ConfigurationErrorsException, ConfigurationException, HttpException, CultureNotFoundException, InvalidOperationException, NotSupportedException, HttpRequestValidationException, NullReferenceException, UriFormatException, OutOfMemoryException, ApplicationException, FormatException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
MissingManifestResourceException
ArgumentOutOfRangeException
ConfigurationErrorsException
ConfigurationException
HttpException
CultureNotFoundException
InvalidOperationException
NotSupportedException
HttpRequestValidationException
NullReferenceException
UriFormatException
OutOfMemoryException
ApplicationException
FormatException
-
RedirectToLoginPage
public static void RedirectToLoginPage(java.lang.String extraQueryString) throws java.lang.Throwable, ArgumentException, HttpException, ArgumentNullException, ConfigurationErrorsException, NotSupportedException, ConfigurationException, IndexOutOfRangeException, ArgumentOutOfRangeException, CultureNotFoundException, InvalidOperationException, HttpRequestValidationException, UriFormatException, OutOfMemoryException, ApplicationException, MissingMethodException, TargetInvocationException, NullReferenceException, FormatException
- Throws:
java.lang.Throwable
ArgumentException
HttpException
ArgumentNullException
ConfigurationErrorsException
NotSupportedException
ConfigurationException
IndexOutOfRangeException
ArgumentOutOfRangeException
CultureNotFoundException
InvalidOperationException
HttpRequestValidationException
UriFormatException
OutOfMemoryException
ApplicationException
MissingMethodException
TargetInvocationException
NullReferenceException
FormatException
-
SetAuthCookie
public static void SetAuthCookie(java.lang.String userName, boolean createPersistentCookie) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, HttpException, InvalidOperationException, ProviderException, ConfigurationErrorsException, TypeLoadException, MissingMethodException, TargetInvocationException, CultureNotFoundException, FormatException, IndexOutOfRangeException, NotSupportedException, ApplicationException, OverflowException, ThreadAbortException, CryptographicException, PlatformNotSupportedException, OutOfMemoryException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
HttpException
InvalidOperationException
ProviderException
ConfigurationErrorsException
TypeLoadException
MissingMethodException
TargetInvocationException
CultureNotFoundException
FormatException
IndexOutOfRangeException
NotSupportedException
ApplicationException
OverflowException
ThreadAbortException
CryptographicException
PlatformNotSupportedException
OutOfMemoryException
-
SetAuthCookie
public static void SetAuthCookie(java.lang.String userName, boolean createPersistentCookie, java.lang.String strCookiePath) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, HttpException, InvalidOperationException, ProviderException, ConfigurationErrorsException, TypeLoadException, MissingMethodException, TargetInvocationException, NotSupportedException, CultureNotFoundException, FormatException, IndexOutOfRangeException, ApplicationException, OverflowException, ObjectDisposedException, PlatformNotSupportedException, CryptographicException, OutOfMemoryException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
HttpException
InvalidOperationException
ProviderException
ConfigurationErrorsException
TypeLoadException
MissingMethodException
TargetInvocationException
NotSupportedException
CultureNotFoundException
FormatException
IndexOutOfRangeException
ApplicationException
OverflowException
ObjectDisposedException
PlatformNotSupportedException
CryptographicException
OutOfMemoryException
-
SignOut
public static void SignOut() throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, HttpException, InvalidOperationException, ProviderException, ConfigurationErrorsException, IndexOutOfRangeException, HttpRequestValidationException, NotSupportedException, TypeLoadException, MissingMethodException, TargetInvocationException, FormatException, ApplicationException, OverflowException, UriFormatException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
HttpException
InvalidOperationException
ProviderException
ConfigurationErrorsException
IndexOutOfRangeException
HttpRequestValidationException
NotSupportedException
TypeLoadException
MissingMethodException
TargetInvocationException
FormatException
ApplicationException
OverflowException
UriFormatException
-
getCookiesSupported
public static boolean getCookiesSupported() throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, HttpException, IndexOutOfRangeException, ProviderException, ConfigurationErrorsException, NotSupportedException, MissingManifestResourceException, InvalidOperationException, ConfigurationException, TypeLoadException, NullReferenceException, FormatException, ApplicationException, OverflowException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
HttpException
IndexOutOfRangeException
ProviderException
ConfigurationErrorsException
NotSupportedException
MissingManifestResourceException
InvalidOperationException
ConfigurationException
TypeLoadException
NullReferenceException
FormatException
ApplicationException
OverflowException
-
getEnableCrossAppRedirects
public static boolean getEnableCrossAppRedirects() throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, HttpException, InvalidOperationException, ProviderException, ConfigurationErrorsException
-
getIsEnabled
public static boolean getIsEnabled() throws java.lang.Throwable, InvalidOperationException, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, HttpException, ProviderException, ConfigurationErrorsException
-
getRequireSSL
public static boolean getRequireSSL() throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, HttpException, InvalidOperationException, ProviderException, ConfigurationErrorsException
-
getSlidingExpiration
public static boolean getSlidingExpiration() throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, HttpException, InvalidOperationException, ProviderException, ConfigurationErrorsException
-
getCookieDomain
public static java.lang.String getCookieDomain() throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, HttpException, InvalidOperationException, ProviderException, ConfigurationErrorsException
-
getDefaultUrl
public static java.lang.String getDefaultUrl() throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, HttpException, InvalidOperationException, ProviderException, ConfigurationErrorsException, IndexOutOfRangeException
-
getFormsCookieName
public static java.lang.String getFormsCookieName() throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, HttpException, InvalidOperationException, ProviderException, ConfigurationErrorsException
-
getFormsCookiePath
public static java.lang.String getFormsCookiePath() throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, HttpException, InvalidOperationException, ProviderException, ConfigurationErrorsException
-
getLoginUrl
public static java.lang.String getLoginUrl() throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, HttpException, InvalidOperationException, ProviderException, ConfigurationErrorsException, IndexOutOfRangeException
-
getTimeout
public static TimeSpan getTimeout() throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, HttpException, InvalidOperationException, ProviderException, ConfigurationErrorsException
-
getTicketCompatibilityMode
public static TicketCompatibilityMode getTicketCompatibilityMode() throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, HttpException, InvalidOperationException, ProviderException, ConfigurationErrorsException
-
getCookieMode
public static HttpCookieMode getCookieMode() throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, HttpException, InvalidOperationException, ProviderException, ConfigurationErrorsException
-
getCookieSameSite
public static SameSiteMode getCookieSameSite() throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, HttpException, InvalidOperationException, ProviderException, ConfigurationErrorsException
-
-