|
76 | 76 | </list> |
77 | 77 | </remarks> |
78 | 78 | <example><code> |
79 | | - internal class Foo : INotifyPropertyChanged { |
| 79 | + public class Foo : INotifyPropertyChanged { |
80 | 80 | public event PropertyChangedEventHandler PropertyChanged; |
81 | 81 | [NotifyPropertyChangedInvocator] |
82 | 82 | protected virtual void NotifyChanged(string propertyName) { ... } |
|
147 | 147 | </summary> |
148 | 148 | <example><code> |
149 | 149 | [LocalizationRequiredAttribute(true)] |
150 | | - internal class Foo { |
| 150 | + public class Foo { |
151 | 151 | private string str = "my string"; // Warning: Localizable string |
152 | 152 | } |
153 | 153 | </code></example> |
|
180 | 180 | </summary> |
181 | 181 | <example><code> |
182 | 182 | [BaseTypeRequired(typeof(IComponent)] // Specify requirement |
183 | | - internal class ComponentAttribute : Attribute { } |
| 183 | + public class ComponentAttribute : Attribute { } |
184 | 184 | [Component] // ComponentAttribute requires implementing IComponent interface |
185 | | - internal class MyComponent : IComponent { } |
| 185 | + public class MyComponent : IComponent { } |
186 | 186 | </code></example> |
187 | 187 | </member> |
188 | 188 | <member name="T:JetBrains.Annotations.UsedImplicitlyAttribute"> |
|
6140 | 6140 | <param name="text">The text to be post-processed.</param> |
6141 | 6141 | <returns>Post-processed text.</returns> |
6142 | 6142 | </member> |
6143 | | - <member name="M:NLog.LayoutRenderers.Wrappers.ReplaceLayoutRendererWrapper.ReplaceNamedGroup(System.String,System.String,System.String,System.Text.RegularExpressions.Match)"> |
6144 | | - <summary> |
6145 | | - A match evaluator for Regular Expression based replacing |
6146 | | - </summary> |
6147 | | - <param name="input"></param> |
6148 | | - <param name="groupName"></param> |
6149 | | - <param name="replacement"></param> |
6150 | | - <param name="match"></param> |
6151 | | - <returns></returns> |
6152 | | - </member> |
6153 | 6143 | <member name="P:NLog.LayoutRenderers.Wrappers.ReplaceLayoutRendererWrapper.SearchFor"> |
6154 | 6144 | <summary> |
6155 | 6145 | Gets or sets the text to search for. |
|
6171 | 6161 | <value>The replacement string.</value> |
6172 | 6162 | <docgen category='Search/Replace Options' order='10' /> |
6173 | 6163 | </member> |
6174 | | - <member name="P:NLog.LayoutRenderers.Wrappers.ReplaceLayoutRendererWrapper.ReplaceGroupName"> |
6175 | | - <summary> |
6176 | | - Gets or sets the group name to replace when using regular expressions. |
6177 | | - Leave null or empty to replace without using group name. |
6178 | | - </summary> |
6179 | | - <value>The group name.</value> |
6180 | | - <docgen category='Search/Replace Options' order='10' /> |
6181 | | - </member> |
6182 | 6164 | <member name="P:NLog.LayoutRenderers.Wrappers.ReplaceLayoutRendererWrapper.IgnoreCase"> |
6183 | 6165 | <summary> |
6184 | 6166 | Gets or sets a value indicating whether to ignore case. |
|
6193 | 6175 | <value>A value of <c>true</c> if whole words should be searched for; otherwise, <c>false</c>.</value> |
6194 | 6176 | <docgen category='Search/Replace Options' order='10' /> |
6195 | 6177 | </member> |
6196 | | - <member name="T:NLog.LayoutRenderers.Wrappers.ReplaceLayoutRendererWrapper.Replacer"> |
6197 | | - <summary> |
6198 | | - This class was created instead of simply using a lambda expression so that the "ThreadAgnosticAttributeTest" will pass |
6199 | | - </summary> |
6200 | | - </member> |
6201 | 6178 | <member name="T:NLog.LayoutRenderers.Wrappers.Rot13LayoutRendererWrapper"> |
6202 | 6179 | <summary> |
6203 | 6180 | Decodes text "encrypted" with ROT-13. |
|
8156 | 8133 | <param name="fallback">Fallback value to return in case of exception. Defaults to default value of type T.</param> |
8157 | 8134 | <returns>Result returned by the provided function or fallback value in case of exception.</returns> |
8158 | 8135 | </member> |
8159 | | - <member name="M:NLog.Logger.SwallowAsync(System.Func{System.Threading.Tasks.Task})"> |
8160 | | - <summary> |
8161 | | - Runs async action. If the action throws, the exception is logged at <c>Error</c> level. Exception is not propagated outside of this method. |
8162 | | - </summary> |
8163 | | - <param name="asyncAction">Async action to execute.</param> |
8164 | | - </member> |
8165 | | - <member name="M:NLog.Logger.SwallowAsync``1(System.Func{System.Threading.Tasks.Task{``0}})"> |
8166 | | - <summary> |
8167 | | - Runs the provided async function and returns its result. If exception is thrown, it is logged at <c>Error</c> level. |
8168 | | - Exception is not propagated outside of this method. Fallback value is returned instead. |
8169 | | - </summary> |
8170 | | - <typeparam name="T">Return type of the provided function.</typeparam> |
8171 | | - <param name="asyncFunc">Async function to run.</param> |
8172 | | - <returns>Result returned by the provided function or fallback value in case of exception.</returns> |
8173 | | - </member> |
8174 | | - <member name="M:NLog.Logger.SwallowAsync``1(System.Func{System.Threading.Tasks.Task{``0}},``0)"> |
8175 | | - <summary> |
8176 | | - Runs the provided async function and returns its result. If exception is thrown, it is logged at <c>Error</c> level. |
8177 | | - Exception is not propagated outside of this method. Fallback value is returned instead. |
8178 | | - </summary> |
8179 | | - <typeparam name="T">Return type of the provided function.</typeparam> |
8180 | | - <param name="asyncFunc">Async function to run.</param> |
8181 | | - <param name="fallback">Fallback value to return in case of exception. Defaults to default value of type T.</param> |
8182 | | - <returns>Result returned by the provided function or fallback value in case of exception.</returns> |
8183 | | - </member> |
8184 | 8136 | <member name="M:NLog.Logger.Log(NLog.LogLevel,System.Object)"> |
8185 | 8137 | <summary> |
8186 | 8138 | Writes the diagnostic message at the specified level. |
|
10859 | 10811 | Gets or sets the log which should be always used regardless of source level. |
10860 | 10812 | </summary> |
10861 | 10813 | </member> |
10862 | | - <member name="P:NLog.NLogTraceListener.DisableFlush"> |
10863 | | - <summary> |
10864 | | - Gets or sets a value indicating whether flush calls from trace sources should be ignored. |
10865 | | - </summary> |
10866 | | - </member> |
10867 | 10814 | <member name="P:NLog.NLogTraceListener.IsThreadSafe"> |
10868 | 10815 | <summary> |
10869 | 10816 | Gets a value indicating whether the trace listener is thread safe. |
|
11021 | 10968 | </summary> |
11022 | 10969 | <param name="logEvents">Logging events to be written out.</param> |
11023 | 10970 | </member> |
11024 | | - <member name="M:NLog.Targets.Target.MergeEventProperties(NLog.LogEventInfo)"> |
11025 | | - <summary> |
11026 | | - Merges (copies) the event context properties from any event info object stored in |
11027 | | - parameters of the given event info object. |
11028 | | - </summary> |
11029 | | - <param name="logEvent">The event info object to perform the merge to.</param> |
11030 | | - </member> |
11031 | 10971 | <member name="P:NLog.Targets.Target.Name"> |
11032 | 10972 | <summary> |
11033 | 10973 | Gets or sets the name of the target. |
|
12906 | 12846 | </summary> |
12907 | 12847 | <remarks>Only happens when <see cref="P:NLog.Targets.MailTarget.Html"/> is set to true.</remarks> |
12908 | 12848 | </member> |
12909 | | - <member name="P:NLog.Targets.MailTarget.Timeout"> |
12910 | | - <summary> |
12911 | | - Gets or sets a value indicating the SMTP client timeout. |
12912 | | - </summary> |
12913 | | - </member> |
12914 | 12849 | <member name="T:NLog.Targets.MemoryTarget"> |
12915 | 12850 | <summary> |
12916 | 12851 | Writes log messages to an ArrayList in memory for programmatic retrieval. |
|
0 commit comments