Exemplo n.º 1
0
 public bool LogEvent(IOrganizationIdForEventLog organizationId, ExEventLog.EventTuple tuple, string periodicKey, object arg0)
 {
     return(this.LogEvent(organizationId, tuple, periodicKey, new object[]
     {
         arg0
     }));
 }
Exemplo n.º 2
0
 public bool LogEvent(IOrganizationIdForEventLog organizationId, ExEventLog.EventTuple tuple, string periodicKey, out bool fEventSuppressed, params object[] messageArgs)
 {
     if (organizationId != null && !string.IsNullOrEmpty(organizationId.IdForEventLog) && tuple.Period == ExEventLog.EventPeriod.LogOneTime)
     {
         throw new ArgumentException("Per-tenant one-time events are not supported.", "tuple");
     }
     return(this.impl.LogEvent((organizationId != null) ? organizationId.IdForEventLog : string.Empty, tuple.EventId, tuple.CategoryId, tuple.Level, tuple.EntryType, tuple.Period, periodicKey, out fEventSuppressed, null, messageArgs));
 }
Exemplo n.º 3
0
 public bool LogEvent(IOrganizationIdForEventLog organizationId, ExEventLog.EventTuple tuple, string periodicKey, object arg0, object arg1, object arg2, object arg3)
 {
     return(this.eventLog.LogEvent(organizationId, tuple, periodicKey, new object[]
     {
         periodicKey,
         arg0,
         arg1,
         arg2,
         arg3
     }));
 }
Exemplo n.º 4
0
        public bool LogEventWithExtraData(ExEventLog.EventTuple tuple, string periodicKey, byte[] extraData, params object[] messageArgs)
        {
            bool flag;

            return(this.impl.LogEvent(string.Empty, tuple.EventId, tuple.CategoryId, tuple.Level, tuple.EntryType, tuple.Period, periodicKey, out flag, extraData, messageArgs));
        }
Exemplo n.º 5
0
        public bool LogEvent(ExEventLog.EventTuple tuple, string periodicKey, params object[] messageArgs)
        {
            bool flag;

            return(this.LogEvent(tuple, periodicKey, out flag, messageArgs));
        }
Exemplo n.º 6
0
 public bool LogEvent(ExEventLog.EventTuple tuple, string periodicKey, out bool fEventSuppressed, params object[] messageArgs)
 {
     return(this.impl.LogEvent(string.Empty, tuple.EventId, tuple.CategoryId, tuple.Level, tuple.EntryType, tuple.Period, periodicKey, out fEventSuppressed, null, messageArgs));
 }
Exemplo n.º 7
0
 public bool LogEvent(ExEventLog.EventTuple tuple, string periodicKey, out bool fEventSuppressed, params object[] messageArgs)
 {
     return(this.eventLog.LogEvent(tuple, periodicKey, out fEventSuppressed, messageArgs));
 }
Exemplo n.º 8
0
 public bool LogEvent(IOrganizationIdForEventLog organizationId, ExEventLog.EventTuple tuple, string periodicKey, out bool fEventSuppressed, params object[] messageArgs)
 {
     return(this.eventLog.LogEvent(organizationId, tuple, periodicKey, out fEventSuppressed, messageArgs));
 }
Exemplo n.º 9
0
 public bool LogEventWithExtraData(ExEventLog.EventTuple tuple, string periodicKey, byte[] extraData, params object[] messageArgs)
 {
     return(this.eventLog.LogEventWithExtraData(tuple, periodicKey, extraData, messageArgs));
 }