Package system.diagnostics
Class EventLog
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- system.MarshalByRefObject
-
- system.componentmodel.Component
-
- system.diagnostics.EventLog
-
- All Implemented Interfaces:
java.lang.AutoCloseable
,IJCOBridgeReflected
public class EventLog extends Component
The base .NET class managing System.Diagnostics.EventLog, System.Diagnostics.EventLog, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Diagnostics.EventLog
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.Diagnostics.EventLog, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51static java.lang.String
assemblyShortName
Assembly name: System.Diagnostics.EventLogstatic java.lang.String
className
Qualified class name: System.Diagnostics.EventLogstatic JCType
classType
The type managed from JCOBridge.
-
Constructor Summary
Constructors Constructor Description EventLog()
EventLog(java.lang.Object instance)
Internal constructor.EventLog(java.lang.String logName)
EventLog(java.lang.String logName, java.lang.String machineName)
EventLog(java.lang.String logName, java.lang.String machineName, java.lang.String source)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addEntryWritten(EntryWrittenEventHandler handler)
void
BeginInit()
static EventLog
cast(IJCOBridgeReflected from)
Try to cast theIJCOBridgeReflected
instance intoEventLog
, a cast assert is made to check if types are compatible.void
Clear()
void
Close()
static void
CreateEventSource(java.lang.String source, java.lang.String logName)
static void
CreateEventSource(java.lang.String source, java.lang.String logName, java.lang.String machineName)
static void
CreateEventSource(EventSourceCreationData sourceData)
static void
Delete(java.lang.String logName)
static void
Delete(java.lang.String logName, java.lang.String machineName)
static void
DeleteEventSource(java.lang.String source)
static void
DeleteEventSource(java.lang.String source, java.lang.String machineName)
void
EndInit()
static boolean
Exists(java.lang.String logName)
static boolean
Exists(java.lang.String logName, java.lang.String machineName)
boolean
getEnableRaisingEvents()
EventLogEntryCollection
getEntries()
static EventLog[]
GetEventLogs()
static EventLog[]
GetEventLogs(java.lang.String machineName)
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 Typejava.lang.String
getLog()
java.lang.String
getLogDisplayName()
java.lang.String
getMachineName()
long
getMaximumKilobytes()
int
getMinimumRetentionDays()
OverflowAction
getOverflowAction()
java.lang.String
getSource()
ISynchronizeInvoke
getSynchronizingObject()
static java.lang.String
LogNameFromSourceName(java.lang.String source, java.lang.String machineName)
void
ModifyOverflowPolicy(OverflowAction action, int retentionDays)
void
RegisterDisplayName(java.lang.String resourceFile, long resourceId)
void
removeEntryWritten(EntryWrittenEventHandler handler)
void
setEnableRaisingEvents(boolean EnableRaisingEvents)
void
setJCOInstance(JCObject instance)
void
setLog(java.lang.String Log)
void
setMachineName(java.lang.String MachineName)
void
setMaximumKilobytes(long MaximumKilobytes)
void
setSource(java.lang.String Source)
void
setSynchronizingObject(ISynchronizeInvoke SynchronizingObject)
static boolean
SourceExists(java.lang.String source)
static boolean
SourceExists(java.lang.String source, java.lang.String machineName)
void
WriteEntry(java.lang.String message)
static void
WriteEntry(java.lang.String source, java.lang.String message)
static void
WriteEntry(java.lang.String source, java.lang.String message, EventLogEntryType type)
static void
WriteEntry(java.lang.String source, java.lang.String message, EventLogEntryType type, int eventID)
static void
WriteEntry(java.lang.String source, java.lang.String message, EventLogEntryType type, int eventID, short category)
static void
WriteEntry(java.lang.String source, java.lang.String message, EventLogEntryType type, int eventID, short category, byte[] rawData)
static void
WriteEntry(java.lang.String dupParam0, java.lang.String dupParam1, EventLogEntryType dupParam2, int dupParam3, short dupParam4, JCORefOut dupParam5)
void
WriteEntry(java.lang.String message, EventLogEntryType type)
void
WriteEntry(java.lang.String message, EventLogEntryType type, int eventID)
void
WriteEntry(java.lang.String message, EventLogEntryType type, int eventID, short category)
void
WriteEntry(java.lang.String message, EventLogEntryType type, int eventID, short category, byte[] rawData)
void
WriteEntry(java.lang.String dupParam0, EventLogEntryType dupParam1, int dupParam2, short dupParam3, JCORefOut dupParam4)
static void
WriteEvent(java.lang.String source, EventInstance instance, byte[] data, NetObject... values)
static void
WriteEvent(java.lang.String dupParam0, EventInstance dupParam1, JCORefOut dupParam2, NetObject... dupParam3)
static void
WriteEvent(java.lang.String source, EventInstance instance, NetObject... values)
void
WriteEvent(EventInstance instance, byte[] data, NetObject... values)
void
WriteEvent(EventInstance dupParam0, JCORefOut dupParam1, NetObject... dupParam2)
void
WriteEvent(EventInstance instance, NetObject... values)
-
Methods inherited from class system.componentmodel.Component
addDisposed, close, Dispose, getContainer, getSite, removeDisposed, setSite
-
Methods inherited from class system.MarshalByRefObject
GetLifetimeService, InitializeLifetimeService
-
-
-
-
Field Detail
-
assemblyFullName
public static final java.lang.String assemblyFullName
Fully assembly qualified name: System.Diagnostics.EventLog, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51- See Also:
- Constant Field Values
-
assemblyShortName
public static final java.lang.String assemblyShortName
Assembly name: System.Diagnostics.EventLog- See Also:
- Constant Field Values
-
className
public static final java.lang.String className
Qualified class name: System.Diagnostics.EventLog- See Also:
- Constant Field Values
-
-
Constructor Detail
-
EventLog
public EventLog(java.lang.Object instance) throws java.lang.Throwable
Internal constructor. Use with caution- Throws:
java.lang.Throwable
-
EventLog
public EventLog() throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentNullException, IndexOutOfRangeException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, FormatException
-
EventLog
public EventLog(java.lang.String logName, java.lang.String machineName, java.lang.String source) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, IndexOutOfRangeException, PlatformNotSupportedException, FormatException
-
EventLog
public EventLog(java.lang.String logName, java.lang.String machineName) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentNullException, IndexOutOfRangeException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, FormatException
-
EventLog
public EventLog(java.lang.String logName) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentNullException, IndexOutOfRangeException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, FormatException
-
-
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 classComponent
- 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 classComponent
- 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 classComponent
- 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 classComponent
- Returns:
- An
Object
representing the CLR instance of the instantiated Class
-
setJCOInstance
public void setJCOInstance(JCObject instance)
- Overrides:
setJCOInstance
in classComponent
-
getJCOType
public JCType getJCOType()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class Type- Specified by:
getJCOType
in interfaceIJCOBridgeReflected
- Overrides:
getJCOType
in classComponent
- Returns:
- A
JCType
representing the CLR Type of the instantiated Class
-
cast
public static EventLog cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflected
instance intoEventLog
, a cast assert is made to check if types are compatible.- Parameters:
from
-IJCOBridgeReflected
instance to be casted- Returns:
EventLog
instance- Throws:
java.lang.Throwable
- in case of error during cast operation
-
Exists
public static boolean Exists(java.lang.String logName, java.lang.String machineName) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, IndexOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ArgumentNullException, CultureNotFoundException, ObjectDisposedException, InvalidOperationException, MissingMethodException, TargetInvocationException, FormatException, IOException, ArrayTypeMismatchException, OutOfMemoryException, RankException, InvalidCastException, SecurityException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
IndexOutOfRangeException
PlatformNotSupportedException
NotSupportedException
ArgumentNullException
CultureNotFoundException
ObjectDisposedException
InvalidOperationException
MissingMethodException
TargetInvocationException
FormatException
IOException
ArrayTypeMismatchException
OutOfMemoryException
RankException
InvalidCastException
SecurityException
-
Exists
public static boolean Exists(java.lang.String logName) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, IndexOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ArgumentNullException, CultureNotFoundException, InvalidOperationException, ObjectDisposedException, MissingMethodException, TargetInvocationException, IOException, OutOfMemoryException, RankException, ArrayTypeMismatchException, SecurityException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
IndexOutOfRangeException
PlatformNotSupportedException
NotSupportedException
ArgumentNullException
CultureNotFoundException
InvalidOperationException
ObjectDisposedException
MissingMethodException
TargetInvocationException
IOException
OutOfMemoryException
RankException
ArrayTypeMismatchException
SecurityException
-
SourceExists
public static boolean SourceExists(java.lang.String source, java.lang.String machineName) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, IndexOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ArgumentNullException, CultureNotFoundException, InvalidOperationException, ObjectDisposedException, MissingMethodException, TargetInvocationException, IOException, RankException, ArrayTypeMismatchException, OutOfMemoryException, SecurityException, UnauthorizedAccessException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
IndexOutOfRangeException
PlatformNotSupportedException
NotSupportedException
ArgumentNullException
CultureNotFoundException
InvalidOperationException
ObjectDisposedException
MissingMethodException
TargetInvocationException
IOException
RankException
ArrayTypeMismatchException
OutOfMemoryException
SecurityException
UnauthorizedAccessException
-
SourceExists
public static boolean SourceExists(java.lang.String source) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, IndexOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ArgumentNullException, CultureNotFoundException, IOException, ObjectDisposedException, OutOfMemoryException, SecurityException, UnauthorizedAccessException, ArrayTypeMismatchException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
IndexOutOfRangeException
PlatformNotSupportedException
NotSupportedException
ArgumentNullException
CultureNotFoundException
IOException
ObjectDisposedException
OutOfMemoryException
SecurityException
UnauthorizedAccessException
ArrayTypeMismatchException
-
GetEventLogs
public static EventLog[] GetEventLogs() throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, IndexOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ArgumentNullException, CultureNotFoundException, InvalidOperationException, ObjectDisposedException, MissingMethodException, TargetInvocationException, IOException, OutOfMemoryException, RankException, ArrayTypeMismatchException, SecurityException, UnauthorizedAccessException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
IndexOutOfRangeException
PlatformNotSupportedException
NotSupportedException
ArgumentNullException
CultureNotFoundException
InvalidOperationException
ObjectDisposedException
MissingMethodException
TargetInvocationException
IOException
OutOfMemoryException
RankException
ArrayTypeMismatchException
SecurityException
UnauthorizedAccessException
-
GetEventLogs
public static EventLog[] GetEventLogs(java.lang.String machineName) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, IndexOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ArgumentNullException, CultureNotFoundException, ObjectDisposedException, InvalidOperationException, MissingMethodException, TargetInvocationException, FormatException, IOException, ArrayTypeMismatchException, OutOfMemoryException, RankException, InvalidCastException, SecurityException, UnauthorizedAccessException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
IndexOutOfRangeException
PlatformNotSupportedException
NotSupportedException
ArgumentNullException
CultureNotFoundException
ObjectDisposedException
InvalidOperationException
MissingMethodException
TargetInvocationException
FormatException
IOException
ArrayTypeMismatchException
OutOfMemoryException
RankException
InvalidCastException
SecurityException
UnauthorizedAccessException
-
LogNameFromSourceName
public static java.lang.String LogNameFromSourceName(java.lang.String source, java.lang.String machineName) throws java.lang.Throwable, PlatformNotSupportedException, ArgumentNullException, ArgumentException, IOException, ArgumentOutOfRangeException, ObjectDisposedException, IndexOutOfRangeException, OutOfMemoryException, SecurityException, UnauthorizedAccessException, ArrayTypeMismatchException
-
BeginInit
public void BeginInit() throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, NotSupportedException, InvalidOperationException, ObjectDisposedException, IOException, SecurityException, UnauthorizedAccessException, OutOfMemoryException, RankException, IndexOutOfRangeException, ArrayTypeMismatchException, InvalidCastException, Win32Exception, NullReferenceException, LockRecursionException, SynchronizationLockException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
NotSupportedException
InvalidOperationException
ObjectDisposedException
IOException
SecurityException
UnauthorizedAccessException
OutOfMemoryException
RankException
IndexOutOfRangeException
ArrayTypeMismatchException
InvalidCastException
Win32Exception
NullReferenceException
LockRecursionException
SynchronizationLockException
-
Clear
public void Clear() throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, SecurityException, UnauthorizedAccessException, IOException, IndexOutOfRangeException, FormatException, MissingMethodException, TargetInvocationException, Win32Exception, NullReferenceException, OutOfMemoryException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
PlatformNotSupportedException
NotSupportedException
ObjectDisposedException
InvalidOperationException
RankException
ArrayTypeMismatchException
SecurityException
UnauthorizedAccessException
IOException
IndexOutOfRangeException
FormatException
MissingMethodException
TargetInvocationException
Win32Exception
NullReferenceException
OutOfMemoryException
-
Close
public void Close() throws java.lang.Throwable, ObjectDisposedException, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, InvalidOperationException, Win32Exception, SecurityException, UnauthorizedAccessException, IOException, NullReferenceException, RankException, ArrayTypeMismatchException, NotSupportedException
- Throws:
java.lang.Throwable
ObjectDisposedException
ArgumentNullException
ArgumentException
ArgumentOutOfRangeException
PlatformNotSupportedException
InvalidOperationException
Win32Exception
SecurityException
UnauthorizedAccessException
IOException
NullReferenceException
RankException
ArrayTypeMismatchException
NotSupportedException
-
CreateEventSource
public static void CreateEventSource(EventSourceCreationData sourceData) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, IndexOutOfRangeException, FormatException, OutOfMemoryException, MissingMethodException, TargetInvocationException, WaitHandleCannotBeOpenedException, IOException, SecurityException, UnauthorizedAccessException, CultureNotFoundException, NullReferenceException, ExternalException, ApplicationException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
PlatformNotSupportedException
NotSupportedException
ObjectDisposedException
InvalidOperationException
RankException
ArrayTypeMismatchException
ArgumentNullException
IndexOutOfRangeException
FormatException
OutOfMemoryException
MissingMethodException
TargetInvocationException
WaitHandleCannotBeOpenedException
IOException
SecurityException
UnauthorizedAccessException
CultureNotFoundException
NullReferenceException
ExternalException
ApplicationException
-
CreateEventSource
public static void CreateEventSource(java.lang.String source, java.lang.String logName, java.lang.String machineName) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, IndexOutOfRangeException, PlatformNotSupportedException, FormatException, OutOfMemoryException, MissingMethodException, TargetInvocationException, WaitHandleCannotBeOpenedException, IOException, ObjectDisposedException, SecurityException, UnauthorizedAccessException, ArrayTypeMismatchException, CultureNotFoundException, NullReferenceException, ExternalException, OverflowException, ApplicationException
- Throws:
java.lang.Throwable
ArgumentException
NotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
ArgumentNullException
IndexOutOfRangeException
PlatformNotSupportedException
FormatException
OutOfMemoryException
MissingMethodException
TargetInvocationException
WaitHandleCannotBeOpenedException
IOException
ObjectDisposedException
SecurityException
UnauthorizedAccessException
ArrayTypeMismatchException
CultureNotFoundException
NullReferenceException
ExternalException
OverflowException
ApplicationException
-
CreateEventSource
public static void CreateEventSource(java.lang.String source, java.lang.String logName) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, IndexOutOfRangeException, PlatformNotSupportedException, FormatException, OutOfMemoryException, MissingMethodException, TargetInvocationException, WaitHandleCannotBeOpenedException, IOException, ObjectDisposedException, SecurityException, UnauthorizedAccessException, ArrayTypeMismatchException, CultureNotFoundException, NullReferenceException, ExternalException, OverflowException, ApplicationException
- Throws:
java.lang.Throwable
ArgumentException
NotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
ArgumentNullException
IndexOutOfRangeException
PlatformNotSupportedException
FormatException
OutOfMemoryException
MissingMethodException
TargetInvocationException
WaitHandleCannotBeOpenedException
IOException
ObjectDisposedException
SecurityException
UnauthorizedAccessException
ArrayTypeMismatchException
CultureNotFoundException
NullReferenceException
ExternalException
OverflowException
ApplicationException
-
Delete
public static void Delete(java.lang.String logName, java.lang.String machineName) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, IndexOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ArgumentNullException, CultureNotFoundException, ObjectDisposedException, InvalidOperationException, MissingMethodException, TargetInvocationException, WaitHandleCannotBeOpenedException, OutOfMemoryException, IOException, ArrayTypeMismatchException, RankException, InvalidCastException, SecurityException, Win32Exception, UnauthorizedAccessException, ApplicationException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
IndexOutOfRangeException
PlatformNotSupportedException
NotSupportedException
ArgumentNullException
CultureNotFoundException
ObjectDisposedException
InvalidOperationException
MissingMethodException
TargetInvocationException
WaitHandleCannotBeOpenedException
OutOfMemoryException
IOException
ArrayTypeMismatchException
RankException
InvalidCastException
SecurityException
Win32Exception
UnauthorizedAccessException
ApplicationException
-
Delete
public static void Delete(java.lang.String logName) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, IndexOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ArgumentNullException, CultureNotFoundException, InvalidOperationException, ObjectDisposedException, OutOfMemoryException, MissingMethodException, TargetInvocationException, WaitHandleCannotBeOpenedException, IOException, RankException, ArrayTypeMismatchException, SecurityException, Win32Exception, UnauthorizedAccessException, ApplicationException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
IndexOutOfRangeException
PlatformNotSupportedException
NotSupportedException
ArgumentNullException
CultureNotFoundException
InvalidOperationException
ObjectDisposedException
OutOfMemoryException
MissingMethodException
TargetInvocationException
WaitHandleCannotBeOpenedException
IOException
RankException
ArrayTypeMismatchException
SecurityException
Win32Exception
UnauthorizedAccessException
ApplicationException
-
DeleteEventSource
public static void DeleteEventSource(java.lang.String source, java.lang.String machineName) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, IndexOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ArgumentNullException, CultureNotFoundException, ObjectDisposedException, InvalidOperationException, MissingMethodException, TargetInvocationException, WaitHandleCannotBeOpenedException, OutOfMemoryException, IOException, RankException, ArrayTypeMismatchException, SecurityException, UnauthorizedAccessException, ExternalException, ApplicationException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
IndexOutOfRangeException
PlatformNotSupportedException
NotSupportedException
ArgumentNullException
CultureNotFoundException
ObjectDisposedException
InvalidOperationException
MissingMethodException
TargetInvocationException
WaitHandleCannotBeOpenedException
OutOfMemoryException
IOException
RankException
ArrayTypeMismatchException
SecurityException
UnauthorizedAccessException
ExternalException
ApplicationException
-
DeleteEventSource
public static void DeleteEventSource(java.lang.String source) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, IndexOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ArgumentNullException, CultureNotFoundException, InvalidOperationException, ObjectDisposedException, OutOfMemoryException, MissingMethodException, TargetInvocationException, WaitHandleCannotBeOpenedException, IOException, SecurityException, UnauthorizedAccessException, ArrayTypeMismatchException, ExternalException, ApplicationException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
IndexOutOfRangeException
PlatformNotSupportedException
NotSupportedException
ArgumentNullException
CultureNotFoundException
InvalidOperationException
ObjectDisposedException
OutOfMemoryException
MissingMethodException
TargetInvocationException
WaitHandleCannotBeOpenedException
IOException
SecurityException
UnauthorizedAccessException
ArrayTypeMismatchException
ExternalException
ApplicationException
-
EndInit
public void EndInit() throws java.lang.Throwable, PlatformNotSupportedException, ArgumentException, IOException, ObjectDisposedException, SecurityException, UnauthorizedAccessException, ArgumentOutOfRangeException, OutOfMemoryException, NotSupportedException, IndexOutOfRangeException, InvalidOperationException, MissingMethodException, TargetInvocationException, Win32Exception, NullReferenceException, ArgumentNullException, RankException, ArrayTypeMismatchException, WaitHandleCannotBeOpenedException
- Throws:
java.lang.Throwable
PlatformNotSupportedException
ArgumentException
IOException
ObjectDisposedException
SecurityException
UnauthorizedAccessException
ArgumentOutOfRangeException
OutOfMemoryException
NotSupportedException
IndexOutOfRangeException
InvalidOperationException
MissingMethodException
TargetInvocationException
Win32Exception
NullReferenceException
ArgumentNullException
RankException
ArrayTypeMismatchException
WaitHandleCannotBeOpenedException
-
ModifyOverflowPolicy
public void ModifyOverflowPolicy(OverflowAction action, int retentionDays) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ObjectDisposedException, InvalidOperationException, IndexOutOfRangeException, ArgumentOutOfRangeException, NotSupportedException, FormatException, InvalidEnumArgumentException, SecurityException, UnauthorizedAccessException, IOException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
ObjectDisposedException
InvalidOperationException
IndexOutOfRangeException
ArgumentOutOfRangeException
NotSupportedException
FormatException
InvalidEnumArgumentException
SecurityException
UnauthorizedAccessException
IOException
-
RegisterDisplayName
public void RegisterDisplayName(java.lang.String resourceFile, long resourceId) throws java.lang.Throwable, ArgumentException, ObjectDisposedException, SecurityException, UnauthorizedAccessException, IOException, ArgumentOutOfRangeException, PlatformNotSupportedException, IndexOutOfRangeException, InvalidOperationException, NotSupportedException
-
WriteEntry
public void WriteEntry(java.lang.String message, EventLogEntryType type, int eventID, short category, byte[] rawData) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, NotSupportedException, InvalidOperationException, ObjectDisposedException, InvalidEnumArgumentException, IndexOutOfRangeException, IOException, OutOfMemoryException, SecurityException, UnauthorizedAccessException, ArrayTypeMismatchException, WaitHandleCannotBeOpenedException, ExternalException, ApplicationException, Win32Exception
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
NotSupportedException
InvalidOperationException
ObjectDisposedException
InvalidEnumArgumentException
IndexOutOfRangeException
IOException
OutOfMemoryException
SecurityException
UnauthorizedAccessException
ArrayTypeMismatchException
WaitHandleCannotBeOpenedException
ExternalException
ApplicationException
Win32Exception
-
WriteEntry
public void WriteEntry(java.lang.String dupParam0, EventLogEntryType dupParam1, int dupParam2, short dupParam3, JCORefOut dupParam4) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, NotSupportedException, InvalidOperationException, ObjectDisposedException, InvalidEnumArgumentException, IndexOutOfRangeException, IOException, OutOfMemoryException, SecurityException, UnauthorizedAccessException, ArrayTypeMismatchException, WaitHandleCannotBeOpenedException, ExternalException, ApplicationException, Win32Exception
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
NotSupportedException
InvalidOperationException
ObjectDisposedException
InvalidEnumArgumentException
IndexOutOfRangeException
IOException
OutOfMemoryException
SecurityException
UnauthorizedAccessException
ArrayTypeMismatchException
WaitHandleCannotBeOpenedException
ExternalException
ApplicationException
Win32Exception
-
WriteEntry
public void WriteEntry(java.lang.String message, EventLogEntryType type, int eventID, short category) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, NotSupportedException, InvalidOperationException, FormatException, IndexOutOfRangeException, InvalidEnumArgumentException, IOException, ObjectDisposedException, SecurityException, UnauthorizedAccessException, OutOfMemoryException, WaitHandleCannotBeOpenedException, ApplicationException, Win32Exception, MissingMethodException, TargetInvocationException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
NotSupportedException
InvalidOperationException
FormatException
IndexOutOfRangeException
InvalidEnumArgumentException
IOException
ObjectDisposedException
SecurityException
UnauthorizedAccessException
OutOfMemoryException
WaitHandleCannotBeOpenedException
ApplicationException
Win32Exception
MissingMethodException
TargetInvocationException
-
WriteEntry
public void WriteEntry(java.lang.String message, EventLogEntryType type, int eventID) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, NotSupportedException, InvalidOperationException, FormatException, IndexOutOfRangeException, InvalidEnumArgumentException, IOException, ObjectDisposedException, SecurityException, UnauthorizedAccessException, OutOfMemoryException, WaitHandleCannotBeOpenedException, ApplicationException, Win32Exception, MissingMethodException, TargetInvocationException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
NotSupportedException
InvalidOperationException
FormatException
IndexOutOfRangeException
InvalidEnumArgumentException
IOException
ObjectDisposedException
SecurityException
UnauthorizedAccessException
OutOfMemoryException
WaitHandleCannotBeOpenedException
ApplicationException
Win32Exception
MissingMethodException
TargetInvocationException
-
WriteEntry
public void WriteEntry(java.lang.String message, EventLogEntryType type) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, NotSupportedException, InvalidOperationException, FormatException, IndexOutOfRangeException, InvalidEnumArgumentException, IOException, ObjectDisposedException, SecurityException, UnauthorizedAccessException, OutOfMemoryException, WaitHandleCannotBeOpenedException, ApplicationException, Win32Exception, MissingMethodException, TargetInvocationException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
NotSupportedException
InvalidOperationException
FormatException
IndexOutOfRangeException
InvalidEnumArgumentException
IOException
ObjectDisposedException
SecurityException
UnauthorizedAccessException
OutOfMemoryException
WaitHandleCannotBeOpenedException
ApplicationException
Win32Exception
MissingMethodException
TargetInvocationException
-
WriteEntry
public static void WriteEntry(java.lang.String source, java.lang.String message, EventLogEntryType type, int eventID, short category, byte[] rawData) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, NotSupportedException, InvalidOperationException, ObjectDisposedException, IndexOutOfRangeException, InvalidEnumArgumentException, IOException, OutOfMemoryException, SecurityException, UnauthorizedAccessException, ArrayTypeMismatchException, WaitHandleCannotBeOpenedException, ExternalException, ApplicationException, Win32Exception
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
NotSupportedException
InvalidOperationException
ObjectDisposedException
IndexOutOfRangeException
InvalidEnumArgumentException
IOException
OutOfMemoryException
SecurityException
UnauthorizedAccessException
ArrayTypeMismatchException
WaitHandleCannotBeOpenedException
ExternalException
ApplicationException
Win32Exception
-
WriteEntry
public static void WriteEntry(java.lang.String dupParam0, java.lang.String dupParam1, EventLogEntryType dupParam2, int dupParam3, short dupParam4, JCORefOut dupParam5) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, NotSupportedException, InvalidOperationException, ObjectDisposedException, IndexOutOfRangeException, InvalidEnumArgumentException, IOException, OutOfMemoryException, SecurityException, UnauthorizedAccessException, ArrayTypeMismatchException, WaitHandleCannotBeOpenedException, ExternalException, ApplicationException, Win32Exception
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
NotSupportedException
InvalidOperationException
ObjectDisposedException
IndexOutOfRangeException
InvalidEnumArgumentException
IOException
OutOfMemoryException
SecurityException
UnauthorizedAccessException
ArrayTypeMismatchException
WaitHandleCannotBeOpenedException
ExternalException
ApplicationException
Win32Exception
-
WriteEntry
public static void WriteEntry(java.lang.String source, java.lang.String message, EventLogEntryType type, int eventID, short category) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, IndexOutOfRangeException, NotSupportedException, InvalidOperationException, FormatException, InvalidEnumArgumentException, IOException, ObjectDisposedException, SecurityException, UnauthorizedAccessException, OutOfMemoryException, WaitHandleCannotBeOpenedException, ApplicationException, Win32Exception, MissingMethodException, TargetInvocationException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
IndexOutOfRangeException
NotSupportedException
InvalidOperationException
FormatException
InvalidEnumArgumentException
IOException
ObjectDisposedException
SecurityException
UnauthorizedAccessException
OutOfMemoryException
WaitHandleCannotBeOpenedException
ApplicationException
Win32Exception
MissingMethodException
TargetInvocationException
-
WriteEntry
public static void WriteEntry(java.lang.String source, java.lang.String message, EventLogEntryType type, int eventID) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, IndexOutOfRangeException, NotSupportedException, InvalidOperationException, FormatException, InvalidEnumArgumentException, IOException, ObjectDisposedException, SecurityException, UnauthorizedAccessException, OutOfMemoryException, WaitHandleCannotBeOpenedException, ApplicationException, Win32Exception, MissingMethodException, TargetInvocationException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
IndexOutOfRangeException
NotSupportedException
InvalidOperationException
FormatException
InvalidEnumArgumentException
IOException
ObjectDisposedException
SecurityException
UnauthorizedAccessException
OutOfMemoryException
WaitHandleCannotBeOpenedException
ApplicationException
Win32Exception
MissingMethodException
TargetInvocationException
-
WriteEntry
public static void WriteEntry(java.lang.String source, java.lang.String message, EventLogEntryType type) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, IndexOutOfRangeException, NotSupportedException, InvalidOperationException, FormatException, InvalidEnumArgumentException, IOException, ObjectDisposedException, SecurityException, UnauthorizedAccessException, OutOfMemoryException, WaitHandleCannotBeOpenedException, ApplicationException, Win32Exception, MissingMethodException, TargetInvocationException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
IndexOutOfRangeException
NotSupportedException
InvalidOperationException
FormatException
InvalidEnumArgumentException
IOException
ObjectDisposedException
SecurityException
UnauthorizedAccessException
OutOfMemoryException
WaitHandleCannotBeOpenedException
ApplicationException
Win32Exception
MissingMethodException
TargetInvocationException
-
WriteEntry
public static void WriteEntry(java.lang.String source, java.lang.String message) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, IndexOutOfRangeException, NotSupportedException, InvalidOperationException, FormatException, InvalidEnumArgumentException, IOException, ObjectDisposedException, SecurityException, UnauthorizedAccessException, OutOfMemoryException, WaitHandleCannotBeOpenedException, ApplicationException, Win32Exception, MissingMethodException, TargetInvocationException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
IndexOutOfRangeException
NotSupportedException
InvalidOperationException
FormatException
InvalidEnumArgumentException
IOException
ObjectDisposedException
SecurityException
UnauthorizedAccessException
OutOfMemoryException
WaitHandleCannotBeOpenedException
ApplicationException
Win32Exception
MissingMethodException
TargetInvocationException
-
WriteEntry
public void WriteEntry(java.lang.String message) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, NotSupportedException, InvalidOperationException, FormatException, IndexOutOfRangeException, InvalidEnumArgumentException, IOException, ObjectDisposedException, SecurityException, UnauthorizedAccessException, OutOfMemoryException, WaitHandleCannotBeOpenedException, ApplicationException, Win32Exception, MissingMethodException, TargetInvocationException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
NotSupportedException
InvalidOperationException
FormatException
IndexOutOfRangeException
InvalidEnumArgumentException
IOException
ObjectDisposedException
SecurityException
UnauthorizedAccessException
OutOfMemoryException
WaitHandleCannotBeOpenedException
ApplicationException
Win32Exception
MissingMethodException
TargetInvocationException
-
WriteEvent
public void WriteEvent(EventInstance instance, byte[] data, NetObject... values) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, IndexOutOfRangeException, PlatformNotSupportedException, FormatException, IOException, ObjectDisposedException, OutOfMemoryException, SecurityException, UnauthorizedAccessException, ArrayTypeMismatchException, WaitHandleCannotBeOpenedException, NullReferenceException, ExternalException, CultureNotFoundException, ApplicationException, Win32Exception
- Throws:
java.lang.Throwable
ArgumentException
NotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
ArgumentNullException
IndexOutOfRangeException
PlatformNotSupportedException
FormatException
IOException
ObjectDisposedException
OutOfMemoryException
SecurityException
UnauthorizedAccessException
ArrayTypeMismatchException
WaitHandleCannotBeOpenedException
NullReferenceException
ExternalException
CultureNotFoundException
ApplicationException
Win32Exception
-
WriteEvent
public void WriteEvent(EventInstance dupParam0, JCORefOut dupParam1, NetObject... dupParam2) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, IndexOutOfRangeException, PlatformNotSupportedException, FormatException, IOException, ObjectDisposedException, OutOfMemoryException, SecurityException, UnauthorizedAccessException, ArrayTypeMismatchException, WaitHandleCannotBeOpenedException, NullReferenceException, ExternalException, CultureNotFoundException, ApplicationException, Win32Exception
- Throws:
java.lang.Throwable
ArgumentException
NotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
ArgumentNullException
IndexOutOfRangeException
PlatformNotSupportedException
FormatException
IOException
ObjectDisposedException
OutOfMemoryException
SecurityException
UnauthorizedAccessException
ArrayTypeMismatchException
WaitHandleCannotBeOpenedException
NullReferenceException
ExternalException
CultureNotFoundException
ApplicationException
Win32Exception
-
WriteEvent
public void WriteEvent(EventInstance instance, NetObject... values) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException, FormatException, IOException, ObjectDisposedException, SecurityException, UnauthorizedAccessException, OutOfMemoryException, WaitHandleCannotBeOpenedException, InvalidOperationException, CultureNotFoundException, ApplicationException, Win32Exception, MissingMethodException, TargetInvocationException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
ArgumentNullException
PlatformNotSupportedException
ArgumentOutOfRangeException
FormatException
IOException
ObjectDisposedException
SecurityException
UnauthorizedAccessException
OutOfMemoryException
WaitHandleCannotBeOpenedException
InvalidOperationException
CultureNotFoundException
ApplicationException
Win32Exception
MissingMethodException
TargetInvocationException
-
WriteEvent
public static void WriteEvent(java.lang.String source, EventInstance instance, byte[] data, NetObject... values) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, NotSupportedException, InvalidOperationException, ObjectDisposedException, IndexOutOfRangeException, IOException, OutOfMemoryException, SecurityException, UnauthorizedAccessException, ArrayTypeMismatchException, WaitHandleCannotBeOpenedException, ExternalException, ApplicationException, Win32Exception
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
NotSupportedException
InvalidOperationException
ObjectDisposedException
IndexOutOfRangeException
IOException
OutOfMemoryException
SecurityException
UnauthorizedAccessException
ArrayTypeMismatchException
WaitHandleCannotBeOpenedException
ExternalException
ApplicationException
Win32Exception
-
WriteEvent
public static void WriteEvent(java.lang.String dupParam0, EventInstance dupParam1, JCORefOut dupParam2, NetObject... dupParam3) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, NotSupportedException, InvalidOperationException, ObjectDisposedException, IndexOutOfRangeException, IOException, OutOfMemoryException, SecurityException, UnauthorizedAccessException, ArrayTypeMismatchException, WaitHandleCannotBeOpenedException, ExternalException, ApplicationException, Win32Exception
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
NotSupportedException
InvalidOperationException
ObjectDisposedException
IndexOutOfRangeException
IOException
OutOfMemoryException
SecurityException
UnauthorizedAccessException
ArrayTypeMismatchException
WaitHandleCannotBeOpenedException
ExternalException
ApplicationException
Win32Exception
-
WriteEvent
public static void WriteEvent(java.lang.String source, EventInstance instance, NetObject... values) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, NotSupportedException, InvalidOperationException, ObjectDisposedException, IndexOutOfRangeException, IOException, OutOfMemoryException, SecurityException, UnauthorizedAccessException, ArrayTypeMismatchException, WaitHandleCannotBeOpenedException, ExternalException, ApplicationException, Win32Exception
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
NotSupportedException
InvalidOperationException
ObjectDisposedException
IndexOutOfRangeException
IOException
OutOfMemoryException
SecurityException
UnauthorizedAccessException
ArrayTypeMismatchException
WaitHandleCannotBeOpenedException
ExternalException
ApplicationException
Win32Exception
-
getEnableRaisingEvents
public boolean getEnableRaisingEvents() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setEnableRaisingEvents
public void setEnableRaisingEvents(boolean EnableRaisingEvents) throws java.lang.Throwable, PlatformNotSupportedException, ArgumentException, IOException, ObjectDisposedException, SecurityException, UnauthorizedAccessException, ArgumentOutOfRangeException, OutOfMemoryException, NotSupportedException, InvalidOperationException, MissingMethodException, TargetInvocationException, Win32Exception, NullReferenceException, WaitHandleCannotBeOpenedException
- Throws:
java.lang.Throwable
PlatformNotSupportedException
ArgumentException
IOException
ObjectDisposedException
SecurityException
UnauthorizedAccessException
ArgumentOutOfRangeException
OutOfMemoryException
NotSupportedException
InvalidOperationException
MissingMethodException
TargetInvocationException
Win32Exception
NullReferenceException
WaitHandleCannotBeOpenedException
-
getMinimumRetentionDays
public int getMinimumRetentionDays() throws java.lang.Throwable, SecurityException, PlatformNotSupportedException, ArgumentOutOfRangeException, IndexOutOfRangeException, InvalidOperationException, ArrayTypeMismatchException, ArgumentException, IOException, NotSupportedException
-
getMaximumKilobytes
public long getMaximumKilobytes() throws java.lang.Throwable, SecurityException, PlatformNotSupportedException, ArgumentOutOfRangeException, IndexOutOfRangeException, InvalidOperationException, ArrayTypeMismatchException, ArgumentException, IOException, NotSupportedException
-
setMaximumKilobytes
public void setMaximumKilobytes(long MaximumKilobytes) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, NotSupportedException, InvalidOperationException, ObjectDisposedException, SecurityException, UnauthorizedAccessException, IOException, IndexOutOfRangeException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
NotSupportedException
InvalidOperationException
ObjectDisposedException
SecurityException
UnauthorizedAccessException
IOException
IndexOutOfRangeException
-
getSynchronizingObject
public ISynchronizeInvoke getSynchronizingObject() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setSynchronizingObject
public void setSynchronizingObject(ISynchronizeInvoke SynchronizingObject) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getEntries
public EventLogEntryCollection getEntries() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getOverflowAction
public OverflowAction getOverflowAction() throws java.lang.Throwable, SecurityException, PlatformNotSupportedException, ArgumentOutOfRangeException, IndexOutOfRangeException, InvalidOperationException, ArrayTypeMismatchException, ArgumentException, IOException, NotSupportedException
-
getLog
public java.lang.String getLog() throws java.lang.Throwable, PlatformNotSupportedException, ArgumentException, IOException, ObjectDisposedException, SecurityException, UnauthorizedAccessException, ArgumentOutOfRangeException, OutOfMemoryException, NotSupportedException
-
setLog
public void setLog(java.lang.String Log) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, IndexOutOfRangeException, PlatformNotSupportedException, FormatException, IOException, ObjectDisposedException, SecurityException, UnauthorizedAccessException, OutOfMemoryException, MissingMethodException, TargetInvocationException, Win32Exception, NullReferenceException, WaitHandleCannotBeOpenedException
- Throws:
java.lang.Throwable
ArgumentException
NotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
ArgumentNullException
IndexOutOfRangeException
PlatformNotSupportedException
FormatException
IOException
ObjectDisposedException
SecurityException
UnauthorizedAccessException
OutOfMemoryException
MissingMethodException
TargetInvocationException
Win32Exception
NullReferenceException
WaitHandleCannotBeOpenedException
-
getLogDisplayName
public java.lang.String getLogDisplayName() throws java.lang.Throwable, PlatformNotSupportedException, ArgumentException, IOException, ObjectDisposedException, SecurityException, UnauthorizedAccessException, ArgumentOutOfRangeException, OutOfMemoryException, NotSupportedException, IndexOutOfRangeException, InvalidOperationException, MissingMethodException, TargetInvocationException, RankException, ArrayTypeMismatchException, InvalidCastException
- Throws:
java.lang.Throwable
PlatformNotSupportedException
ArgumentException
IOException
ObjectDisposedException
SecurityException
UnauthorizedAccessException
ArgumentOutOfRangeException
OutOfMemoryException
NotSupportedException
IndexOutOfRangeException
InvalidOperationException
MissingMethodException
TargetInvocationException
RankException
ArrayTypeMismatchException
InvalidCastException
-
getMachineName
public java.lang.String getMachineName() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setMachineName
public void setMachineName(java.lang.String MachineName) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, IndexOutOfRangeException, PlatformNotSupportedException, FormatException, IOException, ObjectDisposedException, SecurityException, UnauthorizedAccessException, OutOfMemoryException, MissingMethodException, TargetInvocationException, Win32Exception, NullReferenceException, WaitHandleCannotBeOpenedException
- Throws:
java.lang.Throwable
ArgumentException
NotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
ArgumentNullException
IndexOutOfRangeException
PlatformNotSupportedException
FormatException
IOException
ObjectDisposedException
SecurityException
UnauthorizedAccessException
OutOfMemoryException
MissingMethodException
TargetInvocationException
Win32Exception
NullReferenceException
WaitHandleCannotBeOpenedException
-
getSource
public java.lang.String getSource() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setSource
public void setSource(java.lang.String Source) throws java.lang.Throwable, PlatformNotSupportedException, ArgumentException, IOException, ObjectDisposedException, SecurityException, UnauthorizedAccessException, ArgumentOutOfRangeException, OutOfMemoryException, NotSupportedException, IndexOutOfRangeException, InvalidOperationException, MissingMethodException, TargetInvocationException, Win32Exception, NullReferenceException, WaitHandleCannotBeOpenedException
- Throws:
java.lang.Throwable
PlatformNotSupportedException
ArgumentException
IOException
ObjectDisposedException
SecurityException
UnauthorizedAccessException
ArgumentOutOfRangeException
OutOfMemoryException
NotSupportedException
IndexOutOfRangeException
InvalidOperationException
MissingMethodException
TargetInvocationException
Win32Exception
NullReferenceException
WaitHandleCannotBeOpenedException
-
addEntryWritten
public void addEntryWritten(EntryWrittenEventHandler handler) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
removeEntryWritten
public void removeEntryWritten(EntryWrittenEventHandler handler) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
-