Package system.web.profile
Class ProfileManager
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- system.web.profile.ProfileManager
-
- All Implemented Interfaces:
IJCOBridgeReflected
public class ProfileManager extends NetObject
The base .NET class managing System.Web.Profile.ProfileManager, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Web.Profile.ProfileManager
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.Profile.ProfileManagerstatic JCType
classType
The type managed from JCOBridge.
-
Constructor Summary
Constructors Constructor Description ProfileManager()
ProfileManager(java.lang.Object instance)
Internal constructor.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static void
AddDynamicProfileProperty(ProfilePropertySettings property)
static ProfileManager
cast(IJCOBridgeReflected from)
Try to cast theIJCOBridgeReflected
instance intoProfileManager
, a cast assert is made to check if types are compatible.static int
DeleteInactiveProfiles(ProfileAuthenticationOption authenticationOption, DateTime userInactiveSinceDate)
static boolean
DeleteProfile(java.lang.String username)
static int
DeleteProfiles(java.lang.String[] usernames)
static int
DeleteProfiles(JCORefOut dupParam0)
static int
DeleteProfiles(ProfileInfoCollection profiles)
static ProfileInfoCollection
FindInactiveProfilesByUserName(ProfileAuthenticationOption authenticationOption, java.lang.String usernameToMatch, DateTime userInactiveSinceDate)
static ProfileInfoCollection
FindInactiveProfilesByUserName(ProfileAuthenticationOption authenticationOption, java.lang.String usernameToMatch, DateTime userInactiveSinceDate, int pageIndex, int pageSize, JCORefOut<java.util.concurrent.atomic.AtomicInteger> totalRecords)
static ProfileInfoCollection
FindProfilesByUserName(ProfileAuthenticationOption authenticationOption, java.lang.String usernameToMatch)
static ProfileInfoCollection
FindProfilesByUserName(ProfileAuthenticationOption authenticationOption, java.lang.String usernameToMatch, int pageIndex, int pageSize, JCORefOut<java.util.concurrent.atomic.AtomicInteger> totalRecords)
static ProfileInfoCollection
GetAllInactiveProfiles(ProfileAuthenticationOption authenticationOption, DateTime userInactiveSinceDate)
static ProfileInfoCollection
GetAllInactiveProfiles(ProfileAuthenticationOption authenticationOption, DateTime userInactiveSinceDate, int pageIndex, int pageSize, JCORefOut<java.util.concurrent.atomic.AtomicInteger> totalRecords)
static ProfileInfoCollection
GetAllProfiles(ProfileAuthenticationOption authenticationOption)
static ProfileInfoCollection
GetAllProfiles(ProfileAuthenticationOption authenticationOption, int pageIndex, int pageSize, JCORefOut<java.util.concurrent.atomic.AtomicInteger> totalRecords)
static java.lang.String
getApplicationName()
static boolean
getAutomaticSaveEnabled()
static boolean
getEnabled()
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 int
GetNumberOfInactiveProfiles(ProfileAuthenticationOption authenticationOption, DateTime userInactiveSinceDate)
static int
GetNumberOfProfiles(ProfileAuthenticationOption authenticationOption)
static ProfileProvider
getProvider()
static ProfileProviderCollection
getProviders()
static void
setApplicationName(java.lang.String ApplicationName)
void
setJCOInstance(JCObject instance)
-
-
-
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.Profile.ProfileManager- 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 ProfileManager cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflected
instance intoProfileManager
, a cast assert is made to check if types are compatible.- Parameters:
from
-IJCOBridgeReflected
instance to be casted- Returns:
ProfileManager
instance- Throws:
java.lang.Throwable
- in case of error during cast operation
-
DeleteProfile
public static boolean DeleteProfile(java.lang.String username) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, IndexOutOfRangeException, SecurityException, NotSupportedException, MemberAccessException, TargetException, TargetParameterCountException, HttpException, ConfigurationErrorsException, ConfigurationException, ProviderException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
IndexOutOfRangeException
SecurityException
NotSupportedException
MemberAccessException
TargetException
TargetParameterCountException
HttpException
ConfigurationErrorsException
ConfigurationException
ProviderException
-
DeleteInactiveProfiles
public static int DeleteInactiveProfiles(ProfileAuthenticationOption authenticationOption, DateTime userInactiveSinceDate) throws java.lang.Throwable, ArgumentException, SecurityException, ArgumentNullException, InvalidOperationException, NotSupportedException, MemberAccessException, TargetException, TargetParameterCountException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, HttpException, ConfigurationErrorsException, ConfigurationException, ProviderException
- Throws:
java.lang.Throwable
ArgumentException
SecurityException
ArgumentNullException
InvalidOperationException
NotSupportedException
MemberAccessException
TargetException
TargetParameterCountException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
HttpException
ConfigurationErrorsException
ConfigurationException
ProviderException
-
DeleteProfiles
public static int DeleteProfiles(java.lang.String[] usernames) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, IndexOutOfRangeException, SecurityException, NotSupportedException, MemberAccessException, TargetException, TargetParameterCountException, HttpException, ConfigurationErrorsException, ConfigurationException, ProviderException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
IndexOutOfRangeException
SecurityException
NotSupportedException
MemberAccessException
TargetException
TargetParameterCountException
HttpException
ConfigurationErrorsException
ConfigurationException
ProviderException
-
DeleteProfiles
public static int DeleteProfiles(JCORefOut dupParam0) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, IndexOutOfRangeException, SecurityException, NotSupportedException, MemberAccessException, TargetException, TargetParameterCountException, HttpException, ConfigurationErrorsException, ConfigurationException, ProviderException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
IndexOutOfRangeException
SecurityException
NotSupportedException
MemberAccessException
TargetException
TargetParameterCountException
HttpException
ConfigurationErrorsException
ConfigurationException
ProviderException
-
DeleteProfiles
public static int DeleteProfiles(ProfileInfoCollection profiles) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, FormatException, SecurityException, MemberAccessException, TargetException, TargetParameterCountException, HttpException, ConfigurationErrorsException, ConfigurationException, ProviderException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
NotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
FormatException
SecurityException
MemberAccessException
TargetException
TargetParameterCountException
HttpException
ConfigurationErrorsException
ConfigurationException
ProviderException
-
GetNumberOfInactiveProfiles
public static int GetNumberOfInactiveProfiles(ProfileAuthenticationOption authenticationOption, DateTime userInactiveSinceDate) throws java.lang.Throwable, ArgumentException, SecurityException, ArgumentNullException, InvalidOperationException, NotSupportedException, MemberAccessException, TargetException, TargetParameterCountException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, HttpException, ConfigurationErrorsException, ConfigurationException, ProviderException
- Throws:
java.lang.Throwable
ArgumentException
SecurityException
ArgumentNullException
InvalidOperationException
NotSupportedException
MemberAccessException
TargetException
TargetParameterCountException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
HttpException
ConfigurationErrorsException
ConfigurationException
ProviderException
-
GetNumberOfProfiles
public static int GetNumberOfProfiles(ProfileAuthenticationOption authenticationOption) throws java.lang.Throwable, ArgumentException, SecurityException, ArgumentNullException, InvalidOperationException, NotSupportedException, MemberAccessException, TargetException, TargetParameterCountException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, HttpException, ConfigurationErrorsException, ConfigurationException, ProviderException, InvalidTimeZoneException, OverflowException
- Throws:
java.lang.Throwable
ArgumentException
SecurityException
ArgumentNullException
InvalidOperationException
NotSupportedException
MemberAccessException
TargetException
TargetParameterCountException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
HttpException
ConfigurationErrorsException
ConfigurationException
ProviderException
InvalidTimeZoneException
OverflowException
-
FindInactiveProfilesByUserName
public static ProfileInfoCollection FindInactiveProfilesByUserName(ProfileAuthenticationOption authenticationOption, java.lang.String usernameToMatch, DateTime userInactiveSinceDate) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, IndexOutOfRangeException, SecurityException, NotSupportedException, MemberAccessException, TargetException, TargetParameterCountException, HttpException, ConfigurationErrorsException, ConfigurationException, ProviderException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
IndexOutOfRangeException
SecurityException
NotSupportedException
MemberAccessException
TargetException
TargetParameterCountException
HttpException
ConfigurationErrorsException
ConfigurationException
ProviderException
-
FindInactiveProfilesByUserName
public static ProfileInfoCollection FindInactiveProfilesByUserName(ProfileAuthenticationOption authenticationOption, java.lang.String usernameToMatch, DateTime userInactiveSinceDate, int pageIndex, int pageSize, JCORefOut<java.util.concurrent.atomic.AtomicInteger> totalRecords) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, FormatException, SecurityException, MemberAccessException, TargetException, TargetParameterCountException, HttpException, ConfigurationErrorsException, ConfigurationException, ProviderException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
NotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
FormatException
SecurityException
MemberAccessException
TargetException
TargetParameterCountException
HttpException
ConfigurationErrorsException
ConfigurationException
ProviderException
-
FindProfilesByUserName
public static ProfileInfoCollection FindProfilesByUserName(ProfileAuthenticationOption authenticationOption, java.lang.String usernameToMatch) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, IndexOutOfRangeException, SecurityException, NotSupportedException, MemberAccessException, TargetException, TargetParameterCountException, HttpException, ConfigurationErrorsException, ConfigurationException, ProviderException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
IndexOutOfRangeException
SecurityException
NotSupportedException
MemberAccessException
TargetException
TargetParameterCountException
HttpException
ConfigurationErrorsException
ConfigurationException
ProviderException
-
FindProfilesByUserName
public static ProfileInfoCollection FindProfilesByUserName(ProfileAuthenticationOption authenticationOption, java.lang.String usernameToMatch, int pageIndex, int pageSize, JCORefOut<java.util.concurrent.atomic.AtomicInteger> totalRecords) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, FormatException, SecurityException, MemberAccessException, TargetException, TargetParameterCountException, HttpException, ConfigurationErrorsException, ConfigurationException, ProviderException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
NotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
FormatException
SecurityException
MemberAccessException
TargetException
TargetParameterCountException
HttpException
ConfigurationErrorsException
ConfigurationException
ProviderException
-
GetAllInactiveProfiles
public static ProfileInfoCollection GetAllInactiveProfiles(ProfileAuthenticationOption authenticationOption, DateTime userInactiveSinceDate) throws java.lang.Throwable, ArgumentException, SecurityException, ArgumentNullException, InvalidOperationException, NotSupportedException, MemberAccessException, TargetException, TargetParameterCountException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, HttpException, ConfigurationErrorsException, ConfigurationException, ProviderException
- Throws:
java.lang.Throwable
ArgumentException
SecurityException
ArgumentNullException
InvalidOperationException
NotSupportedException
MemberAccessException
TargetException
TargetParameterCountException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
HttpException
ConfigurationErrorsException
ConfigurationException
ProviderException
-
GetAllInactiveProfiles
public static ProfileInfoCollection GetAllInactiveProfiles(ProfileAuthenticationOption authenticationOption, DateTime userInactiveSinceDate, int pageIndex, int pageSize, JCORefOut<java.util.concurrent.atomic.AtomicInteger> totalRecords) throws java.lang.Throwable, ArgumentException, SecurityException, ArgumentNullException, InvalidOperationException, NotSupportedException, MemberAccessException, TargetException, TargetParameterCountException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, HttpException, ConfigurationErrorsException, ConfigurationException, ProviderException
- Throws:
java.lang.Throwable
ArgumentException
SecurityException
ArgumentNullException
InvalidOperationException
NotSupportedException
MemberAccessException
TargetException
TargetParameterCountException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
HttpException
ConfigurationErrorsException
ConfigurationException
ProviderException
-
GetAllProfiles
public static ProfileInfoCollection GetAllProfiles(ProfileAuthenticationOption authenticationOption) throws java.lang.Throwable, ArgumentException, SecurityException, ArgumentNullException, InvalidOperationException, NotSupportedException, MemberAccessException, TargetException, TargetParameterCountException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, HttpException, ConfigurationErrorsException, ConfigurationException, ProviderException
- Throws:
java.lang.Throwable
ArgumentException
SecurityException
ArgumentNullException
InvalidOperationException
NotSupportedException
MemberAccessException
TargetException
TargetParameterCountException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
HttpException
ConfigurationErrorsException
ConfigurationException
ProviderException
-
GetAllProfiles
public static ProfileInfoCollection GetAllProfiles(ProfileAuthenticationOption authenticationOption, int pageIndex, int pageSize, JCORefOut<java.util.concurrent.atomic.AtomicInteger> totalRecords) throws java.lang.Throwable, ArgumentException, SecurityException, ArgumentNullException, InvalidOperationException, NotSupportedException, MemberAccessException, TargetException, TargetParameterCountException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, HttpException, ConfigurationErrorsException, ConfigurationException, ProviderException
- Throws:
java.lang.Throwable
ArgumentException
SecurityException
ArgumentNullException
InvalidOperationException
NotSupportedException
MemberAccessException
TargetException
TargetParameterCountException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
HttpException
ConfigurationErrorsException
ConfigurationException
ProviderException
-
AddDynamicProfileProperty
public static void AddDynamicProfileProperty(ProfilePropertySettings property) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, ConfigurationErrorsException, IndexOutOfRangeException, NotSupportedException, NullReferenceException, ConfigurationException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
ConfigurationErrorsException
IndexOutOfRangeException
NotSupportedException
NullReferenceException
ConfigurationException
-
getAutomaticSaveEnabled
public static boolean getAutomaticSaveEnabled() throws java.lang.Throwable, ArgumentException, SecurityException, ArgumentNullException, NotImplementedException, NotSupportedException, InvalidOperationException, MemberAccessException, TargetException, TargetParameterCountException, ObjectDisposedException, MissingMethodException, TargetInvocationException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, HttpException, ConfigurationErrorsException, OutOfMemoryException, EventSourceException, ProviderException
- Throws:
java.lang.Throwable
ArgumentException
SecurityException
ArgumentNullException
NotImplementedException
NotSupportedException
InvalidOperationException
MemberAccessException
TargetException
TargetParameterCountException
ObjectDisposedException
MissingMethodException
TargetInvocationException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
HttpException
ConfigurationErrorsException
OutOfMemoryException
EventSourceException
ProviderException
-
getEnabled
public static boolean getEnabled() throws java.lang.Throwable, ArgumentException, ArgumentNullException, ConfigurationErrorsException, InvalidOperationException, HttpException, ArgumentOutOfRangeException, NotSupportedException, SecurityException, NotImplementedException, MemberAccessException, TargetException, TargetParameterCountException, MissingMethodException, TargetInvocationException, ObjectDisposedException, OutOfMemoryException, EventSourceException, ProviderException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
ConfigurationErrorsException
InvalidOperationException
HttpException
ArgumentOutOfRangeException
NotSupportedException
SecurityException
NotImplementedException
MemberAccessException
TargetException
TargetParameterCountException
MissingMethodException
TargetInvocationException
ObjectDisposedException
OutOfMemoryException
EventSourceException
ProviderException
-
getApplicationName
public static java.lang.String getApplicationName() throws java.lang.Throwable, ArgumentException, SecurityException, ArgumentNullException, InvalidOperationException, NotSupportedException, MemberAccessException, TargetException, TargetParameterCountException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, HttpException, ConfigurationErrorsException, ConfigurationException, ProviderException
- Throws:
java.lang.Throwable
ArgumentException
SecurityException
ArgumentNullException
InvalidOperationException
NotSupportedException
MemberAccessException
TargetException
TargetParameterCountException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
HttpException
ConfigurationErrorsException
ConfigurationException
ProviderException
-
setApplicationName
public static void setApplicationName(java.lang.String ApplicationName) throws java.lang.Throwable, ArgumentException, SecurityException, ArgumentNullException, InvalidOperationException, NotSupportedException, MemberAccessException, TargetException, TargetParameterCountException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, HttpException, ConfigurationErrorsException, ConfigurationException, ProviderException
- Throws:
java.lang.Throwable
ArgumentException
SecurityException
ArgumentNullException
InvalidOperationException
NotSupportedException
MemberAccessException
TargetException
TargetParameterCountException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
HttpException
ConfigurationErrorsException
ConfigurationException
ProviderException
-
getProvider
public static ProfileProvider getProvider() throws java.lang.Throwable, ArgumentException, SecurityException, ArgumentNullException, NotImplementedException, NotSupportedException, InvalidOperationException, MemberAccessException, TargetException, TargetParameterCountException, ObjectDisposedException, MissingMethodException, TargetInvocationException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, HttpException, ConfigurationErrorsException, ConfigurationException, ProviderException
- Throws:
java.lang.Throwable
ArgumentException
SecurityException
ArgumentNullException
NotImplementedException
NotSupportedException
InvalidOperationException
MemberAccessException
TargetException
TargetParameterCountException
ObjectDisposedException
MissingMethodException
TargetInvocationException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
HttpException
ConfigurationErrorsException
ConfigurationException
ProviderException
-
getProviders
public static ProfileProviderCollection getProviders() throws java.lang.Throwable, ArgumentException, SecurityException, ArgumentNullException, NotImplementedException, NotSupportedException, InvalidOperationException, MemberAccessException, TargetException, TargetParameterCountException, ObjectDisposedException, MissingMethodException, TargetInvocationException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, HttpException, ConfigurationErrorsException, ConfigurationException, ProviderException
- Throws:
java.lang.Throwable
ArgumentException
SecurityException
ArgumentNullException
NotImplementedException
NotSupportedException
InvalidOperationException
MemberAccessException
TargetException
TargetParameterCountException
ObjectDisposedException
MissingMethodException
TargetInvocationException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
HttpException
ConfigurationErrorsException
ConfigurationException
ProviderException
-
-