當前位置: 首頁>>代碼示例>>C#>>正文


C# EventInstance構造函數代碼示例

本文整理匯總了C#中System.Diagnostics.EventInstance.EventInstance構造函數的典型用法代碼示例。如果您正苦於以下問題:C# EventInstance構造函數的具體用法?C# EventInstance怎麽用?C# EventInstance使用的例子?那麽, 這裏精選的構造函數代碼示例或許可以為您提供幫助。您也可以進一步了解該構造函數所在System.Diagnostics.EventInstance的用法示例。


在下文中一共展示了EventInstance構造函數的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: if

// Ensure that the source has already been registered using
// EventLogInstaller or EventLog.CreateEventSource.

string sourceName = "SampleApplicationSource";
if(EventLog.SourceExists(sourceName))
{
    // Define an informational event with no category.
    // The message identifier corresponds to the message text in the
    // message resource file defined for the source.
    EventInstance myEvent = new EventInstance(UpdateCycleCompleteMsgId, 0);
    
    // Write the event to the event log using the registered source.
    EventLog.WriteEvent(sourceName, myEvent);

    // Reuse the event data instance for another event entry.
    // Set the entry category and message identifiers for
    // the appropriate resource identifiers in the resource files
    // for the registered source.  Set the event type to Warning.

    myEvent.CategoryId = RefreshCategoryMsgId;
    myEvent.EntryType = EventLogEntryType.Warning;
    myEvent.InstanceId = ServerConnectionDownMsgId;

    // Write the event to the event log using the registered source.
    // Insert the machine name into the event message text.
    EventLog.WriteEvent(sourceName, myEvent, Environment.MachineName);
}
else 
{
    Console.WriteLine("Warning - event source {0} not registered", 
        sourceName);
}
開發者ID:.NET開發者,項目名稱:System.Diagnostics,代碼行數:32,代碼來源:EventInstance

示例2: if

// Create the event source if it does not exist.
     string sourceName = "SampleApplicationSource";
     if(!EventLog.SourceExists(sourceName))
     {
         // Call a local method to register the event log source
         // for the event log "myNewLog."  Use the resource file
         // EventLogMsgs.dll in the current directory for message text.

         string messageFile =  String.Format("{0}\\{1}", 
             System.Environment.CurrentDirectory, 
             "EventLogMsgs.dll");

         CreateEventSourceSample1(messageFile);
     }

     // Get the event log corresponding to the existing source.
     string myLogName = EventLog.LogNameFromSourceName(sourceName,".");

     EventLog myEventLog = new EventLog(myLogName, ".", sourceName);

     // Define two audit events.

     // The message identifiers correspond to the message text in the
     // message resource file defined for the source.
     EventInstance myAuditSuccessEvent = new EventInstance(AuditSuccessMsgId, 0, EventLogEntryType.SuccessAudit);
     EventInstance myAuditFailEvent = new EventInstance(AuditFailedMsgId, 0, EventLogEntryType.FailureAudit);

     // Insert the method name into the event log message.
     string [] insertStrings = {"EventLogSamples.WriteEventSample1"};
     
     // Write the events to the event log.

     myEventLog.WriteEvent(myAuditSuccessEvent, insertStrings); 

     // Append binary data to the audit failure event entry.
     byte [] binaryData = { 3, 4, 5, 6 };
     myEventLog.WriteEvent(myAuditFailEvent, binaryData, insertStrings);
開發者ID:.NET開發者,項目名稱:System.Diagnostics,代碼行數:37,代碼來源:EventInstance


注:本文中的System.Diagnostics.EventInstance.EventInstance構造函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。