Ejemplo n.º 1
0
 public static extern UIntPtr Log4JEventProperties(
     EventHandle log4JEvent,
     UIntPtr skip,
     [Out]
     [MarshalAs (UnmanagedType.LPArray, ArraySubType = UnmanagedType.Struct, SizeParamIndex = 3)]
     Log4JEventProperty[] properties,
     UIntPtr propertiesSize
     );
Ejemplo n.º 2
0
 extern public static UIntPtr Log4JEventProperties
 (
     EventHandle log4JEvent,
     UIntPtr skip,
     [Out]
     [MarshalAs(UnmanagedType.LPArray, ArraySubType = UnmanagedType.Struct, SizeParamIndex = 3)]
     Log4JEventProperty[] properties,
     UIntPtr propertiesSize
 );
Ejemplo n.º 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;
        }
Ejemplo n.º 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;
        }
Ejemplo n.º 5
0
 extern public static bool Log4JFilterApply(FilterHandle self, EventHandle @event);
Ejemplo n.º 6
0
 extern public static EventHandle Log4JEventSourceNext
     (EventSourceHandle self, EventHandle @event);
Ejemplo n.º 7
0
 extern public static void Log4JEventThrowable
     (EventHandle log4JEvent, out IntPtr value, out UIntPtr size);
Ejemplo n.º 8
0
 extern public static void Log4JEventMessage
     (EventHandle log4JEvent, out IntPtr value, out UIntPtr size);
Ejemplo n.º 9
0
 extern public static Int64 Log4JEventTimestamp(EventHandle log4JEvent);
Ejemplo n.º 10
0
 public static extern bool Log4JFilterApply(FilterHandle self, EventHandle @event);
Ejemplo n.º 11
0
 public static extern Int64 Log4JEventTimestamp(EventHandle log4JEvent);
Ejemplo n.º 12
0
 public static extern void Log4JEventThrowable(EventHandle log4JEvent, out IntPtr value, out UIntPtr size);
Ejemplo n.º 13
0
 public static extern EventHandle Log4JEventSourceNext(EventSourceHandle self, EventHandle @event);
Ejemplo n.º 14
0
 public static extern void Log4JEventMessage(EventHandle log4JEvent, out IntPtr value, out UIntPtr size);