コード例 #1
0
 public void LogToOperations(string message, Microsoft.SharePoint.Administration.EventSeverity severity)
 {
 }
コード例 #2
0
 public void LogToOperations(string message, int eventId, Microsoft.SharePoint.Administration.EventSeverity severity, string category)
 {
 }
コード例 #3
0
 /// <summary>
 /// Writes an error message into the log, don't use in sandbox.
 /// </summary>
 /// <param name="message">The message to write</param>
 /// <param name="eventId">The eventId that corresponds to the event. This value, coupled with the EventSource is often used by
 /// administrators and IT PRo's to monitor the EventLog of a system.</param>
 /// <param name="severity">How serious the event is.</param>
 public void LogToOperations(string message, int eventId, Microsoft.SharePoint.Administration.EventSeverity severity)
 {
     m_logger.LogToOperations(message, eventId, severity);
 }
コード例 #4
0
 public void LogToOperations(Exception exception, string additionalMessage, int eventId, Microsoft.SharePoint.Administration.EventSeverity severity, string category)
 {
 }
コード例 #5
0
 /// <summary>
 /// Writes information about an exception into the log to be read by operations. Don't use from sandbox.
 /// </summary>
 /// <param name="exception">The exception to write into the log.</param>
 /// <param name="eventId">The eventId that corresponds to the event. This value, coupled with the EventSource is often used by
 /// administrators and IT PRo's to monitor the EventLog of a system.</param>
 /// <param name="severity">The severity of the exception.</param>
 /// <param name="category">The category to write the message to.</param>
 public void LogToOperations(Exception exception, int eventId, Microsoft.SharePoint.Administration.EventSeverity severity, string category)
 {
     m_logger.LogToOperations(exception, eventId, severity, category);
 }