예제 #1
0
 public static extern UIntPtr Log4JEventProperties(
     EventHandle log4JEvent,
     UIntPtr skip,
     [Out]
     [MarshalAs (UnmanagedType.LPArray, ArraySubType = UnmanagedType.Struct, SizeParamIndex = 3)]
     Log4JEventProperty[] properties,
     UIntPtr propertiesSize
     );
예제 #2
0
 extern public static UIntPtr Log4JEventProperties
 (
     EventHandle log4JEvent,
     UIntPtr skip,
     [Out]
     [MarshalAs(UnmanagedType.LPArray, ArraySubType = UnmanagedType.Struct, SizeParamIndex = 3)]
     Log4JEventProperty[] properties,
     UIntPtr propertiesSize
 );
예제 #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;
        }
예제 #4
0
파일: Event.cs 프로젝트: MaxKot/Log4JDash
        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;
        }
예제 #5
0
 extern public static bool Log4JFilterApply(FilterHandle self, EventHandle @event);
예제 #6
0
 extern public static EventHandle Log4JEventSourceNext
     (EventSourceHandle self, EventHandle @event);
예제 #7
0
 extern public static void Log4JEventThrowable
     (EventHandle log4JEvent, out IntPtr value, out UIntPtr size);
예제 #8
0
 extern public static void Log4JEventMessage
     (EventHandle log4JEvent, out IntPtr value, out UIntPtr size);
예제 #9
0
 extern public static Int64 Log4JEventTimestamp(EventHandle log4JEvent);
예제 #10
0
 public static extern bool Log4JFilterApply(FilterHandle self, EventHandle @event);
예제 #11
0
 public static extern Int64 Log4JEventTimestamp(EventHandle log4JEvent);
예제 #12
0
 public static extern void Log4JEventThrowable(EventHandle log4JEvent, out IntPtr value, out UIntPtr size);
예제 #13
0
 public static extern EventHandle Log4JEventSourceNext(EventSourceHandle self, EventHandle @event);
예제 #14
0
 public static extern void Log4JEventMessage(EventHandle log4JEvent, out IntPtr value, out UIntPtr size);