⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 opennetcf.xml

📁 LED control in VB on WinCE for S3C2440
💻 XML
📖 第 1 页 / 共 5 页
字号:
            </remarks>
        </member>
        <member name="M:OpenNETCF.Diagnostics.DebugMessage.Write(System.Boolean,System.String)">
            <summary>
            If <i>condition</i> evaluates to <b>true</b> and the current assembly is a Debug build, <i>message</i> will be output on the device's debug port.
            </summary>
            <param name="condition">When <b>true</b> output will be sent to the debug port</param>
            <param name="message">Text to output</param>
        </member>
        <member name="M:OpenNETCF.Diagnostics.DebugMessage.Write(System.Boolean,System.Object)">
            <summary>
            If <i>condition</i> evaluates to <b>true</b> and the current assembly is a Debug build, the result from <i>obj.ToString</i> will be output on the device's debug port.
            </summary>
            <param name="condition">When <b>true</b> output will be sent to the debug port</param>
            <param name="obj">Object to call ToString() on</param>
        </member>
        <member name="M:OpenNETCF.Diagnostics.DebugMessage.WriteLine(System.Boolean,System.String)">
            <summary>
            If <i>condition</i> evaluates to <b>true</b> and the current assembly is a Debug build, <i>message</i> will be output on the device's debug port followed by a carriage return and new line.
            Lines output with <i>WriteLine</i> are also affected by calls to <c>Indent</c> or <c>Unindent</c>.
            </summary>
            <param name="condition">When <b>true</b> output will be sent to the debug port</param>
            <param name="message">Text to output</param>
        </member>
        <member name="M:OpenNETCF.Diagnostics.DebugMessage.Indent">
            <summary>
            Increases the indent level used by <c>WriteLine</c> by two spaces
            </summary>
        </member>
        <member name="M:OpenNETCF.Diagnostics.DebugMessage.Unindent">
            <summary>
            Decreases the indent level used by <c>WriteLine</c> by two spaces
            </summary>
        </member>
        <member name="T:OpenNETCF.Diagnostics.DiagnosticsConfigurationHandler">
            <summary>
            Summary description for DiagnosticsConfigurationHandler.
            </summary>
        </member>
        <member name="M:OpenNETCF.Diagnostics.DiagnosticsConfigurationHandler.Create(System.Object,System.Object,System.Xml.XmlNode)">
            <summary>
            
            </summary>
            <param name="parent"></param>
            <param name="configContext"></param>
            <param name="section"></param>
            <returns></returns>
        </member>
        <member name="T:OpenNETCF.Diagnostics.EntryWrittenEventArgs">
            <summary>
            Event arguments for the last entry written to the log EntryWrittenEventArgs.
            </summary>
        </member>
        <member name="F:OpenNETCF.Diagnostics.EntryWrittenEventArgs.eventLogEntry">
            <summary>
            The entry that was just written to the log
            </summary>
        </member>
        <member name="M:OpenNETCF.Diagnostics.EntryWrittenEventArgs.#ctor(OpenNETCF.Diagnostics.EventLogEntry)">
            <summary>
            Default constructor
            </summary>
        </member>
        <member name="P:OpenNETCF.Diagnostics.EntryWrittenEventArgs.EventLogEntry">
            <summary>
            The event log entry that was written to the log
            </summary>
        </member>
        <member name="T:OpenNETCF.Diagnostics.EntryWrittenEventHandler">
            <summary>
            
            </summary>
            <param name="sender"></param>
            <param name="e"></param>
        </member>
        <member name="T:OpenNETCF.Diagnostics.EventLog">
            <summary>
            Class is similar to the System.Diagnostics.EventLog in the full framework with a few differences.
            1. Since CE.Net and PPC have no event log we write the log to the application root directory as an XML file
            2. Every Application will have it's own log.  There will not be one log system/device wide
            3. Attempted to keep as close as possible to the full framework class but some things are missing
            </summary>
        </member>
        <member name="M:OpenNETCF.Diagnostics.EventLog.#ctor(System.String,System.String,OpenNETCF.Diagnostics.IEventLogWriter)">
            <summary>
            Overloaded constructor were a custom IEventLogWriter can be specified
            </summary>
            <param name="log">Indicates the log item</param>
            <param name="source">Indicates what logged the event</param>
            <param name="customEventLogWriter">Custom event log writter which implements IEventLogWriter</param>
        </member>
        <member name="M:OpenNETCF.Diagnostics.EventLog.#ctor(System.String,System.String,OpenNETCF.Diagnostics.EventLogWriterType)">
            <summary>
            Default constructor.
            </summary>
            <param name="log">Indicates the log item</param>
            <param name="source">Indicates what logged the event</param>
            <param name="type"></param>
        </member>
        <member name="M:OpenNETCF.Diagnostics.EventLog.#ctor(System.String,System.String,System.String,System.String,OpenNETCF.Diagnostics.EventLogWriterType)">
            <summary>
            Overloaded constructor
            </summary>
            <param name="log">Indicates the log item</param>
            <param name="source">Indicates what logged the event</param>
            <param name="path"></param>
            <param name="fileName"></param>
            <param name="type"></param>
        </member>
        <member name="M:OpenNETCF.Diagnostics.EventLog.Delete(System.String)">
            <summary>
            Removes an event log from the local file.
            </summary>
            <param name="logName">The name of the log to delete.</param>
        </member>
        <member name="M:OpenNETCF.Diagnostics.EventLog.GetEventLogs">
            <summary>
            Searches for all event logs on the local file and creates an array of EventLog objects that contain the list.
            </summary>
            <returns>An array of type EventLog that represents the logs on the local computer.</returns>
        </member>
        <member name="M:OpenNETCF.Diagnostics.EventLog.Exists(System.String)">
            <summary>
            Determines whether the log exists on the local file.
            </summary>
            <param name="logName">The name of the log to search for.</param>
            <remarks>The full framework defines this method as static.  Since this is not a system wide log but an application specific log this method will only search for a Log Item with the current XML file.</remarks>
        </member>
        <member name="M:OpenNETCF.Diagnostics.EventLog.Clear">
            <summary>
            Removes all entries from the event log.
            </summary>
        </member>
        <member name="M:OpenNETCF.Diagnostics.EventLog.Close">
            <summary>
            Closes the event log and releases read and write handles.
            </summary>
        </member>
        <member name="M:OpenNETCF.Diagnostics.EventLog.WriteEntry(System.String)">
            <summary>
            Writes an information type entry, with the given message text, to the event log.
            </summary>
            <param name="message">The string to write to the event log.</param>
        </member>
        <member name="M:OpenNETCF.Diagnostics.EventLog.WriteEntry(System.String,OpenNETCF.Diagnostics.EventLogEntryType)">
            <summary>
            Writes an error, warning, information, success audit, or failure audit entry with the given message text to the event log.
            </summary>
            <param name="message">The string to write to the event log.</param>
            <param name="type">One of the <see cref="T:OpenNETCF.Diagnostics.EventLogEntryType">EventLogEntryType</see> values.</param>
        </member>
        <member name="M:OpenNETCF.Diagnostics.EventLog.WriteEntry(System.String,System.String)">
            <summary>
            Writes an information type entry with the given message text to the event log, using the specified event source.
            </summary>
            <param name="source">The source by which the application is registered. </param>
            <param name="message">The string to write to the event log.</param>
        </member>
        <member name="M:OpenNETCF.Diagnostics.EventLog.WriteEntry(System.String,OpenNETCF.Diagnostics.EventLogEntryType,System.Int32)">
            <summary>
            Writes an entry with the given message text and application-defined event identifier to the event log.
            </summary>
            <param name="message">The string to write to the event log. </param>
            <param name="type">One of the <see cref="T:OpenNETCF.Diagnostics.EventLogEntryType">EventLogEntryType</see> values. </param>
            <param name="eventID">The application-specific identifier for the event. </param>
        </member>
        <member name="M:OpenNETCF.Diagnostics.EventLog.WriteEntry(System.String,System.String,OpenNETCF.Diagnostics.EventLogEntryType)">
            <summary>
            Writes an error, warning, information, success audit, or failure audit entry with the given message text to the event log, using the specified event source.
            </summary>
            <param name="source">The source by which the application is registered.</param>
            <param name="message">The string to write to the event log.</param>
            <param name="type">One of the <see cref="T:OpenNETCF.Diagnostics.EventLogEntryType">EventLogEntryType</see> values.</param>
        </member>
        <member name="M:OpenNETCF.Diagnostics.EventLog.WriteEntry(System.String,OpenNETCF.Diagnostics.EventLogEntryType,System.Int32,System.Int16)">
            <summary>
            Writes an entry with the given message text, application-defined event identifier, and application-defined category to the event log.
            </summary>
            <param name="message">The string to write to the event log.</param>
            <param name="type">One of the <see cref="T:OpenNETCF.Diagnostics.EventLogEntryType">EventLogEntryType</see> values.</param>
            <param name="eventID">The application-specific identifier for the event.</param>
            <param name="category">The application-specific subcategory associated with the message.</param>
        </member>
        <member name="M:OpenNETCF.Diagnostics.EventLog.WriteEntry(System.String,System.String,OpenNETCF.Diagnostics.EventLogEntryType,System.Int32)">
            <summary>
            Writes an entry with the given message text and application-defined event identifier to the event log, using the specified registered event source.
            </summary>
            <param name="source">The source by which the application is registered on the specified computer. </param>
            <param name="message">the string to write to the event log.</param>
            <param name="type">One of the <see cref="T:OpenNETCF.Diagnostics.EventLogEntryType">EventLogEntryType</see> values.</param>
            <param name="eventID">The application-specific identifier for the event.</param>
        </member>
        <member name="M:OpenNETCF.Diagnostics.EventLog.WriteEntry(System.String,OpenNETCF.Diagnostics.EventLogEntryType,System.Int32,System.Int16,System.Byte[])">
            <summary>
            Writes an entry with the given message text, application-defined event identifier, and application-defined category to the event log, and appends binary data to the message.
            </summary>
            <param name="message">the string to write to the event log.</param>
            <param name="type">One of the <see cref="T:OpenNETCF.Diagnostics.EventLogEntryType">EventLogEntryType</see> values.</param>
            <param name="eventID">The application-specific identifier for the event.</param>
            <param name="category">The application-specific subcategory associated with the message. </param>
            <param name="rawData">An array of bytes that holds the binary data associated with the entry. </param>
        </member>
        <member name="M:OpenNETCF.Diagnostics.EventLog.WriteEntry(System.String,System.String,OpenNETCF.Diagnostics.EventLogEntryType,System.Int32,System.Int16)">
            <summary>
            Writes an entry with the given message text, application-defined event identifier, and application-defined category to the event log, using the specified registered event source. The category can be used to filter events in the log.
            </summary>
            <param name="source">The source by which the application is registered on the specified computer. </param>
            <param name="message">the string to write to the event log.</param>
            <param name="type">One of the <see cref="T:OpenNETCF.Diagnostics.EventLogEntryType">EventLogEntryType</see> values.</param>
            <param name="eventID">The application-specific identifier for the event.</param>
            <param name="category">The application-specific subcategory associated with the message. </param>
        </member>
        <member name="M:OpenNETCF.Diagnostics.EventLog.WriteEntry(System.String,System.String,OpenNETCF.Diagnostics.EventLogEntryType,System.Int32,System.Int16,System.Byte[])">
            <summary>
            Writes an entry with the given message text, application-defined event identifier, and application-defined category to the event log (using the specified registered event source) and appends binary data to the message.
            </summary>
            <param name="source">The source by which the application is registered on the specified computer. </param>
            <param name="message">the string to write to the event log.</param>
            <param name="type">One of the <see cref="T:OpenNETCF.Diagnostics.EventLogEntryType">EventLogEntryType</see> values.</param>
            <param name="eventID">The application-specific identifier for the event.</param>
            <param name="category">The application-specific subcategory associated with the message. </param>
            <param name="rawData">An array of bytes that holds the binary data associated with the entry. </param>
        </member>
        <member name="M:OpenNETCF.Diagnostics.EventLog.CheckForValidLog">
            <summary>
            Checks to see if the source is set
            </summary>
            <returns></returns>
        </member>
        <member name="M:OpenNETCF.Diagnostics.EventLog.CreateEventLogWriter(System.String,System.String,System.String,System.String)">
            <summary>
            Creates the event log Writer object
            </summary>
        </member>
        <member name="M:OpenNETCF.Diagnostics.EventLog.OnEntryWritten(OpenNETCF.Diagnostics.EventLogEntry)">
            <summary>
            Notifies any listeners that an entry was written to the log
            </summary>
            <param name="e">the entry item that was written to the log</param>
        </member>
        <member name="M:OpenNETCF.Diagnostics.EventLog.OnLogCleared">
            <summary>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -