Beispiel #1
0
 public static extern UIntPtr Log4JEventProperties(
     EventHandle log4JEvent,
     UIntPtr skip,
     [Out]
     [MarshalAs (UnmanagedType.LPArray, ArraySubType = UnmanagedType.Struct, SizeParamIndex = 3)]
     Log4JEventProperty[] properties,
     UIntPtr propertiesSize
     );
Beispiel #2
0
 extern public static UIntPtr Log4JEventProperties
 (
     EventHandle log4JEvent,
     UIntPtr skip,
     [Out]
     [MarshalAs(UnmanagedType.LPArray, ArraySubType = UnmanagedType.Struct, SizeParamIndex = 3)]
     Log4JEventProperty[] properties,
     UIntPtr propertiesSize
 );
Beispiel #3
0
        internal Event(EventHandle impl, ulong id, IEventSource owner)
        {
            Debug.Assert(impl != null, "Event.ctor: impl is null.");
            Debug.Assert(owner != null, "Event.ctor: owner is null.");

            impl_  = impl;
            id_    = id;
            owner_ = owner;
        }
Beispiel #4
0
        internal Event(EventHandle impl, ulong id, IEventSource owner)
        {
            Debug.Assert (impl != null, "Event.ctor: impl is null.");
            Debug.Assert (owner != null, "Event.ctor: owner is null.");

            impl_ = impl;
            id_ = id;
            owner_ = owner;
        }
Beispiel #5
0
 extern public static bool Log4JFilterApply(FilterHandle self, EventHandle @event);
Beispiel #6
0
 extern public static EventHandle Log4JEventSourceNext
     (EventSourceHandle self, EventHandle @event);
Beispiel #7
0
 extern public static void Log4JEventThrowable
     (EventHandle log4JEvent, out IntPtr value, out UIntPtr size);
Beispiel #8
0
 extern public static void Log4JEventMessage
     (EventHandle log4JEvent, out IntPtr value, out UIntPtr size);
Beispiel #9
0
 extern public static Int64 Log4JEventTimestamp(EventHandle log4JEvent);
Beispiel #10
0
 public static extern bool Log4JFilterApply(FilterHandle self, EventHandle @event);
Beispiel #11
0
 public static extern Int64 Log4JEventTimestamp(EventHandle log4JEvent);
Beispiel #12
0
 public static extern void Log4JEventThrowable(EventHandle log4JEvent, out IntPtr value, out UIntPtr size);
Beispiel #13
0
 public static extern EventHandle Log4JEventSourceNext(EventSourceHandle self, EventHandle @event);
Beispiel #14
0
 public static extern void Log4JEventMessage(EventHandle log4JEvent, out IntPtr value, out UIntPtr size);