123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804 |
- <?xml version="1.0" encoding="utf-8"?>
- <doc>
- <assembly>
- <name>Microsoft.Extensions.Logging.Abstractions</name>
- </assembly>
- <members>
- <member name="T:Microsoft.Extensions.Logging.Abstractions.LogEntry`1">
- <summary>Holds the information for a single log entry.</summary>
- <typeparam name="TState" />
- </member>
- <member name="M:Microsoft.Extensions.Logging.Abstractions.LogEntry`1.#ctor(Microsoft.Extensions.Logging.LogLevel,System.String,Microsoft.Extensions.Logging.EventId,`0,System.Exception,System.Func{`0,System.Exception,System.String})">
- <summary>Creates a new <see cref="T:Microsoft.Extensions.Logging.Abstractions.LogEntry`1" /> using the specified log level, category, event Id, state, exception and formatter parameters.</summary>
- <param name="logLevel">The log level.</param>
- <param name="category">The category name for the log.</param>
- <param name="eventId">The log event Id.</param>
- <param name="state">The state for which log is being written.</param>
- <param name="exception">The log exception.</param>
- <param name="formatter">The formatter.</param>
- </member>
- <member name="P:Microsoft.Extensions.Logging.Abstractions.LogEntry`1.Category">
- <summary>Gets the log category.</summary>
- <returns>A string that represents the log category.</returns>
- </member>
- <member name="P:Microsoft.Extensions.Logging.Abstractions.LogEntry`1.EventId">
- <summary>Gets the log event Id.</summary>
- <returns>An <see cref="T:Microsoft.Extensions.Logging.EventId" /> instance.</returns>
- </member>
- <member name="P:Microsoft.Extensions.Logging.Abstractions.LogEntry`1.Exception">
- <summary>Gets the log exception.</summary>
- <returns>An <see cref="T:System.Exception" /> instance.</returns>
- </member>
- <member name="P:Microsoft.Extensions.Logging.Abstractions.LogEntry`1.Formatter">
- <summary>Gets the formatter.</summary>
- <returns>The encapsulated method that represents a formatter, which takes a <typeparamref name="TState" /> and a <see cref="T:System.Exception" />, and returns a string.</returns>
- </member>
- <member name="P:Microsoft.Extensions.Logging.Abstractions.LogEntry`1.LogLevel">
- <summary>Gets the log level.</summary>
- <returns>A <see cref="T:Microsoft.Extensions.Logging.LogLevel" /> instance.</returns>
- </member>
- <member name="P:Microsoft.Extensions.Logging.Abstractions.LogEntry`1.State">
- <summary>Gets the <typeparamref name="TState" />.</summary>
- <returns>An object of type <typeparamref name="TState" />.</returns>
- </member>
- <member name="T:Microsoft.Extensions.Logging.Abstractions.NullLogger">
- <summary>Minimalistic logger that does nothing.</summary>
- </member>
- <member name="M:Microsoft.Extensions.Logging.Abstractions.NullLogger.BeginScope``1(``0)">
- <summary>Begins a logical operation scope.</summary>
- <param name="state">The identifier for the scope.</param>
- <typeparam name="TState">The type of the state to begin scope for.</typeparam>
- <returns>A disposable object that ends the logical operation scope on dispose.</returns>
- </member>
- <member name="M:Microsoft.Extensions.Logging.Abstractions.NullLogger.IsEnabled(Microsoft.Extensions.Logging.LogLevel)">
- <summary>Checks if the given <code data-dev-comment-type="paramref">logLevel</code> is enabled.</summary>
- <param name="logLevel">level to be checked.</param>
- <returns>
- <code data-dev-comment-type="langword">true</code> if enabled; <code data-dev-comment-type="langword">false</code> otherwise.</returns>
- </member>
- <member name="M:Microsoft.Extensions.Logging.Abstractions.NullLogger.Log``1(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,``0,System.Exception,System.Func{``0,System.Exception,System.String})">
- <summary>Writes a log entry.</summary>
- <param name="logLevel">Entry will be written on this level.</param>
- <param name="eventId">Id of the event.</param>
- <param name="state">The entry to be written. Can be also an object.</param>
- <param name="exception">The exception related to this entry.</param>
- <param name="formatter">Function to create a <xref data-throw-if-not-resolved="true" uid="System.String"></xref> message of the <code data-dev-comment-type="paramref">state</code> and <code data-dev-comment-type="paramref">exception</code>.</param>
- <typeparam name="TState">The type of the object to be written.</typeparam>
- </member>
- <member name="P:Microsoft.Extensions.Logging.Abstractions.NullLogger.Instance">
- <summary>Returns the shared instance of <see cref="T:Microsoft.Extensions.Logging.Abstractions.NullLogger" />.</summary>
- </member>
- <member name="T:Microsoft.Extensions.Logging.Abstractions.NullLogger`1">
- <summary>Minimalistic logger that does nothing.</summary>
- <typeparam name="T" />
- </member>
- <member name="F:Microsoft.Extensions.Logging.Abstractions.NullLogger`1.Instance">
- <summary>Returns an instance of <see cref="T:Microsoft.Extensions.Logging.Abstractions.NullLogger`1" />.</summary>
- </member>
- <member name="M:Microsoft.Extensions.Logging.Abstractions.NullLogger`1.#ctor" />
- <member name="M:Microsoft.Extensions.Logging.Abstractions.NullLogger`1.BeginScope``1(``0)">
- <summary>Begins a logical operation scope.</summary>
- <param name="state">The identifier for the scope.</param>
- <typeparam name="TState">The type of the state to begin scope for.</typeparam>
- <returns>A disposable object that ends the logical operation scope on dispose.</returns>
- </member>
- <member name="M:Microsoft.Extensions.Logging.Abstractions.NullLogger`1.IsEnabled(Microsoft.Extensions.Logging.LogLevel)">
- <summary>Checks if the given <code data-dev-comment-type="paramref">logLevel</code> is enabled.</summary>
- <param name="logLevel">level to be checked.</param>
- <returns>
- <code data-dev-comment-type="langword">true</code> if enabled; <code data-dev-comment-type="langword">false</code> otherwise.</returns>
- </member>
- <member name="M:Microsoft.Extensions.Logging.Abstractions.NullLogger`1.Log``1(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,``0,System.Exception,System.Func{``0,System.Exception,System.String})">
- <summary>Writes a log entry.</summary>
- <param name="logLevel">Entry will be written on this level.</param>
- <param name="eventId">Id of the event.</param>
- <param name="state">The entry to be written. Can be also an object.</param>
- <param name="exception">The exception related to this entry.</param>
- <param name="formatter">Function to create a <xref data-throw-if-not-resolved="true" uid="System.String"></xref> message of the <code data-dev-comment-type="paramref">state</code> and <code data-dev-comment-type="paramref">exception</code>.</param>
- <typeparam name="TState">The type of the object to be written.</typeparam>
- </member>
- <member name="T:Microsoft.Extensions.Logging.Abstractions.NullLoggerFactory">
- <summary>An <see cref="T:Microsoft.Extensions.Logging.ILoggerFactory" /> used to create instance of
- <see cref="T:Microsoft.Extensions.Logging.Abstractions.NullLogger" /> that logs nothing.</summary>
- </member>
- <member name="F:Microsoft.Extensions.Logging.Abstractions.NullLoggerFactory.Instance">
- <summary>Returns the shared instance of <see cref="T:Microsoft.Extensions.Logging.Abstractions.NullLoggerFactory" />.</summary>
- </member>
- <member name="M:Microsoft.Extensions.Logging.Abstractions.NullLoggerFactory.#ctor">
- <summary>Creates a new <see cref="T:Microsoft.Extensions.Logging.Abstractions.NullLoggerFactory" /> instance.</summary>
- </member>
- <member name="M:Microsoft.Extensions.Logging.Abstractions.NullLoggerFactory.AddProvider(Microsoft.Extensions.Logging.ILoggerProvider)">
- <summary>Adds an <xref data-throw-if-not-resolved="true" uid="Microsoft.Extensions.Logging.ILoggerProvider"></xref> to the logging system.</summary>
- <param name="provider">The <xref data-throw-if-not-resolved="true" uid="Microsoft.Extensions.Logging.ILoggerProvider"></xref>.</param>
- </member>
- <member name="M:Microsoft.Extensions.Logging.Abstractions.NullLoggerFactory.CreateLogger(System.String)">
- <summary>Creates a new <xref data-throw-if-not-resolved="true" uid="Microsoft.Extensions.Logging.ILogger"></xref> instance.</summary>
- <param name="name" />
- <returns>A new <xref data-throw-if-not-resolved="true" uid="Microsoft.Extensions.Logging.ILogger"></xref> instance.</returns>
- </member>
- <member name="M:Microsoft.Extensions.Logging.Abstractions.NullLoggerFactory.Dispose">
- <summary>Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.</summary>
- </member>
- <member name="T:Microsoft.Extensions.Logging.Abstractions.NullLoggerProvider">
- <summary>Provider for the <see cref="T:Microsoft.Extensions.Logging.Abstractions.NullLogger" />.</summary>
- </member>
- <member name="M:Microsoft.Extensions.Logging.Abstractions.NullLoggerProvider.CreateLogger(System.String)">
- <summary>Creates a new <xref data-throw-if-not-resolved="true" uid="Microsoft.Extensions.Logging.ILogger"></xref> instance.</summary>
- <param name="categoryName">The category name for messages produced by the logger.</param>
- <returns>The instance of <xref data-throw-if-not-resolved="true" uid="Microsoft.Extensions.Logging.ILogger"></xref> that was created.</returns>
- </member>
- <member name="M:Microsoft.Extensions.Logging.Abstractions.NullLoggerProvider.Dispose">
- <summary>Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.</summary>
- </member>
- <member name="P:Microsoft.Extensions.Logging.Abstractions.NullLoggerProvider.Instance">
- <summary>Returns an instance of <see cref="T:Microsoft.Extensions.Logging.Abstractions.NullLoggerProvider" />.</summary>
- </member>
- <member name="T:Microsoft.Extensions.Logging.EventId">
- <summary>Identifies a logging event. The primary identifier is the "Id" property, with the "Name" property providing a short description of this type of event.</summary>
- </member>
- <member name="M:Microsoft.Extensions.Logging.EventId.#ctor(System.Int32,System.String)">
- <summary>Initializes an instance of the <see cref="T:Microsoft.Extensions.Logging.EventId" /> struct.</summary>
- <param name="id">The numeric identifier for this event.</param>
- <param name="name">The name of this event.</param>
- </member>
- <member name="M:Microsoft.Extensions.Logging.EventId.Equals(Microsoft.Extensions.Logging.EventId)">
- <summary>Indicates whether the current object is equal to another object of the same type. Two events are equal if they have the same id.</summary>
- <param name="other">An object to compare with this object.</param>
- <returns>
- <see langword="true" /> if the current object is equal to the other parameter; otherwise, <see langword="false" />.</returns>
- </member>
- <member name="M:Microsoft.Extensions.Logging.EventId.Equals(System.Object)">
- <summary>Indicates whether this instance and a specified object are equal.</summary>
- <param name="obj">The object to compare with the current instance.</param>
- <returns>
- <code data-dev-comment-type="langword">true</code> if <code data-dev-comment-type="paramref">obj</code> and this instance are the same type and represent the same value; otherwise, <code data-dev-comment-type="langword">false</code>.</returns>
- </member>
- <member name="M:Microsoft.Extensions.Logging.EventId.GetHashCode">
- <summary>Returns the hash code for this instance.</summary>
- <returns>A 32-bit signed integer that is the hash code for this instance.</returns>
- </member>
- <member name="M:Microsoft.Extensions.Logging.EventId.op_Equality(Microsoft.Extensions.Logging.EventId,Microsoft.Extensions.Logging.EventId)">
- <summary>Checks if two specified <see cref="T:Microsoft.Extensions.Logging.EventId" /> instances have the same value. They are equal if they have the same Id.</summary>
- <param name="left">The first <see cref="T:Microsoft.Extensions.Logging.EventId" />.</param>
- <param name="right">The second <see cref="T:Microsoft.Extensions.Logging.EventId" />.</param>
- <returns>
- <see langword="true" /> if the objects are equal.</returns>
- </member>
- <member name="M:Microsoft.Extensions.Logging.EventId.op_Implicit(System.Int32)~Microsoft.Extensions.Logging.EventId">
- <summary>Implicitly creates an EventId from the given <see cref="T:System.Int32" />.</summary>
- <param name="i">The <see cref="T:System.Int32" /> to convert to an EventId.</param>
- </member>
- <member name="M:Microsoft.Extensions.Logging.EventId.op_Inequality(Microsoft.Extensions.Logging.EventId,Microsoft.Extensions.Logging.EventId)">
- <summary>Checks if two specified <see cref="T:Microsoft.Extensions.Logging.EventId" /> instances have different values.</summary>
- <param name="left">The first <see cref="T:Microsoft.Extensions.Logging.EventId" />.</param>
- <param name="right">The second <see cref="T:Microsoft.Extensions.Logging.EventId" />.</param>
- <returns>
- <see langword="true" /> if the objects are not equal.</returns>
- </member>
- <member name="M:Microsoft.Extensions.Logging.EventId.ToString">
- <summary>Returns the fully qualified type name of this instance.</summary>
- <returns>The fully qualified type name.</returns>
- </member>
- <member name="P:Microsoft.Extensions.Logging.EventId.Id">
- <summary>Gets the numeric identifier for this event.</summary>
- </member>
- <member name="P:Microsoft.Extensions.Logging.EventId.Name">
- <summary>Gets the name of this event.</summary>
- </member>
- <member name="T:Microsoft.Extensions.Logging.IExternalScopeProvider">
- <summary>Represents a storage of common scope data.</summary>
- </member>
- <member name="M:Microsoft.Extensions.Logging.IExternalScopeProvider.ForEachScope``1(System.Action{System.Object,``0},``0)">
- <summary>Executes callback for each currently active scope objects in order of creation.
- All callbacks are guaranteed to be called inline from this method.</summary>
- <param name="callback">The callback to be executed for every scope object.</param>
- <param name="state">The state object to be passed into the callback.</param>
- <typeparam name="TState">The type of state to accept.</typeparam>
- </member>
- <member name="M:Microsoft.Extensions.Logging.IExternalScopeProvider.Push(System.Object)">
- <summary>Adds scope object to the list.</summary>
- <param name="state">The scope object.</param>
- <returns>The <see cref="T:System.IDisposable" /> token that removes scope on dispose.</returns>
- </member>
- <member name="T:Microsoft.Extensions.Logging.ILogger">
- <summary>Represents a type used to perform logging.</summary>
- </member>
- <member name="M:Microsoft.Extensions.Logging.ILogger.BeginScope``1(``0)">
- <summary>Begins a logical operation scope.</summary>
- <param name="state">The identifier for the scope.</param>
- <typeparam name="TState">The type of the state to begin scope for.</typeparam>
- <returns>A disposable object that ends the logical operation scope on dispose.</returns>
- </member>
- <member name="M:Microsoft.Extensions.Logging.ILogger.IsEnabled(Microsoft.Extensions.Logging.LogLevel)">
- <summary>Checks if the given <paramref name="logLevel" /> is enabled.</summary>
- <param name="logLevel">level to be checked.</param>
- <returns>
- <see langword="true" /> if enabled; <see langword="false" /> otherwise.</returns>
- </member>
- <member name="M:Microsoft.Extensions.Logging.ILogger.Log``1(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,``0,System.Exception,System.Func{``0,System.Exception,System.String})">
- <summary>Writes a log entry.</summary>
- <param name="logLevel">Entry will be written on this level.</param>
- <param name="eventId">Id of the event.</param>
- <param name="state">The entry to be written. Can be also an object.</param>
- <param name="exception">The exception related to this entry.</param>
- <param name="formatter">Function to create a <see cref="T:System.String" /> message of the <paramref name="state" /> and <paramref name="exception" />.</param>
- <typeparam name="TState">The type of the object to be written.</typeparam>
- </member>
- <member name="T:Microsoft.Extensions.Logging.ILogger`1">
- <summary>A generic interface for logging where the category name is derived from the specified
- <typeparamref name="TCategoryName" /> type name.
- Generally used to enable activation of a named <see cref="T:Microsoft.Extensions.Logging.ILogger" /> from dependency injection.</summary>
- <typeparam name="TCategoryName">The type whose name is used for the logger category name.</typeparam>
- </member>
- <member name="T:Microsoft.Extensions.Logging.ILoggerFactory">
- <summary>Represents a type used to configure the logging system and create instances of <see cref="T:Microsoft.Extensions.Logging.ILogger" /> from
- the registered <see cref="T:Microsoft.Extensions.Logging.ILoggerProvider" />s.</summary>
- </member>
- <member name="M:Microsoft.Extensions.Logging.ILoggerFactory.AddProvider(Microsoft.Extensions.Logging.ILoggerProvider)">
- <summary>Adds an <see cref="T:Microsoft.Extensions.Logging.ILoggerProvider" /> to the logging system.</summary>
- <param name="provider">The <see cref="T:Microsoft.Extensions.Logging.ILoggerProvider" />.</param>
- </member>
- <member name="M:Microsoft.Extensions.Logging.ILoggerFactory.CreateLogger(System.String)">
- <summary>Creates a new <see cref="T:Microsoft.Extensions.Logging.ILogger" /> instance.</summary>
- <param name="categoryName">The category name for messages produced by the logger.</param>
- <returns>A new <see cref="T:Microsoft.Extensions.Logging.ILogger" /> instance.</returns>
- </member>
- <member name="T:Microsoft.Extensions.Logging.ILoggerProvider">
- <summary>Represents a type that can create instances of <see cref="T:Microsoft.Extensions.Logging.ILogger" />.</summary>
- </member>
- <member name="M:Microsoft.Extensions.Logging.ILoggerProvider.CreateLogger(System.String)">
- <summary>Creates a new <see cref="T:Microsoft.Extensions.Logging.ILogger" /> instance.</summary>
- <param name="categoryName">The category name for messages produced by the logger.</param>
- <returns>The instance of <see cref="T:Microsoft.Extensions.Logging.ILogger" /> that was created.</returns>
- </member>
- <member name="T:Microsoft.Extensions.Logging.ISupportExternalScope">
- <summary>Represents a <see cref="T:Microsoft.Extensions.Logging.ILoggerProvider" /> that is able to consume external scope information.</summary>
- </member>
- <member name="M:Microsoft.Extensions.Logging.ISupportExternalScope.SetScopeProvider(Microsoft.Extensions.Logging.IExternalScopeProvider)">
- <summary>Sets external scope information source for logger provider.</summary>
- <param name="scopeProvider">The provider of scope data.</param>
- </member>
- <member name="T:Microsoft.Extensions.Logging.LogDefineOptions">
- <summary>Specifies options for <see cref="M:Microsoft.Extensions.Logging.LoggerMessage.Define(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String)" /> and its overloads.</summary>
- </member>
- <member name="M:Microsoft.Extensions.Logging.LogDefineOptions.#ctor" />
- <member name="P:Microsoft.Extensions.Logging.LogDefineOptions.SkipEnabledCheck">
- <summary>Gets or sets the flag to skip the <see langword="IsEnabled" /> check for the logging method.</summary>
- </member>
- <member name="T:Microsoft.Extensions.Logging.Logger`1">
- <summary>Delegates to a new <see cref="T:Microsoft.Extensions.Logging.ILogger" /> instance using the full name of the given type, created by the
- provided <see cref="T:Microsoft.Extensions.Logging.ILoggerFactory" />.</summary>
- <typeparam name="T">The type.</typeparam>
- </member>
- <member name="M:Microsoft.Extensions.Logging.Logger`1.#ctor(Microsoft.Extensions.Logging.ILoggerFactory)">
- <summary>Creates a new <see cref="T:Microsoft.Extensions.Logging.Logger`1" />.</summary>
- <param name="factory">The factory.</param>
- </member>
- <member name="M:Microsoft.Extensions.Logging.Logger`1.Microsoft#Extensions#Logging#ILogger#BeginScope``1(``0)">
- <summary>Begins a logical operation scope.</summary>
- <param name="state">The identifier for the scope.</param>
- <typeparam name="TState">The type of the state to begin scope for.</typeparam>
- <returns>A disposable object that ends the logical operation scope on dispose.</returns>
- </member>
- <member name="M:Microsoft.Extensions.Logging.Logger`1.Microsoft#Extensions#Logging#ILogger#IsEnabled(Microsoft.Extensions.Logging.LogLevel)">
- <summary>Checks if the given <code data-dev-comment-type="paramref">logLevel</code> is enabled.</summary>
- <param name="logLevel">level to be checked.</param>
- <returns>
- <code data-dev-comment-type="langword">true</code> if enabled; <code data-dev-comment-type="langword">false</code> otherwise.</returns>
- </member>
- <member name="M:Microsoft.Extensions.Logging.Logger`1.Microsoft#Extensions#Logging#ILogger#Log``1(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,``0,System.Exception,System.Func{``0,System.Exception,System.String})">
- <summary>Writes a log entry.</summary>
- <param name="logLevel">Entry will be written on this level.</param>
- <param name="eventId">Id of the event.</param>
- <param name="state">The entry to be written. Can be also an object.</param>
- <param name="exception">The exception related to this entry.</param>
- <param name="formatter">Function to create a <xref data-throw-if-not-resolved="true" uid="System.String"></xref> message of the <code data-dev-comment-type="paramref">state</code> and <code data-dev-comment-type="paramref">exception</code>.</param>
- <typeparam name="TState">The type of the object to be written.</typeparam>
- </member>
- <member name="T:Microsoft.Extensions.Logging.LoggerExtensions">
- <summary>ILogger extension methods for common scenarios.</summary>
- </member>
- <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.BeginScope(Microsoft.Extensions.Logging.ILogger,System.String,System.Object[])">
- <summary>Formats the message and creates a scope.</summary>
- <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger" /> to create the scope in.</param>
- <param name="messageFormat">Format string of the log message in message template format. Example: <c>"User {User} logged in from {Address}"</c></param>
- <param name="args">An object array that contains zero or more objects to format.</param>
- <returns>A disposable scope object. Can be null.</returns>
- </member>
- <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.Log(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.Exception,System.String,System.Object[])">
- <summary>Formats and writes a log message at the specified log level.</summary>
- <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger" /> to write to.</param>
- <param name="logLevel">Entry will be written on this level.</param>
- <param name="eventId">The event id associated with the log.</param>
- <param name="exception">The exception to log.</param>
- <param name="message">Format string of the log message.</param>
- <param name="args">An object array that contains zero or more objects to format.</param>
- </member>
- <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.Log(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String,System.Object[])">
- <summary>Formats and writes a log message at the specified log level.</summary>
- <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger" /> to write to.</param>
- <param name="logLevel">Entry will be written on this level.</param>
- <param name="eventId">The event id associated with the log.</param>
- <param name="message">Format string of the log message.</param>
- <param name="args">An object array that contains zero or more objects to format.</param>
- </member>
- <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.Log(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,System.Exception,System.String,System.Object[])">
- <summary>Formats and writes a log message at the specified log level.</summary>
- <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger" /> to write to.</param>
- <param name="logLevel">Entry will be written on this level.</param>
- <param name="exception">The exception to log.</param>
- <param name="message">Format string of the log message.</param>
- <param name="args">An object array that contains zero or more objects to format.</param>
- </member>
- <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.Log(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,System.String,System.Object[])">
- <summary>Formats and writes a log message at the specified log level.</summary>
- <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger" /> to write to.</param>
- <param name="logLevel">Entry will be written on this level.</param>
- <param name="message">Format string of the log message.</param>
- <param name="args">An object array that contains zero or more objects to format.</param>
- </member>
- <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogCritical(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.Exception,System.String,System.Object[])">
- <summary>Formats and writes a critical log message.</summary>
- <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger" /> to write to.</param>
- <param name="eventId">The event id associated with the log.</param>
- <param name="exception">The exception to log.</param>
- <param name="message">Format string of the log message in message template format. Example: <c>"User {User} logged in from {Address}"</c></param>
- <param name="args">An object array that contains zero or more objects to format.</param>
- </member>
- <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogCritical(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.String,System.Object[])">
- <summary>Formats and writes a critical log message.</summary>
- <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger" /> to write to.</param>
- <param name="eventId">The event id associated with the log.</param>
- <param name="message">Format string of the log message in message template format. Example: <c>"User {User} logged in from {Address}"</c></param>
- <param name="args">An object array that contains zero or more objects to format.</param>
- </member>
- <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogCritical(Microsoft.Extensions.Logging.ILogger,System.Exception,System.String,System.Object[])">
- <summary>Formats and writes a critical log message.</summary>
- <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger" /> to write to.</param>
- <param name="exception">The exception to log.</param>
- <param name="message">Format string of the log message in message template format. Example: <c>"User {User} logged in from {Address}"</c></param>
- <param name="args">An object array that contains zero or more objects to format.</param>
- </member>
- <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogCritical(Microsoft.Extensions.Logging.ILogger,System.String,System.Object[])">
- <summary>Formats and writes a critical log message.</summary>
- <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger" /> to write to.</param>
- <param name="message">Format string of the log message in message template format. Example: <c>"User {User} logged in from {Address}"</c></param>
- <param name="args">An object array that contains zero or more objects to format.</param>
- </member>
- <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogDebug(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.Exception,System.String,System.Object[])">
- <summary>Formats and writes a debug log message.</summary>
- <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger" /> to write to.</param>
- <param name="eventId">The event id associated with the log.</param>
- <param name="exception">The exception to log.</param>
- <param name="message">Format string of the log message in message template format. Example: <c>"User {User} logged in from {Address}"</c></param>
- <param name="args">An object array that contains zero or more objects to format.</param>
- </member>
- <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogDebug(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.String,System.Object[])">
- <summary>Formats and writes a debug log message.</summary>
- <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger" /> to write to.</param>
- <param name="eventId">The event id associated with the log.</param>
- <param name="message">Format string of the log message in message template format. Example: <c>"User {User} logged in from {Address}"</c></param>
- <param name="args">An object array that contains zero or more objects to format.</param>
- </member>
- <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogDebug(Microsoft.Extensions.Logging.ILogger,System.Exception,System.String,System.Object[])">
- <summary>Formats and writes a debug log message.</summary>
- <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger" /> to write to.</param>
- <param name="exception">The exception to log.</param>
- <param name="message">Format string of the log message in message template format. Example: <c>"User {User} logged in from {Address}"</c></param>
- <param name="args">An object array that contains zero or more objects to format.</param>
- </member>
- <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogDebug(Microsoft.Extensions.Logging.ILogger,System.String,System.Object[])">
- <summary>Formats and writes a debug log message.</summary>
- <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger" /> to write to.</param>
- <param name="message">Format string of the log message in message template format. Example: <c>"User {User} logged in from {Address}"</c></param>
- <param name="args">An object array that contains zero or more objects to format.</param>
- </member>
- <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogError(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.Exception,System.String,System.Object[])">
- <summary>Formats and writes an error log message.</summary>
- <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger" /> to write to.</param>
- <param name="eventId">The event id associated with the log.</param>
- <param name="exception">The exception to log.</param>
- <param name="message">Format string of the log message in message template format. Example: <c>"User {User} logged in from {Address}"</c></param>
- <param name="args">An object array that contains zero or more objects to format.</param>
- </member>
- <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogError(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.String,System.Object[])">
- <summary>Formats and writes an error log message.</summary>
- <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger" /> to write to.</param>
- <param name="eventId">The event id associated with the log.</param>
- <param name="message">Format string of the log message in message template format. Example: <c>"User {User} logged in from {Address}"</c></param>
- <param name="args">An object array that contains zero or more objects to format.</param>
- </member>
- <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogError(Microsoft.Extensions.Logging.ILogger,System.Exception,System.String,System.Object[])">
- <summary>Formats and writes an error log message.</summary>
- <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger" /> to write to.</param>
- <param name="exception">The exception to log.</param>
- <param name="message">Format string of the log message in message template format. Example: <c>"User {User} logged in from {Address}"</c></param>
- <param name="args">An object array that contains zero or more objects to format.</param>
- </member>
- <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogError(Microsoft.Extensions.Logging.ILogger,System.String,System.Object[])">
- <summary>Formats and writes an error log message.</summary>
- <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger" /> to write to.</param>
- <param name="message">Format string of the log message in message template format. Example: <c>"User {User} logged in from {Address}"</c></param>
- <param name="args">An object array that contains zero or more objects to format.</param>
- </member>
- <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogInformation(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.Exception,System.String,System.Object[])">
- <summary>Formats and writes an informational log message.</summary>
- <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger" /> to write to.</param>
- <param name="eventId">The event id associated with the log.</param>
- <param name="exception">The exception to log.</param>
- <param name="message">Format string of the log message in message template format. Example: <c>"User {User} logged in from {Address}"</c></param>
- <param name="args">An object array that contains zero or more objects to format.</param>
- </member>
- <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogInformation(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.String,System.Object[])">
- <summary>Formats and writes an informational log message.</summary>
- <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger" /> to write to.</param>
- <param name="eventId">The event id associated with the log.</param>
- <param name="message">Format string of the log message in message template format. Example: <c>"User {User} logged in from {Address}"</c></param>
- <param name="args">An object array that contains zero or more objects to format.</param>
- </member>
- <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogInformation(Microsoft.Extensions.Logging.ILogger,System.Exception,System.String,System.Object[])">
- <summary>Formats and writes an informational log message.</summary>
- <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger" /> to write to.</param>
- <param name="exception">The exception to log.</param>
- <param name="message">Format string of the log message in message template format. Example: <c>"User {User} logged in from {Address}"</c></param>
- <param name="args">An object array that contains zero or more objects to format.</param>
- </member>
- <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogInformation(Microsoft.Extensions.Logging.ILogger,System.String,System.Object[])">
- <summary>Formats and writes an informational log message.</summary>
- <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger" /> to write to.</param>
- <param name="message">Format string of the log message in message template format. Example: <c>"User {User} logged in from {Address}"</c></param>
- <param name="args">An object array that contains zero or more objects to format.</param>
- </member>
- <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogTrace(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.Exception,System.String,System.Object[])">
- <summary>Formats and writes a trace log message.</summary>
- <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger" /> to write to.</param>
- <param name="eventId">The event id associated with the log.</param>
- <param name="exception">The exception to log.</param>
- <param name="message">Format string of the log message in message template format. Example: <c>"User {User} logged in from {Address}"</c></param>
- <param name="args">An object array that contains zero or more objects to format.</param>
- </member>
- <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogTrace(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.String,System.Object[])">
- <summary>Formats and writes a trace log message.</summary>
- <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger" /> to write to.</param>
- <param name="eventId">The event id associated with the log.</param>
- <param name="message">Format string of the log message in message template format. Example: <c>"User {User} logged in from {Address}"</c></param>
- <param name="args">An object array that contains zero or more objects to format.</param>
- </member>
- <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogTrace(Microsoft.Extensions.Logging.ILogger,System.Exception,System.String,System.Object[])">
- <summary>Formats and writes a trace log message.</summary>
- <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger" /> to write to.</param>
- <param name="exception">The exception to log.</param>
- <param name="message">Format string of the log message in message template format. Example: <c>"User {User} logged in from {Address}"</c></param>
- <param name="args">An object array that contains zero or more objects to format.</param>
- </member>
- <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogTrace(Microsoft.Extensions.Logging.ILogger,System.String,System.Object[])">
- <summary>Formats and writes a trace log message.</summary>
- <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger" /> to write to.</param>
- <param name="message">Format string of the log message in message template format. Example: <c>"User {User} logged in from {Address}"</c></param>
- <param name="args">An object array that contains zero or more objects to format.</param>
- </member>
- <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogWarning(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.Exception,System.String,System.Object[])">
- <summary>Formats and writes a warning log message.</summary>
- <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger" /> to write to.</param>
- <param name="eventId">The event id associated with the log.</param>
- <param name="exception">The exception to log.</param>
- <param name="message">Format string of the log message in message template format. Example: <c>"User {User} logged in from {Address}"</c></param>
- <param name="args">An object array that contains zero or more objects to format.</param>
- </member>
- <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogWarning(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.String,System.Object[])">
- <summary>Formats and writes a warning log message.</summary>
- <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger" /> to write to.</param>
- <param name="eventId">The event id associated with the log.</param>
- <param name="message">Format string of the log message in message template format. Example: <c>"User {User} logged in from {Address}"</c></param>
- <param name="args">An object array that contains zero or more objects to format.</param>
- </member>
- <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogWarning(Microsoft.Extensions.Logging.ILogger,System.Exception,System.String,System.Object[])">
- <summary>Formats and writes a warning log message.</summary>
- <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger" /> to write to.</param>
- <param name="exception">The exception to log.</param>
- <param name="message">Format string of the log message in message template format. Example: <c>"User {User} logged in from {Address}"</c></param>
- <param name="args">An object array that contains zero or more objects to format.</param>
- </member>
- <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogWarning(Microsoft.Extensions.Logging.ILogger,System.String,System.Object[])">
- <summary>Formats and writes a warning log message.</summary>
- <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger" /> to write to.</param>
- <param name="message">Format string of the log message in message template format. Example: <c>"User {User} logged in from {Address}"</c></param>
- <param name="args">An object array that contains zero or more objects to format.</param>
- </member>
- <member name="T:Microsoft.Extensions.Logging.LoggerExternalScopeProvider">
- <summary>Default implementation of <see cref="T:Microsoft.Extensions.Logging.IExternalScopeProvider" />.</summary>
- </member>
- <member name="M:Microsoft.Extensions.Logging.LoggerExternalScopeProvider.#ctor">
- <summary>Creates a new <see cref="T:Microsoft.Extensions.Logging.LoggerExternalScopeProvider" />.</summary>
- </member>
- <member name="M:Microsoft.Extensions.Logging.LoggerExternalScopeProvider.ForEachScope``1(System.Action{System.Object,``0},``0)">
- <summary>Executes callback for each currently active scope objects in order of creation.
- All callbacks are guaranteed to be called inline from this method.</summary>
- <param name="callback">The callback to be executed for every scope object.</param>
- <param name="state">The state object to be passed into the callback.</param>
- <typeparam name="TState">The type of state to accept.</typeparam>
- </member>
- <member name="M:Microsoft.Extensions.Logging.LoggerExternalScopeProvider.Push(System.Object)">
- <summary>Adds scope object to the list.</summary>
- <param name="state">The scope object.</param>
- <returns>The <xref data-throw-if-not-resolved="true" uid="System.IDisposable"></xref> token that removes scope on dispose.</returns>
- </member>
- <member name="T:Microsoft.Extensions.Logging.LoggerFactoryExtensions">
- <summary>ILoggerFactory extension methods for common scenarios.</summary>
- </member>
- <member name="M:Microsoft.Extensions.Logging.LoggerFactoryExtensions.CreateLogger(Microsoft.Extensions.Logging.ILoggerFactory,System.Type)">
- <summary>Creates a new <see cref="T:Microsoft.Extensions.Logging.ILogger" /> instance using the full name of the given <paramref name="type" />.</summary>
- <param name="factory">The factory.</param>
- <param name="type">The type.</param>
- <returns>The <see cref="T:Microsoft.Extensions.Logging.ILogger" /> that was created.</returns>
- </member>
- <member name="M:Microsoft.Extensions.Logging.LoggerFactoryExtensions.CreateLogger``1(Microsoft.Extensions.Logging.ILoggerFactory)">
- <summary>Creates a new <see cref="T:Microsoft.Extensions.Logging.ILogger" /> instance using the full name of the given type.</summary>
- <param name="factory">The factory.</param>
- <typeparam name="T">The type.</typeparam>
- <returns>The <see cref="T:Microsoft.Extensions.Logging.ILogger" /> that was created.</returns>
- </member>
- <member name="T:Microsoft.Extensions.Logging.LoggerMessage">
- <summary>Creates delegates which can be later cached to log messages in a performant way.</summary>
- </member>
- <member name="M:Microsoft.Extensions.Logging.LoggerMessage.Define(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String)">
- <summary>Creates a delegate which can be invoked for logging a message.</summary>
- <param name="logLevel">The <see cref="T:Microsoft.Extensions.Logging.LogLevel" />.</param>
- <param name="eventId">The event ID.</param>
- <param name="formatString">The named format string.</param>
- <returns>A delegate which when invoked creates a log message.</returns>
- </member>
- <member name="M:Microsoft.Extensions.Logging.LoggerMessage.Define(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String,Microsoft.Extensions.Logging.LogDefineOptions)">
- <summary>Creates a delegate that can be invoked to log a message.</summary>
- <param name="logLevel">The logging level.</param>
- <param name="eventId">The event ID.</param>
- <param name="formatString">The named format string.</param>
- <param name="options">The log define options.</param>
- <returns>A delegate that, when invoked, creates a log message.</returns>
- </member>
- <member name="M:Microsoft.Extensions.Logging.LoggerMessage.Define``1(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String)">
- <summary>Creates a delegate which can be invoked for logging a message.</summary>
- <param name="logLevel">The <see cref="T:Microsoft.Extensions.Logging.LogLevel" />.</param>
- <param name="eventId">The event ID.</param>
- <param name="formatString">The named format string.</param>
- <typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
- <returns>A delegate which when invoked creates a log message.</returns>
- </member>
- <member name="M:Microsoft.Extensions.Logging.LoggerMessage.Define``1(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String,Microsoft.Extensions.Logging.LogDefineOptions)">
- <summary>Creates a delegate that can be invoked to log a message.</summary>
- <param name="logLevel">The logging level.</param>
- <param name="eventId">The event ID.</param>
- <param name="formatString">The named format string.</param>
- <param name="options">The log define options.</param>
- <typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
- <returns>A delegate that, when invoked, creates a log message.</returns>
- </member>
- <member name="M:Microsoft.Extensions.Logging.LoggerMessage.Define``2(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String)">
- <summary>Creates a delegate which can be invoked for logging a message.</summary>
- <param name="logLevel">The <see cref="T:Microsoft.Extensions.Logging.LogLevel" />.</param>
- <param name="eventId">The event ID.</param>
- <param name="formatString">The named format string.</param>
- <typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
- <typeparam name="T2">The type of the second parameter passed to the named format string.</typeparam>
- <returns>A delegate which when invoked creates a log message.</returns>
- </member>
- <member name="M:Microsoft.Extensions.Logging.LoggerMessage.Define``2(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String,Microsoft.Extensions.Logging.LogDefineOptions)">
- <summary>Creates a delegate that can be invoked to log a message.</summary>
- <param name="logLevel">The <see cref="T:Microsoft.Extensions.Logging.LogLevel" />.</param>
- <param name="eventId">The event ID.</param>
- <param name="formatString">The named format string.</param>
- <param name="options">The <see cref="T:Microsoft.Extensions.Logging.LogDefineOptions" />.</param>
- <typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
- <typeparam name="T2">The type of the second parameter passed to the named format string.</typeparam>
- <returns>A delegate that, when invoked, creates a log message.</returns>
- </member>
- <member name="M:Microsoft.Extensions.Logging.LoggerMessage.Define``3(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String)">
- <summary>Creates a delegate which can be invoked for logging a message.</summary>
- <param name="logLevel">The <see cref="T:Microsoft.Extensions.Logging.LogLevel" />.</param>
- <param name="eventId">The event ID.</param>
- <param name="formatString">The named format string.</param>
- <typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
- <typeparam name="T2">The type of the second parameter passed to the named format string.</typeparam>
- <typeparam name="T3">The type of the third parameter passed to the named format string.</typeparam>
- <returns>A delegate which when invoked creates a log message.</returns>
- </member>
- <member name="M:Microsoft.Extensions.Logging.LoggerMessage.Define``3(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String,Microsoft.Extensions.Logging.LogDefineOptions)">
- <summary>Creates a delegate that can be invoked to log a message.</summary>
- <param name="logLevel">The <see cref="T:Microsoft.Extensions.Logging.LogLevel" />.</param>
- <param name="eventId">The event ID.</param>
- <param name="formatString">The named format string.</param>
- <param name="options">The <see cref="T:Microsoft.Extensions.Logging.LogDefineOptions" />.</param>
- <typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
- <typeparam name="T2">The type of the second parameter passed to the named format string.</typeparam>
- <typeparam name="T3">The type of the third parameter passed to the named format string.</typeparam>
- <returns>A delegate that, when invoked, creates a log message.</returns>
- </member>
- <member name="M:Microsoft.Extensions.Logging.LoggerMessage.Define``4(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String)">
- <summary>Creates a delegate which can be invoked for logging a message.</summary>
- <param name="logLevel">The <see cref="T:Microsoft.Extensions.Logging.LogLevel" />.</param>
- <param name="eventId">The event ID.</param>
- <param name="formatString">The named format string.</param>
- <typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
- <typeparam name="T2">The type of the second parameter passed to the named format string.</typeparam>
- <typeparam name="T3">The type of the third parameter passed to the named format string.</typeparam>
- <typeparam name="T4">The type of the fourth parameter passed to the named format string.</typeparam>
- <returns>A delegate which when invoked creates a log message.</returns>
- </member>
- <member name="M:Microsoft.Extensions.Logging.LoggerMessage.Define``4(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String,Microsoft.Extensions.Logging.LogDefineOptions)">
- <summary>Creates a delegate that can be invoked to log a message.</summary>
- <param name="logLevel">The <see cref="T:Microsoft.Extensions.Logging.LogLevel" />.</param>
- <param name="eventId">The event ID.</param>
- <param name="formatString">The named format string.</param>
- <param name="options">The <see cref="T:Microsoft.Extensions.Logging.LogDefineOptions" />.</param>
- <typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
- <typeparam name="T2">The type of the second parameter passed to the named format string.</typeparam>
- <typeparam name="T3">The type of the third parameter passed to the named format string.</typeparam>
- <typeparam name="T4">The type of the fourth parameter passed to the named format string.</typeparam>
- <returns>A delegate that, when invoked, creates a log message.</returns>
- </member>
- <member name="M:Microsoft.Extensions.Logging.LoggerMessage.Define``5(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String)">
- <summary>Creates a delegate which can be invoked for logging a message.</summary>
- <param name="logLevel">The <see cref="T:Microsoft.Extensions.Logging.LogLevel" />.</param>
- <param name="eventId">The event ID.</param>
- <param name="formatString">The named format string.</param>
- <typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
- <typeparam name="T2">The type of the second parameter passed to the named format string.</typeparam>
- <typeparam name="T3">The type of the third parameter passed to the named format string.</typeparam>
- <typeparam name="T4">The type of the fourth parameter passed to the named format string.</typeparam>
- <typeparam name="T5">The type of the fifth parameter passed to the named format string.</typeparam>
- <returns>A delegate which when invoked creates a log message.</returns>
- </member>
- <member name="M:Microsoft.Extensions.Logging.LoggerMessage.Define``5(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String,Microsoft.Extensions.Logging.LogDefineOptions)">
- <summary>Creates a delegate that can be invoked to log a message.</summary>
- <param name="logLevel">The <see cref="T:Microsoft.Extensions.Logging.LogLevel" />.</param>
- <param name="eventId">The event ID.</param>
- <param name="formatString">The named format string.</param>
- <param name="options">The <see cref="T:Microsoft.Extensions.Logging.LogDefineOptions" />.</param>
- <typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
- <typeparam name="T2">The type of the second parameter passed to the named format string.</typeparam>
- <typeparam name="T3">The type of the third parameter passed to the named format string.</typeparam>
- <typeparam name="T4">The type of the fourth parameter passed to the named format string.</typeparam>
- <typeparam name="T5">The type of the fifth parameter passed to the named format string.</typeparam>
- <returns>A delegate that, when invoked, creates a log message.</returns>
- </member>
- <member name="M:Microsoft.Extensions.Logging.LoggerMessage.Define``6(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String)">
- <summary>Creates a delegate which can be invoked for logging a message.</summary>
- <param name="logLevel">The <see cref="T:Microsoft.Extensions.Logging.LogLevel" />.</param>
- <param name="eventId">The event ID.</param>
- <param name="formatString">The named format string.</param>
- <typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
- <typeparam name="T2">The type of the second parameter passed to the named format string.</typeparam>
- <typeparam name="T3">The type of the third parameter passed to the named format string.</typeparam>
- <typeparam name="T4">The type of the fourth parameter passed to the named format string.</typeparam>
- <typeparam name="T5">The type of the fifth parameter passed to the named format string.</typeparam>
- <typeparam name="T6">The type of the sixth parameter passed to the named format string.</typeparam>
- <returns>A delegate which when invoked creates a log message.</returns>
- </member>
- <member name="M:Microsoft.Extensions.Logging.LoggerMessage.Define``6(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String,Microsoft.Extensions.Logging.LogDefineOptions)">
- <summary>Creates a delegate that can be invoked to log a message.</summary>
- <param name="logLevel">The <see cref="T:Microsoft.Extensions.Logging.LogLevel" />.</param>
- <param name="eventId">The event ID.</param>
- <param name="formatString">The named format string.</param>
- <param name="options">The <see cref="T:Microsoft.Extensions.Logging.LogDefineOptions" />.</param>
- <typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
- <typeparam name="T2">The type of the second parameter passed to the named format string.</typeparam>
- <typeparam name="T3">The type of the third parameter passed to the named format string.</typeparam>
- <typeparam name="T4">The type of the fourth parameter passed to the named format string.</typeparam>
- <typeparam name="T5">The type of the fifth parameter passed to the named format string.</typeparam>
- <typeparam name="T6">The type of the sixth parameter passed to the named format string.</typeparam>
- <returns>A delegate that, when invoked, creates a log message.</returns>
- </member>
- <member name="M:Microsoft.Extensions.Logging.LoggerMessage.DefineScope(System.String)">
- <summary>Creates a delegate which can be invoked to create a log scope.</summary>
- <param name="formatString">The named format string.</param>
- <returns>A delegate which when invoked creates a log scope.</returns>
- </member>
- <member name="M:Microsoft.Extensions.Logging.LoggerMessage.DefineScope``1(System.String)">
- <summary>Creates a delegate which can be invoked to create a log scope.</summary>
- <param name="formatString">The named format string.</param>
- <typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
- <returns>A delegate which when invoked creates a log scope.</returns>
- </member>
- <member name="M:Microsoft.Extensions.Logging.LoggerMessage.DefineScope``2(System.String)">
- <summary>Creates a delegate which can be invoked to create a log scope.</summary>
- <param name="formatString">The named format string.</param>
- <typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
- <typeparam name="T2">The type of the second parameter passed to the named format string.</typeparam>
- <returns>A delegate which when invoked creates a log scope.</returns>
- </member>
- <member name="M:Microsoft.Extensions.Logging.LoggerMessage.DefineScope``3(System.String)">
- <summary>Creates a delegate which can be invoked to create a log scope.</summary>
- <param name="formatString">The named format string.</param>
- <typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
- <typeparam name="T2">The type of the second parameter passed to the named format string.</typeparam>
- <typeparam name="T3">The type of the third parameter passed to the named format string.</typeparam>
- <returns>A delegate which when invoked creates a log scope.</returns>
- </member>
- <member name="M:Microsoft.Extensions.Logging.LoggerMessage.DefineScope``4(System.String)">
- <summary>Creates a delegate which can be invoked to create a log scope.</summary>
- <param name="formatString">The named format string.</param>
- <typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
- <typeparam name="T2">The type of the second parameter passed to the named format string.</typeparam>
- <typeparam name="T3">The type of the third parameter passed to the named format string.</typeparam>
- <typeparam name="T4">The type of the fourth parameter passed to the named format string.</typeparam>
- <returns>A delegate which when invoked creates a log scope.</returns>
- </member>
- <member name="M:Microsoft.Extensions.Logging.LoggerMessage.DefineScope``5(System.String)">
- <summary>Creates a delegate which can be invoked to create a log scope.</summary>
- <param name="formatString">The named format string.</param>
- <typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
- <typeparam name="T2">The type of the second parameter passed to the named format string.</typeparam>
- <typeparam name="T3">The type of the third parameter passed to the named format string.</typeparam>
- <typeparam name="T4">The type of the fourth parameter passed to the named format string.</typeparam>
- <typeparam name="T5">The type of the fifth parameter passed to the named format string.</typeparam>
- <returns>A delegate which when invoked creates a log scope.</returns>
- </member>
- <member name="M:Microsoft.Extensions.Logging.LoggerMessage.DefineScope``6(System.String)">
- <summary>Creates a delegate which can be invoked to create a log scope.</summary>
- <param name="formatString">The named format string.</param>
- <typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
- <typeparam name="T2">The type of the second parameter passed to the named format string.</typeparam>
- <typeparam name="T3">The type of the third parameter passed to the named format string.</typeparam>
- <typeparam name="T4">The type of the fourth parameter passed to the named format string.</typeparam>
- <typeparam name="T5">The type of the fifth parameter passed to the named format string.</typeparam>
- <typeparam name="T6">The type of the sisxth parameter passed to the named format string.</typeparam>
- <returns>A delegate which when invoked creates a log scope.</returns>
- </member>
- <member name="T:Microsoft.Extensions.Logging.LoggerMessageAttribute">
- <summary>Provides information to guide the production of a strongly-typed logging method.</summary>
- </member>
- <member name="M:Microsoft.Extensions.Logging.LoggerMessageAttribute.#ctor">
- <summary>Initializes a new instance of the <see cref="T:Microsoft.Extensions.Logging.LoggerMessageAttribute" /> class which is used to guide the production of a strongly-typed logging method.</summary>
- </member>
- <member name="M:Microsoft.Extensions.Logging.LoggerMessageAttribute.#ctor(System.Int32,Microsoft.Extensions.Logging.LogLevel,System.String)">
- <summary>Initializes a new instance of the <see cref="T:Microsoft.Extensions.Logging.LoggerMessageAttribute" /> class, which is used to guide the production of a strongly typed logging method.</summary>
- <param name="eventId">The log event ID.</param>
- <param name="level">The log level.</param>
- <param name="message">The format string of the log message.</param>
- </member>
- <member name="P:Microsoft.Extensions.Logging.LoggerMessageAttribute.EventId">
- <summary>Gets the logging event id for the logging method.</summary>
- </member>
- <member name="P:Microsoft.Extensions.Logging.LoggerMessageAttribute.EventName">
- <summary>Gets or sets the logging event name for the logging method.</summary>
- </member>
- <member name="P:Microsoft.Extensions.Logging.LoggerMessageAttribute.Level">
- <summary>Gets the logging level for the logging method.</summary>
- </member>
- <member name="P:Microsoft.Extensions.Logging.LoggerMessageAttribute.Message">
- <summary>Gets the message text for the logging method.</summary>
- </member>
- <member name="P:Microsoft.Extensions.Logging.LoggerMessageAttribute.SkipEnabledCheck">
- <summary>Gets or sets the flag to skip the <see langword="IsEnabled" /> check for the logging method.</summary>
- </member>
- <member name="T:Microsoft.Extensions.Logging.LogLevel">
- <summary>Defines logging severity levels.</summary>
- </member>
- <member name="F:Microsoft.Extensions.Logging.LogLevel.Critical">
- <summary>Logs that describe an unrecoverable application or system crash, or a catastrophic failure that requires
- immediate attention.</summary>
- </member>
- <member name="F:Microsoft.Extensions.Logging.LogLevel.Debug">
- <summary>Logs that are used for interactive investigation during development. These logs should primarily contain
- information useful for debugging and have no long-term value.</summary>
- </member>
- <member name="F:Microsoft.Extensions.Logging.LogLevel.Error">
- <summary>Logs that highlight when the current flow of execution is stopped due to a failure. These should indicate a
- failure in the current activity, not an application-wide failure.</summary>
- </member>
- <member name="F:Microsoft.Extensions.Logging.LogLevel.Information">
- <summary>Logs that track the general flow of the application. These logs should have long-term value.</summary>
- </member>
- <member name="F:Microsoft.Extensions.Logging.LogLevel.None">
- <summary>Not used for writing log messages. Specifies that a logging category should not write any messages.</summary>
- </member>
- <member name="F:Microsoft.Extensions.Logging.LogLevel.Trace">
- <summary>Logs that contain the most detailed messages. These messages may contain sensitive application data.
- These messages are disabled by default and should never be enabled in a production environment.</summary>
- </member>
- <member name="F:Microsoft.Extensions.Logging.LogLevel.Warning">
- <summary>Logs that highlight an abnormal or unexpected event in the application flow, but do not otherwise cause the
- application execution to stop.</summary>
- </member>
- </members>
- </doc>
|