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, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089..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, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089static java.lang.String
assemblyShortName
Assembly name: Systemstatic 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
CreateObjRef, GetLifetimeService, InitializeLifetimeService
-
-
-
-
Field Detail
-
assemblyFullName
public static final java.lang.String assemblyFullName
Fully assembly qualified name: System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089- See Also:
- Constant Field Values
-
assemblyShortName
public static final java.lang.String assemblyShortName
Assembly name: System- 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, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NullReferenceException
-
EventLog
public EventLog(java.lang.String logName) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NullReferenceException
-
EventLog
public EventLog(java.lang.String logName, java.lang.String machineName) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NullReferenceException
-
EventLog
public EventLog(java.lang.String logName, java.lang.String machineName, java.lang.String source) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, NullReferenceException, IndexOutOfRangeException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
NullReferenceException
IndexOutOfRangeException
-
-
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) throws java.lang.Throwable, NullReferenceException, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, IndexOutOfRangeException, PlatformNotSupportedException, NotSupportedException, SecurityException, UnauthorizedAccessException, IOException
- Throws:
java.lang.Throwable
NullReferenceException
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
IndexOutOfRangeException
PlatformNotSupportedException
NotSupportedException
SecurityException
UnauthorizedAccessException
IOException
-
Exists
public static boolean Exists(java.lang.String logName, java.lang.String machineName) throws java.lang.Throwable, NullReferenceException, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, FormatException, PlatformNotSupportedException, SecurityException, UnauthorizedAccessException, IOException, IndexOutOfRangeException
- Throws:
java.lang.Throwable
NullReferenceException
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
NotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
FormatException
PlatformNotSupportedException
SecurityException
UnauthorizedAccessException
IOException
IndexOutOfRangeException
-
SourceExists
public static boolean SourceExists(java.lang.String source) throws java.lang.Throwable, NullReferenceException, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, PlatformNotSupportedException, NotSupportedException, MissingMethodException, SecurityException, UnauthorizedAccessException, IOException
- Throws:
java.lang.Throwable
NullReferenceException
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
PlatformNotSupportedException
NotSupportedException
MissingMethodException
SecurityException
UnauthorizedAccessException
IOException
-
SourceExists
public static boolean SourceExists(java.lang.String source, java.lang.String machineName) throws java.lang.Throwable, NullReferenceException, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, IndexOutOfRangeException, PlatformNotSupportedException, NotSupportedException, SecurityException, UnauthorizedAccessException, IOException
- Throws:
java.lang.Throwable
NullReferenceException
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
IndexOutOfRangeException
PlatformNotSupportedException
NotSupportedException
SecurityException
UnauthorizedAccessException
IOException
-
GetEventLogs
public static EventLog[] GetEventLogs() throws java.lang.Throwable, NullReferenceException, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, IndexOutOfRangeException, PlatformNotSupportedException, NotSupportedException, SecurityException, UnauthorizedAccessException, IOException
- Throws:
java.lang.Throwable
NullReferenceException
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
IndexOutOfRangeException
PlatformNotSupportedException
NotSupportedException
SecurityException
UnauthorizedAccessException
IOException
-
GetEventLogs
public static EventLog[] GetEventLogs(java.lang.String machineName) throws java.lang.Throwable, NullReferenceException, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, FormatException, PlatformNotSupportedException, SecurityException, UnauthorizedAccessException, IOException, IndexOutOfRangeException
- Throws:
java.lang.Throwable
NullReferenceException
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
NotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
FormatException
PlatformNotSupportedException
SecurityException
UnauthorizedAccessException
IOException
IndexOutOfRangeException
-
LogNameFromSourceName
public static java.lang.String LogNameFromSourceName(java.lang.String source, java.lang.String machineName) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NullReferenceException, PlatformNotSupportedException, NotSupportedException, MissingMethodException, SecurityException, UnauthorizedAccessException, IOException, IndexOutOfRangeException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentNullException
ArgumentException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NullReferenceException
PlatformNotSupportedException
NotSupportedException
MissingMethodException
SecurityException
UnauthorizedAccessException
IOException
IndexOutOfRangeException
-
BeginInit
public void BeginInit() throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, IndexOutOfRangeException, NullReferenceException, PlatformNotSupportedException, SecurityException, UnauthorizedAccessException, IOException, OutOfMemoryException, RankException, Win32Exception
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentNullException
ArgumentException
MissingManifestResourceException
NotImplementedException
ObjectDisposedException
InvalidOperationException
IndexOutOfRangeException
NullReferenceException
PlatformNotSupportedException
SecurityException
UnauthorizedAccessException
IOException
OutOfMemoryException
RankException
Win32Exception
-
Clear
public void Clear() throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, IndexOutOfRangeException, NullReferenceException, PlatformNotSupportedException, SecurityException, Win32Exception, RankException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, NotSupportedException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentNullException
ArgumentException
MissingManifestResourceException
NotImplementedException
ObjectDisposedException
InvalidOperationException
IndexOutOfRangeException
NullReferenceException
PlatformNotSupportedException
SecurityException
Win32Exception
RankException
WaitHandleCannotBeOpenedException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
NotSupportedException
-
Close
public void Close() throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentException, ArgumentNullException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, IndexOutOfRangeException, NullReferenceException, SecurityException, Win32Exception, PlatformNotSupportedException, RankException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentException
ArgumentNullException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
IndexOutOfRangeException
NullReferenceException
SecurityException
Win32Exception
PlatformNotSupportedException
RankException
-
CreateEventSource
public static void CreateEventSource(EventSourceCreationData sourceData) throws java.lang.Throwable, ArgumentNullException, NullReferenceException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, FormatException, PlatformNotSupportedException, OutOfMemoryException, SystemException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, SecurityException, IndexOutOfRangeException, ApplicationException
- Throws:
java.lang.Throwable
ArgumentNullException
NullReferenceException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
NotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
FormatException
PlatformNotSupportedException
OutOfMemoryException
SystemException
WaitHandleCannotBeOpenedException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
SecurityException
IndexOutOfRangeException
ApplicationException
-
CreateEventSource
public static void CreateEventSource(java.lang.String source, java.lang.String logName) throws java.lang.Throwable, ArgumentNullException, NullReferenceException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, IndexOutOfRangeException, PlatformNotSupportedException, OutOfMemoryException, SystemException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, AbandonedMutexException, NotSupportedException, SecurityException, ApplicationException
- Throws:
java.lang.Throwable
ArgumentNullException
NullReferenceException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
IndexOutOfRangeException
PlatformNotSupportedException
OutOfMemoryException
SystemException
WaitHandleCannotBeOpenedException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
AbandonedMutexException
NotSupportedException
SecurityException
ApplicationException
-
CreateEventSource
public static void CreateEventSource(java.lang.String source, java.lang.String logName, java.lang.String machineName) throws java.lang.Throwable, ArgumentNullException, NullReferenceException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, IndexOutOfRangeException, PlatformNotSupportedException, OutOfMemoryException, SystemException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, AbandonedMutexException, NotSupportedException, SecurityException, ApplicationException
- Throws:
java.lang.Throwable
ArgumentNullException
NullReferenceException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
IndexOutOfRangeException
PlatformNotSupportedException
OutOfMemoryException
SystemException
WaitHandleCannotBeOpenedException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
AbandonedMutexException
NotSupportedException
SecurityException
ApplicationException
-
Delete
public static void Delete(java.lang.String logName) throws java.lang.Throwable, NullReferenceException, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, IndexOutOfRangeException, PlatformNotSupportedException, NotSupportedException, SecurityException, OutOfMemoryException, SystemException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, AbandonedMutexException, Win32Exception, ApplicationException
- Throws:
java.lang.Throwable
NullReferenceException
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
IndexOutOfRangeException
PlatformNotSupportedException
NotSupportedException
SecurityException
OutOfMemoryException
SystemException
WaitHandleCannotBeOpenedException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
AbandonedMutexException
Win32Exception
ApplicationException
-
Delete
public static void Delete(java.lang.String logName, java.lang.String machineName) throws java.lang.Throwable, NullReferenceException, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, FormatException, PlatformNotSupportedException, SecurityException, OutOfMemoryException, SystemException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, IndexOutOfRangeException, Win32Exception, ApplicationException
- Throws:
java.lang.Throwable
NullReferenceException
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
NotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
FormatException
PlatformNotSupportedException
SecurityException
OutOfMemoryException
SystemException
WaitHandleCannotBeOpenedException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
IndexOutOfRangeException
Win32Exception
ApplicationException
-
DeleteEventSource
public static void DeleteEventSource(java.lang.String source) throws java.lang.Throwable, NullReferenceException, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, IndexOutOfRangeException, PlatformNotSupportedException, NotSupportedException, SecurityException, OutOfMemoryException, SystemException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, AbandonedMutexException, ApplicationException
- Throws:
java.lang.Throwable
NullReferenceException
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
IndexOutOfRangeException
PlatformNotSupportedException
NotSupportedException
SecurityException
OutOfMemoryException
SystemException
WaitHandleCannotBeOpenedException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
AbandonedMutexException
ApplicationException
-
DeleteEventSource
public static void DeleteEventSource(java.lang.String source, java.lang.String machineName) throws java.lang.Throwable, NullReferenceException, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, FormatException, PlatformNotSupportedException, SecurityException, OutOfMemoryException, SystemException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, IndexOutOfRangeException, ApplicationException
- Throws:
java.lang.Throwable
NullReferenceException
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
NotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
FormatException
PlatformNotSupportedException
SecurityException
OutOfMemoryException
SystemException
WaitHandleCannotBeOpenedException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
IndexOutOfRangeException
ApplicationException
-
EndInit
public void EndInit() throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, IndexOutOfRangeException, NullReferenceException, PlatformNotSupportedException, SecurityException, UnauthorizedAccessException, IOException, OutOfMemoryException, Win32Exception, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, PathTooLongException, DriveNotFoundException, OperationCanceledException, NotSupportedException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentNullException
ArgumentException
MissingManifestResourceException
NotImplementedException
ObjectDisposedException
InvalidOperationException
IndexOutOfRangeException
NullReferenceException
PlatformNotSupportedException
SecurityException
UnauthorizedAccessException
IOException
OutOfMemoryException
Win32Exception
WaitHandleCannotBeOpenedException
FileNotFoundException
DirectoryNotFoundException
PathTooLongException
DriveNotFoundException
OperationCanceledException
NotSupportedException
-
ModifyOverflowPolicy
public void ModifyOverflowPolicy(OverflowAction action, int retentionDays) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, IndexOutOfRangeException, NullReferenceException, InvalidEnumArgumentException, NotSupportedException, MissingMethodException, TargetInvocationException, SecurityException, PlatformNotSupportedException, UnauthorizedAccessException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentNullException
ArgumentException
MissingManifestResourceException
NotImplementedException
ObjectDisposedException
InvalidOperationException
IndexOutOfRangeException
NullReferenceException
InvalidEnumArgumentException
NotSupportedException
MissingMethodException
TargetInvocationException
SecurityException
PlatformNotSupportedException
UnauthorizedAccessException
-
RegisterDisplayName
public void RegisterDisplayName(java.lang.String resourceFile, long resourceId) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, IndexOutOfRangeException, NullReferenceException, NotSupportedException, MissingMethodException, TargetInvocationException, SecurityException, PlatformNotSupportedException, UnauthorizedAccessException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentNullException
ArgumentException
MissingManifestResourceException
NotImplementedException
ObjectDisposedException
InvalidOperationException
IndexOutOfRangeException
NullReferenceException
NotSupportedException
MissingMethodException
TargetInvocationException
SecurityException
PlatformNotSupportedException
UnauthorizedAccessException
-
WriteEntry
public void WriteEntry(java.lang.String message) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NullReferenceException, NotSupportedException, InvalidEnumArgumentException, PlatformNotSupportedException, SecurityException, UnauthorizedAccessException, IOException, OutOfMemoryException, SystemException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, PathTooLongException, DriveNotFoundException, OperationCanceledException, ApplicationException, Win32Exception, KeyNotFoundException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NullReferenceException
NotSupportedException
InvalidEnumArgumentException
PlatformNotSupportedException
SecurityException
UnauthorizedAccessException
IOException
OutOfMemoryException
SystemException
WaitHandleCannotBeOpenedException
FileNotFoundException
DirectoryNotFoundException
PathTooLongException
DriveNotFoundException
OperationCanceledException
ApplicationException
Win32Exception
KeyNotFoundException
-
WriteEntry
public void WriteEntry(java.lang.String message, EventLogEntryType type) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NullReferenceException, NotSupportedException, InvalidEnumArgumentException, PlatformNotSupportedException, SecurityException, UnauthorizedAccessException, IOException, OutOfMemoryException, SystemException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, PathTooLongException, DriveNotFoundException, OperationCanceledException, ApplicationException, Win32Exception, KeyNotFoundException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NullReferenceException
NotSupportedException
InvalidEnumArgumentException
PlatformNotSupportedException
SecurityException
UnauthorizedAccessException
IOException
OutOfMemoryException
SystemException
WaitHandleCannotBeOpenedException
FileNotFoundException
DirectoryNotFoundException
PathTooLongException
DriveNotFoundException
OperationCanceledException
ApplicationException
Win32Exception
KeyNotFoundException
-
WriteEntry
public void WriteEntry(java.lang.String message, EventLogEntryType type, int eventID) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NullReferenceException, NotSupportedException, InvalidEnumArgumentException, PlatformNotSupportedException, SecurityException, UnauthorizedAccessException, IOException, OutOfMemoryException, SystemException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, PathTooLongException, DriveNotFoundException, OperationCanceledException, ApplicationException, Win32Exception, KeyNotFoundException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NullReferenceException
NotSupportedException
InvalidEnumArgumentException
PlatformNotSupportedException
SecurityException
UnauthorizedAccessException
IOException
OutOfMemoryException
SystemException
WaitHandleCannotBeOpenedException
FileNotFoundException
DirectoryNotFoundException
PathTooLongException
DriveNotFoundException
OperationCanceledException
ApplicationException
Win32Exception
KeyNotFoundException
-
WriteEntry
public void WriteEntry(java.lang.String message, EventLogEntryType type, int eventID, short category) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NullReferenceException, NotSupportedException, InvalidEnumArgumentException, PlatformNotSupportedException, SecurityException, UnauthorizedAccessException, IOException, OutOfMemoryException, SystemException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, PathTooLongException, DriveNotFoundException, OperationCanceledException, ApplicationException, Win32Exception, KeyNotFoundException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NullReferenceException
NotSupportedException
InvalidEnumArgumentException
PlatformNotSupportedException
SecurityException
UnauthorizedAccessException
IOException
OutOfMemoryException
SystemException
WaitHandleCannotBeOpenedException
FileNotFoundException
DirectoryNotFoundException
PathTooLongException
DriveNotFoundException
OperationCanceledException
ApplicationException
Win32Exception
KeyNotFoundException
-
WriteEntry
public void WriteEntry(java.lang.String message, EventLogEntryType type, int eventID, short category, byte[] rawData) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, IndexOutOfRangeException, NullReferenceException, NotSupportedException, InvalidEnumArgumentException, PlatformNotSupportedException, SecurityException, UnauthorizedAccessException, IOException, OutOfMemoryException, SystemException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, PathTooLongException, DriveNotFoundException, OperationCanceledException, AbandonedMutexException, ApplicationException, Win32Exception, KeyNotFoundException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
IndexOutOfRangeException
NullReferenceException
NotSupportedException
InvalidEnumArgumentException
PlatformNotSupportedException
SecurityException
UnauthorizedAccessException
IOException
OutOfMemoryException
SystemException
WaitHandleCannotBeOpenedException
FileNotFoundException
DirectoryNotFoundException
PathTooLongException
DriveNotFoundException
OperationCanceledException
AbandonedMutexException
ApplicationException
Win32Exception
KeyNotFoundException
-
WriteEntry
public void WriteEntry(java.lang.String dupParam0, EventLogEntryType dupParam1, int dupParam2, short dupParam3, JCORefOut dupParam4) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, IndexOutOfRangeException, NullReferenceException, NotSupportedException, InvalidEnumArgumentException, PlatformNotSupportedException, SecurityException, UnauthorizedAccessException, IOException, OutOfMemoryException, SystemException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, PathTooLongException, DriveNotFoundException, OperationCanceledException, AbandonedMutexException, ApplicationException, Win32Exception, KeyNotFoundException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
IndexOutOfRangeException
NullReferenceException
NotSupportedException
InvalidEnumArgumentException
PlatformNotSupportedException
SecurityException
UnauthorizedAccessException
IOException
OutOfMemoryException
SystemException
WaitHandleCannotBeOpenedException
FileNotFoundException
DirectoryNotFoundException
PathTooLongException
DriveNotFoundException
OperationCanceledException
AbandonedMutexException
ApplicationException
Win32Exception
KeyNotFoundException
-
WriteEntry
public static void WriteEntry(java.lang.String source, java.lang.String message) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NullReferenceException, NotSupportedException, InvalidEnumArgumentException, PlatformNotSupportedException, SecurityException, UnauthorizedAccessException, IOException, OutOfMemoryException, SystemException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, PathTooLongException, DriveNotFoundException, OperationCanceledException, ApplicationException, Win32Exception, KeyNotFoundException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NullReferenceException
NotSupportedException
InvalidEnumArgumentException
PlatformNotSupportedException
SecurityException
UnauthorizedAccessException
IOException
OutOfMemoryException
SystemException
WaitHandleCannotBeOpenedException
FileNotFoundException
DirectoryNotFoundException
PathTooLongException
DriveNotFoundException
OperationCanceledException
ApplicationException
Win32Exception
KeyNotFoundException
-
WriteEntry
public static void WriteEntry(java.lang.String source, java.lang.String message, EventLogEntryType type) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NullReferenceException, NotSupportedException, InvalidEnumArgumentException, PlatformNotSupportedException, SecurityException, UnauthorizedAccessException, IOException, OutOfMemoryException, SystemException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, PathTooLongException, DriveNotFoundException, OperationCanceledException, ApplicationException, Win32Exception, KeyNotFoundException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NullReferenceException
NotSupportedException
InvalidEnumArgumentException
PlatformNotSupportedException
SecurityException
UnauthorizedAccessException
IOException
OutOfMemoryException
SystemException
WaitHandleCannotBeOpenedException
FileNotFoundException
DirectoryNotFoundException
PathTooLongException
DriveNotFoundException
OperationCanceledException
ApplicationException
Win32Exception
KeyNotFoundException
-
WriteEntry
public static void WriteEntry(java.lang.String source, java.lang.String message, EventLogEntryType type, int eventID) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NullReferenceException, NotSupportedException, InvalidEnumArgumentException, PlatformNotSupportedException, SecurityException, UnauthorizedAccessException, IOException, OutOfMemoryException, SystemException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, PathTooLongException, DriveNotFoundException, OperationCanceledException, ApplicationException, Win32Exception, KeyNotFoundException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NullReferenceException
NotSupportedException
InvalidEnumArgumentException
PlatformNotSupportedException
SecurityException
UnauthorizedAccessException
IOException
OutOfMemoryException
SystemException
WaitHandleCannotBeOpenedException
FileNotFoundException
DirectoryNotFoundException
PathTooLongException
DriveNotFoundException
OperationCanceledException
ApplicationException
Win32Exception
KeyNotFoundException
-
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, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NullReferenceException, NotSupportedException, InvalidEnumArgumentException, PlatformNotSupportedException, SecurityException, UnauthorizedAccessException, IOException, OutOfMemoryException, SystemException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, PathTooLongException, DriveNotFoundException, OperationCanceledException, ApplicationException, Win32Exception, KeyNotFoundException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NullReferenceException
NotSupportedException
InvalidEnumArgumentException
PlatformNotSupportedException
SecurityException
UnauthorizedAccessException
IOException
OutOfMemoryException
SystemException
WaitHandleCannotBeOpenedException
FileNotFoundException
DirectoryNotFoundException
PathTooLongException
DriveNotFoundException
OperationCanceledException
ApplicationException
Win32Exception
KeyNotFoundException
-
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, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, IndexOutOfRangeException, NullReferenceException, NotSupportedException, InvalidEnumArgumentException, PlatformNotSupportedException, SecurityException, UnauthorizedAccessException, IOException, OutOfMemoryException, SystemException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, PathTooLongException, DriveNotFoundException, OperationCanceledException, AbandonedMutexException, ApplicationException, Win32Exception, KeyNotFoundException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
IndexOutOfRangeException
NullReferenceException
NotSupportedException
InvalidEnumArgumentException
PlatformNotSupportedException
SecurityException
UnauthorizedAccessException
IOException
OutOfMemoryException
SystemException
WaitHandleCannotBeOpenedException
FileNotFoundException
DirectoryNotFoundException
PathTooLongException
DriveNotFoundException
OperationCanceledException
AbandonedMutexException
ApplicationException
Win32Exception
KeyNotFoundException
-
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, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, IndexOutOfRangeException, NullReferenceException, NotSupportedException, InvalidEnumArgumentException, PlatformNotSupportedException, SecurityException, UnauthorizedAccessException, IOException, OutOfMemoryException, SystemException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, PathTooLongException, DriveNotFoundException, OperationCanceledException, AbandonedMutexException, ApplicationException, Win32Exception, KeyNotFoundException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
IndexOutOfRangeException
NullReferenceException
NotSupportedException
InvalidEnumArgumentException
PlatformNotSupportedException
SecurityException
UnauthorizedAccessException
IOException
OutOfMemoryException
SystemException
WaitHandleCannotBeOpenedException
FileNotFoundException
DirectoryNotFoundException
PathTooLongException
DriveNotFoundException
OperationCanceledException
AbandonedMutexException
ApplicationException
Win32Exception
KeyNotFoundException
-
WriteEvent
public void WriteEvent(EventInstance instance, byte[] data, NetObject... values) throws java.lang.Throwable, ArgumentNullException, ArgumentOutOfRangeException, ArgumentException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, IndexOutOfRangeException, NullReferenceException, PlatformNotSupportedException, NotSupportedException, SecurityException, UnauthorizedAccessException, IOException, OutOfMemoryException, SystemException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, PathTooLongException, DriveNotFoundException, OperationCanceledException, AbandonedMutexException, ApplicationException, Win32Exception, KeyNotFoundException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentOutOfRangeException
ArgumentException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
IndexOutOfRangeException
NullReferenceException
PlatformNotSupportedException
NotSupportedException
SecurityException
UnauthorizedAccessException
IOException
OutOfMemoryException
SystemException
WaitHandleCannotBeOpenedException
FileNotFoundException
DirectoryNotFoundException
PathTooLongException
DriveNotFoundException
OperationCanceledException
AbandonedMutexException
ApplicationException
Win32Exception
KeyNotFoundException
-
WriteEvent
public void WriteEvent(EventInstance dupParam0, JCORefOut dupParam1, NetObject... dupParam2) throws java.lang.Throwable, ArgumentNullException, ArgumentOutOfRangeException, ArgumentException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, IndexOutOfRangeException, NullReferenceException, PlatformNotSupportedException, NotSupportedException, SecurityException, UnauthorizedAccessException, IOException, OutOfMemoryException, SystemException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, PathTooLongException, DriveNotFoundException, OperationCanceledException, AbandonedMutexException, ApplicationException, Win32Exception, KeyNotFoundException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentOutOfRangeException
ArgumentException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
IndexOutOfRangeException
NullReferenceException
PlatformNotSupportedException
NotSupportedException
SecurityException
UnauthorizedAccessException
IOException
OutOfMemoryException
SystemException
WaitHandleCannotBeOpenedException
FileNotFoundException
DirectoryNotFoundException
PathTooLongException
DriveNotFoundException
OperationCanceledException
AbandonedMutexException
ApplicationException
Win32Exception
KeyNotFoundException
-
WriteEvent
public void WriteEvent(EventInstance instance, NetObject... values) throws java.lang.Throwable, ArgumentNullException, ArgumentOutOfRangeException, ArgumentException, MissingManifestResourceException, InvalidOperationException, IndexOutOfRangeException, NullReferenceException, ObjectDisposedException, PlatformNotSupportedException, SecurityException, UnauthorizedAccessException, IOException, OutOfMemoryException, SystemException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, PathTooLongException, DriveNotFoundException, OperationCanceledException, CultureNotFoundException, NotSupportedException, ApplicationException, Win32Exception, KeyNotFoundException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentOutOfRangeException
ArgumentException
MissingManifestResourceException
InvalidOperationException
IndexOutOfRangeException
NullReferenceException
ObjectDisposedException
PlatformNotSupportedException
SecurityException
UnauthorizedAccessException
IOException
OutOfMemoryException
SystemException
WaitHandleCannotBeOpenedException
FileNotFoundException
DirectoryNotFoundException
PathTooLongException
DriveNotFoundException
OperationCanceledException
CultureNotFoundException
NotSupportedException
ApplicationException
Win32Exception
KeyNotFoundException
-
WriteEvent
public static void WriteEvent(java.lang.String source, EventInstance instance, byte[] data, NetObject... values) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, IndexOutOfRangeException, NullReferenceException, PlatformNotSupportedException, NotSupportedException, SecurityException, UnauthorizedAccessException, IOException, OutOfMemoryException, SystemException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, PathTooLongException, DriveNotFoundException, OperationCanceledException, AbandonedMutexException, ApplicationException, Win32Exception, KeyNotFoundException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
IndexOutOfRangeException
NullReferenceException
PlatformNotSupportedException
NotSupportedException
SecurityException
UnauthorizedAccessException
IOException
OutOfMemoryException
SystemException
WaitHandleCannotBeOpenedException
FileNotFoundException
DirectoryNotFoundException
PathTooLongException
DriveNotFoundException
OperationCanceledException
AbandonedMutexException
ApplicationException
Win32Exception
KeyNotFoundException
-
WriteEvent
public static void WriteEvent(java.lang.String dupParam0, EventInstance dupParam1, JCORefOut dupParam2, NetObject... dupParam3) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, IndexOutOfRangeException, NullReferenceException, PlatformNotSupportedException, NotSupportedException, SecurityException, UnauthorizedAccessException, IOException, OutOfMemoryException, SystemException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, PathTooLongException, DriveNotFoundException, OperationCanceledException, AbandonedMutexException, ApplicationException, Win32Exception, KeyNotFoundException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
IndexOutOfRangeException
NullReferenceException
PlatformNotSupportedException
NotSupportedException
SecurityException
UnauthorizedAccessException
IOException
OutOfMemoryException
SystemException
WaitHandleCannotBeOpenedException
FileNotFoundException
DirectoryNotFoundException
PathTooLongException
DriveNotFoundException
OperationCanceledException
AbandonedMutexException
ApplicationException
Win32Exception
KeyNotFoundException
-
WriteEvent
public static void WriteEvent(java.lang.String source, EventInstance instance, NetObject... values) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, IndexOutOfRangeException, NullReferenceException, PlatformNotSupportedException, NotSupportedException, SecurityException, UnauthorizedAccessException, IOException, OutOfMemoryException, SystemException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, PathTooLongException, DriveNotFoundException, OperationCanceledException, AbandonedMutexException, ApplicationException, Win32Exception, KeyNotFoundException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
IndexOutOfRangeException
NullReferenceException
PlatformNotSupportedException
NotSupportedException
SecurityException
UnauthorizedAccessException
IOException
OutOfMemoryException
SystemException
WaitHandleCannotBeOpenedException
FileNotFoundException
DirectoryNotFoundException
PathTooLongException
DriveNotFoundException
OperationCanceledException
AbandonedMutexException
ApplicationException
Win32Exception
KeyNotFoundException
-
getEnableRaisingEvents
public boolean getEnableRaisingEvents() throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, IndexOutOfRangeException, NullReferenceException
-
setEnableRaisingEvents
public void setEnableRaisingEvents(boolean EnableRaisingEvents) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, IndexOutOfRangeException, NullReferenceException, PlatformNotSupportedException, SecurityException, UnauthorizedAccessException, IOException, OutOfMemoryException, Win32Exception, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, PathTooLongException, DriveNotFoundException, OperationCanceledException, NotSupportedException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentNullException
ArgumentException
MissingManifestResourceException
NotImplementedException
ObjectDisposedException
InvalidOperationException
IndexOutOfRangeException
NullReferenceException
PlatformNotSupportedException
SecurityException
UnauthorizedAccessException
IOException
OutOfMemoryException
Win32Exception
WaitHandleCannotBeOpenedException
FileNotFoundException
DirectoryNotFoundException
PathTooLongException
DriveNotFoundException
OperationCanceledException
NotSupportedException
-
getMinimumRetentionDays
public int getMinimumRetentionDays() throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, IndexOutOfRangeException, NullReferenceException, NotSupportedException, MissingMethodException, TargetInvocationException, SecurityException, PlatformNotSupportedException, IOException, OutOfMemoryException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentNullException
ArgumentException
MissingManifestResourceException
NotImplementedException
ObjectDisposedException
InvalidOperationException
IndexOutOfRangeException
NullReferenceException
NotSupportedException
MissingMethodException
TargetInvocationException
SecurityException
PlatformNotSupportedException
IOException
OutOfMemoryException
-
getMaximumKilobytes
public long getMaximumKilobytes() throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, IndexOutOfRangeException, NullReferenceException, NotSupportedException, MissingMethodException, TargetInvocationException, SecurityException, PlatformNotSupportedException, IOException, OutOfMemoryException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentNullException
ArgumentException
MissingManifestResourceException
NotImplementedException
ObjectDisposedException
InvalidOperationException
IndexOutOfRangeException
NullReferenceException
NotSupportedException
MissingMethodException
TargetInvocationException
SecurityException
PlatformNotSupportedException
IOException
OutOfMemoryException
-
setMaximumKilobytes
public void setMaximumKilobytes(long MaximumKilobytes) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, IndexOutOfRangeException, NullReferenceException, NotSupportedException, MissingMethodException, TargetInvocationException, SecurityException, PlatformNotSupportedException, UnauthorizedAccessException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentNullException
ArgumentException
MissingManifestResourceException
NotImplementedException
ObjectDisposedException
InvalidOperationException
IndexOutOfRangeException
NullReferenceException
NotSupportedException
MissingMethodException
TargetInvocationException
SecurityException
PlatformNotSupportedException
UnauthorizedAccessException
-
getSynchronizingObject
public ISynchronizeInvoke getSynchronizingObject() throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, IndexOutOfRangeException, NullReferenceException
-
setSynchronizingObject
public void setSynchronizingObject(ISynchronizeInvoke SynchronizingObject) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getEntries
public EventLogEntryCollection getEntries() throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, IndexOutOfRangeException, NullReferenceException
-
getOverflowAction
public OverflowAction getOverflowAction() throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, IndexOutOfRangeException, NullReferenceException, NotSupportedException, MissingMethodException, TargetInvocationException, SecurityException, PlatformNotSupportedException, IOException, OutOfMemoryException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentNullException
ArgumentException
MissingManifestResourceException
NotImplementedException
ObjectDisposedException
InvalidOperationException
IndexOutOfRangeException
NullReferenceException
NotSupportedException
MissingMethodException
TargetInvocationException
SecurityException
PlatformNotSupportedException
IOException
OutOfMemoryException
-
getLog
public java.lang.String getLog() throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, IndexOutOfRangeException, NullReferenceException, PlatformNotSupportedException, SecurityException, UnauthorizedAccessException, IOException, OutOfMemoryException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentNullException
ArgumentException
MissingManifestResourceException
NotImplementedException
ObjectDisposedException
InvalidOperationException
IndexOutOfRangeException
NullReferenceException
PlatformNotSupportedException
SecurityException
UnauthorizedAccessException
IOException
OutOfMemoryException
-
setLog
public void setLog(java.lang.String Log) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, IndexOutOfRangeException, NullReferenceException, SecurityException, NotSupportedException, MissingMethodException, PlatformNotSupportedException, UnauthorizedAccessException, IOException, OutOfMemoryException, Win32Exception, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, PathTooLongException, DriveNotFoundException, OperationCanceledException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentNullException
ArgumentException
MissingManifestResourceException
NotImplementedException
ObjectDisposedException
InvalidOperationException
IndexOutOfRangeException
NullReferenceException
SecurityException
NotSupportedException
MissingMethodException
PlatformNotSupportedException
UnauthorizedAccessException
IOException
OutOfMemoryException
Win32Exception
WaitHandleCannotBeOpenedException
FileNotFoundException
DirectoryNotFoundException
PathTooLongException
DriveNotFoundException
OperationCanceledException
-
getLogDisplayName
public java.lang.String getLogDisplayName() throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentException, ArgumentNullException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, IndexOutOfRangeException, NullReferenceException, PlatformNotSupportedException, SecurityException, UnauthorizedAccessException, IOException, OutOfMemoryException, KeyNotFoundException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentException
ArgumentNullException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
IndexOutOfRangeException
NullReferenceException
PlatformNotSupportedException
SecurityException
UnauthorizedAccessException
IOException
OutOfMemoryException
KeyNotFoundException
-
getMachineName
public java.lang.String getMachineName() throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, IndexOutOfRangeException, NullReferenceException
-
setMachineName
public void setMachineName(java.lang.String MachineName) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, NullReferenceException, IndexOutOfRangeException, SecurityException, NotSupportedException, PlatformNotSupportedException, UnauthorizedAccessException, IOException, Win32Exception, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, PathTooLongException, DriveNotFoundException, OperationCanceledException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
NullReferenceException
IndexOutOfRangeException
SecurityException
NotSupportedException
PlatformNotSupportedException
UnauthorizedAccessException
IOException
Win32Exception
WaitHandleCannotBeOpenedException
FileNotFoundException
DirectoryNotFoundException
PathTooLongException
DriveNotFoundException
OperationCanceledException
-
getSource
public java.lang.String getSource() throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, IndexOutOfRangeException, NullReferenceException
-
setSource
public void setSource(java.lang.String Source) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, IndexOutOfRangeException, NullReferenceException, PlatformNotSupportedException, SecurityException, UnauthorizedAccessException, IOException, OutOfMemoryException, Win32Exception, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, PathTooLongException, DriveNotFoundException, OperationCanceledException, NotSupportedException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentNullException
ArgumentException
MissingManifestResourceException
NotImplementedException
ObjectDisposedException
InvalidOperationException
IndexOutOfRangeException
NullReferenceException
PlatformNotSupportedException
SecurityException
UnauthorizedAccessException
IOException
OutOfMemoryException
Win32Exception
WaitHandleCannotBeOpenedException
FileNotFoundException
DirectoryNotFoundException
PathTooLongException
DriveNotFoundException
OperationCanceledException
NotSupportedException
-
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
-
-