-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathlayout-renderers.json
1547 lines (1547 loc) · 46.7 KB
/
layout-renderers.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"name": "activityid",
"page": "Trace-Activity-Id-Layout-Renderer",
"description": "Puts into log a System.Diagnostics trace correlation id.",
"platforms": [
"net35",
"net40",
"net45",
"netstandard2.0"
],
"category": "Context information"
},
{
"name": "db-null",
"page": "db-null-layout-renderer",
"description": "Render DbNull for the database",
"category": ""
},
{
"name": "all-event-properties",
"page": "All-Event-Properties-Layout-Renderer",
"description": "Log all event context data.",
"category": "Context information"
},
{
"name": "appdomain",
"page": "AppDomain-Layout-Renderer",
"description": "Current app domain.",
"category": "Processes, threads and assemblies"
},
{
"name": "assembly-version",
"page": "AssemblyVersion-Layout-Renderer",
"description": "The version of the executable in the default application domain.",
"category": "Processes, threads and assemblies"
},
{
"name": "basedir",
"page": "Basedir-Layout-Renderer",
"description": "The current application domain's base directory.",
"category": "Files and directories"
},
{
"name": "dir-separator",
"page": "Directory-separator",
"description": "The the OS dependent directory separator.",
"category": "Files and directories"
},
{
"name": "callsite",
"page": "Callsite-Layout-Renderer",
"description": "The call site (class name, method name and source information)",
"category": "Callsite and stacktraces"
},
{
"name": "callsite-linenumber",
"page": "Callsite-line-number-layout-renderer",
"description": "The call site source line number.",
"category": "Callsite and stacktraces"
},
{
"name": "callsite-filename",
"page": "Callsite-file-name-layout-renderer",
"description": "The call site source file name.",
"category": "Callsite and stacktraces"
},
{
"name": "counter",
"page": "Counter-Layout-Renderer",
"description": "A counter value (increases on each layout rendering)",
"category": "Counters"
},
{
"name": "currentdir",
"page": "CurrentDir-Layout-Renderer",
"description": "The current working directory of the application.",
"category": "Files and directories"
},
{
"name": "processdir",
"page": "ProcessDir-Layout-Renderer",
"description": "The executable process directory of the application.",
"platforms": [
"net35",
"net40",
"net45",
"netstandard1.5",
"netstandard2.0"
],
"category": "Files and directories"
},
{
"name": "date",
"page": "Date-Layout-Renderer",
"description": "Current date and time.",
"category": "Date and time"
},
{
"name": "environment",
"page": "Environment-Layout-Renderer",
"description": "The environment variable. (e.g PATH, OSVersion)",
"category": "Environment and config files"
},
{
"name": "event-properties",
"aliases": ["event-property"],
"page": "EventProperties-Layout-Renderer",
"description": "Log event properties data - rename of ${event-context}",
"category": "Context information"
},
{
"name": "environment-user",
"page": "Environment-User-Layout-Renderer",
"description": "User identity information (username).",
"platforms": [
"net35",
"net40",
"net45",
"netstandard2.0"
],
"category": "Identity"
},
{
"name": "exception",
"page": "Exception-Layout-Renderer",
"description": "Exception information provided through a call to one of the Logger methods",
"category": "Context information"
},
{
"name": "exceptiondata",
"page": "ExceptionData-Layout-Renderer",
"description": "Lookup item in Exception.Data-Dictionary from Exception provided together with the LogEvent",
"category": "Context information"
},
{
"name": "file-contents",
"page": "FileContents-Layout-Renderer",
"description": "Renders contents of the specified file.",
"category": "Files and directories"
},
{
"name": "gc",
"page": "Gc-Layout-Renderer",
"description": "The information about the garbage collector.",
"category": "Processes, threads and assemblies"
},
{
"name": "gdc",
"page": "Gdc-Layout-Renderer",
"description": "Global Diagnostic Context item. Dictionary structure to hold per-application-instance values.",
"category": "Context information"
},
{
"name": "guid",
"page": "Guid-Layout-Renderer",
"description": "Globally-unique identifier(GUID).",
"category": "Counters"
},
{
"name": "hostname",
"page": "HostName-Layout-Renderer",
"description": "The host name of the computer that the process is running on.",
"category": "Processes, threads and assemblies"
},
{
"name": "identity",
"page": "Identity-Layout-Renderer",
"description": "Thread identity information (name and authentication information).",
"category": "Identity"
},
{
"name": "install-context",
"page": "InstallContext-Layout-Renderer",
"description": "Installation parameter (passed to InstallNLogConfig).",
"category": "Context information"
},
{
"name": "level",
"page": "Level-Layout-Renderer",
"description": "The log level (e.g. ERROR, DEBUG) or level ordinal (number)",
"category": ""
},
{
"name": "literal",
"page": "Literal-Layout-Renderer",
"description": "A string literal. (text) - useful to escape brackets",
"category": ""
},
{
"name": "local-ip",
"page": "Local-IP-Address-Layout-Renderer",
"description": "Local IP Address from Network Interface.",
"platforms": [
"net35",
"net40",
"net45",
"netstandard2.0"
],
"category": "Processes, threads and assemblies"
},
{
"name": "log4jxmlevent",
"page": "Log4JXMLEvent-Layout-Renderer",
"description": "XML event description compatible with log4j, Chainsaw and NLogViewer.",
"category": "Integrations"
},
{
"name": "logger",
"aliases": ["loggername"],
"page": "Logger-Layout-Renderer",
"description": "The logger name. GetLogger, GetCurrentClassLogger etc",
"category": "Context information"
},
{
"name": "longdate",
"page": "LongDate-Layout-Renderer",
"description": "The date and time in a long, sortable format `yyyy-MM-dd HH:mm:ss.ffff`.",
"category": "Date and time"
},
{
"name": "machinename",
"page": "MachineName-Layout-Renderer",
"description": "The machine name that the process is running on.",
"category": "Processes, threads and assemblies"
},
{
"name": "mdc",
"page": "Mdc-Layout-Renderer",
"description": "Mapped Diagnostics Context - a thread-local structure.",
"platform-notes": "For NLog 5.0 this has been replaced with ScopeProperty",
"category": "Context information"
},
{
"name": "mdlc",
"page": "Mdlc-Layout-Renderer",
"description": "Async Mapped Diagnostics Context - a thread-local structure for scoped context. Async version of the MDC. ",
"platform-notes": "For NLog 5.0 this has been replaced with ScopeProperty",
"category": "Context information"
},
{
"name": "message",
"page": "Message-Layout-Renderer",
"description": "The (formatted) log message.",
"category": ""
},
{
"name": "ndc",
"page": "Ndc-Layout-Renderer",
"description": "Nested Diagnostics Context - a thread-local structure.",
"platform-notes": "For NLog 5.0 this has been replaced with ScopeNested",
"category": "Context information"
},
{
"name": "ndlc",
"page": "Ndlc-Layout-Renderer",
"description": "Async Nested Diagnostics Context - thread-local structure.",
"platform-notes": "For NLog 5.0 this has been replaced with ScopeNested",
"category": "Context information"
},
{
"name": "newline",
"page": "Newline-Layout-Renderer",
"description": "A newline literal.",
"category": ""
},
{
"name": "nlogdir",
"page": "NLogDir-Layout-Renderer",
"description": "The directory where NLog.dll is located.",
"platforms": [
"net35",
"net40",
"net45",
"netstandard1.5",
"netstandard2.0"
],
"category": "Files and directories"
},
{
"name": "performancecounter",
"page": "PerformanceCounter-Layout-Renderer",
"description": "The performance counter.",
"package": "NLog.PerformanceCounter",
"platform-notes": "For NLog 5.0: NLog.PerformanceCounter nuget package required",
"platforms": [
"net35",
"net40",
"net45",
"netstandard2.0"
],
"category": "Processes, threads and assemblies"
},
{
"name": "processid",
"page": "ProcessId-Layout-Renderer",
"description": "The identifier of the current process.",
"platforms": [
"net35",
"net40",
"net45",
"netstandard1.5",
"netstandard2.0"
],
"category": "Processes, threads and assemblies"
},
{
"name": "processinfo",
"page": "ProcessInfo-Layout-Renderer",
"description": "The information about the running process. e.g. StartTime, PagedMemorySize",
"platforms": [
"net35",
"net40",
"net45",
"netstandard1.5",
"netstandard2.0"
],
"category": "Processes, threads and assemblies"
},
{
"name": "processname",
"page": "ProcessName-Layout-Renderer",
"description": "The name of the current process.",
"platforms": [
"net35",
"net40",
"net45",
"netstandard1.5",
"netstandard2.0"
],
"category": "Processes, threads and assemblies"
},
{
"name": "processtime",
"page": "ProcessTime-Layout-Renderer",
"description": "The process lifetime in format HH:mm:ss.mmm.",
"category": "Processes, threads and assemblies"
},
{
"name": "registry",
"page": "Registry-Layout-Renderer",
"description": "A value from the Windows Registry.",
"package": "NLog.WindowsRegistry",
"platform-notes": "For NLog 5.0: NLog.WindowsRegistry nuget package required",
"platforms": [
"net35",
"net40",
"net45",
"netstandard2.0"
],
"category": "Environment and config files"
},
{
"name": "scopenested",
"page": "ScopeNested-Layout-Renderer",
"description": "ScopeContext Nested states from the thread execution context (Ex. BeginScope). Similar to Nested Diagnostic Context (NDC) in Log4j",
"category": "Context information"
},
{
"name": "scopeproperty",
"page": "ScopeProperty-Layout-Renderer",
"description": "ScopeContext Properties from the thread execution context (Ex. BeginScope). Similar to Mapped Diagnostic Context (MDC) in Log4j",
"category": "Context information"
},
{
"name": "scopetiming",
"page": "ScopeTiming-Layout-Renderer",
"description": "ScopeContext Timing formats scope duration time (Ex. BeginScope).",
"category": "Context information"
},
{
"name": "sequenceid",
"page": "SequenceId-layout-renderer",
"description": "The log sequence id",
"category": "Counters"
},
{
"name": "shortdate",
"page": "ShortDate-Layout-Renderer",
"description": "The short date in a sortable format yyyy-MM-dd.",
"category": "Date and time"
},
{
"name": "specialfolder",
"page": "Special-Folder-Layout-Renderer",
"description": "System special folder path (includes My Documents, My Music, Program Files, Desktop, and more).",
"platforms": [
"net35",
"net40",
"net45",
"netstandard2.0"
],
"category": "Files and directories"
},
{
"name": "stacktrace",
"page": "Stack-Trace-Layout-Renderer",
"description": "Render the Stack trace",
"category": "Callsite and stacktraces"
},
{
"name": "tempdir",
"page": "TempDir-Layout-Renderer",
"description": "A temporary directory.",
"category": "Files and directories"
},
{
"name": "threadid",
"page": "ThreadId-Layout-Renderer",
"description": "The identifier of the current thread.",
"category": "Processes, threads and assemblies"
},
{
"name": "threadname",
"page": "ThreadName-Layout-Renderer",
"description": "The name of the current thread.",
"platforms": [
"net35",
"net40",
"net45",
"netstandard1.5",
"netstandard2.0"
],
"category": "Processes, threads and assemblies"
},
{
"name": "ticks",
"page": "Ticks-Layout-Renderer",
"description": "The Ticks value of current date and time.",
"category": "Date and time"
},
{
"name": "time",
"page": "Time-Layout-Renderer",
"description": "The time in a 24-hour, sortable format HH:mm:ss.mmm.",
"category": "Date and time"
},
{
"name": "var",
"page": "Var-Layout-Renderer",
"description": "NLog Logging Configuration Variable Value",
"category": "Context information"
},
{
"name": "windows-identity",
"page": "Windows-Identity-Layout-Renderer",
"package": "NLog.WindowsIdentity",
"description": "Thread Windows identity information (username)",
"platform-notes": "For NLog 5.0 and .NET Standard: NLog.WindowsIdentity nuget package required",
"platforms": [
"net35",
"net40",
"net45",
"netstandard1.5",
"netstandard2.0"
],
"category": "Identity"
},
{
"name": "cached",
"page": "Cached-Layout-Renderer",
"description": "Applies caching to another layout output.",
"wrapper": true,
"category": ""
},
{
"name": "norawvalue",
"page": "NoRawValue-Layout-Renderer",
"description": "Prevents the output of another layout renderer to be treated as raw value",
"wrapper": true,
"category": "Encoding and string transformations"
},
{
"name": "filesystem-normalize",
"page": "Filesystem-Normalize-Layout-Renderer",
"description": "Filters characters not allowed in the file names by replacing them with safe character.",
"wrapper": true,
"category": "Files and directories"
},
{
"name": "object-path",
"page": "ObjectPath-Layout-Renderer",
"description": "Render a (nested) property of an object",
"wrapper": true,
"category": ""
},
{
"name": "json-encode",
"page": "Json-Encode-Layout-Renderer",
"description": "Escapes output of another layout using JSON rules.",
"wrapper": true,
"category": "Encoding and string transformations"
},
{
"name": "lowercase",
"page": "Lowercase-Layout-Renderer",
"description": "Converts the result of another layout output to lower case.",
"wrapper": true,
"category": "Encoding and string transformations"
},
{
"name": "onexception",
"page": "OnException-Layout-Renderer",
"description": "Only outputs the inner layout when exception has been defined for log message.",
"wrapper": true,
"category": "Context information"
},
{
"name": "onhasproperties",
"page": "OnHasProperties-Layout-Renderer",
"description": "Only outputs the inner layout when event properties are included with the logevent.",
"wrapper": true,
"category": "Context information"
},
{
"name": "pad",
"page": "Pad-Layout-Renderer",
"description": "Applies padding to another layout output.",
"wrapper": true,
"category": "Encoding and string transformations"
},
{
"name": "replace",
"page": "Replace-Layout-Renderer",
"description": "Replaces a string in the output of another layout with another string. Optional with regex",
"wrapper": true,
"category": "Encoding and string transformations"
},
{
"name": "replace-newlines",
"page": "Replace-NewLines-Layout-Renderer",
"description": "Replaces newline characters with another string.",
"wrapper": true,
"category": "Encoding and string transformations"
},
{
"name": "rot13",
"page": "Rot13-Layout-Renderer",
"description": "Decodes text \"encrypted\"with ROT-13.",
"wrapper": true,
"category": "Encoding and string transformations"
},
{
"name": "trim-whitespace",
"page": "Trim-Whitespace-Layout-Renderer",
"description": "Trims the whitespace from the result of another layout renderer.",
"wrapper": true,
"category": "Encoding and string transformations"
},
{
"name": "uppercase",
"page": "Uppercase-Layout-Renderer",
"description": "Converts the result of another layout output to upper case.",
"wrapper": true,
"category": "Encoding and string transformations"
},
{
"name": "url-encode",
"page": "Url-Encode-Layout-Renderer",
"description": "Encodes the result of another layout output for use with URLs.",
"wrapper": true,
"category": "Encoding and string transformations"
},
{
"name": "when",
"page": "When-Layout-Renderer",
"description": "Only outputs the inner layout when the specified condition has been met.",
"wrapper": true,
"category": "Conditions"
},
{
"name": "whenEmpty",
"page": "WhenEmpty-Layout-Renderer",
"description": "Outputs alternative layout when the inner layout produces empty result.",
"wrapper": true,
"category": "Conditions"
},
{
"name": "WrapLine",
"page": "WrapLine-layout-renderer",
"description": "Wraps the result of another layout output at specified line length.",
"wrapper": true,
"category": "Encoding and string transformations"
},
{
"name": "Left",
"page": "Left-layout-renderer",
"description": "Left part of a text",
"wrapper": true,
"category": "Encoding and string transformations"
},
{
"name": "Right",
"page": "Right-layout-renderer",
"description": "Right part of a text",
"wrapper": true,
"category": "Encoding and string transformations"
},
{
"name": "Substring",
"page": "Substring-layout-renderer",
"description": "Substring of a text",
"wrapper": true,
"category": "Encoding and string transformations"
},
{
"name": "xml-encode",
"page": "Xml-Encode-Layout-Renderer",
"description": "Converts the result of another layout output to be XML-compliant.",
"wrapper": true,
"category": "Encoding and string transformations"
},
{
"name": "appsetting",
"page": "AppSetting-Layout-Renderer",
"description": "AppSetting value from application app.config or web.config file",
"platform-notes": "For NLog 4.5 (and older) then NLog.Extended nuget package required",
"platforms": [
"net35",
"net40",
"net45"
],
"category": "Environment and config files"
},
{
"name": "configsetting",
"page": "ConfigSetting-Layout-Renderer",
"package": [
"NLog.Extensions.Logging",
"NLog.Extensions.Hosting",
"NLog.Web.AspNetCore"
],
"description": "Value from the appsettings.json or other configuration in ASP.NET Core & .NET Core",
"platforms": [
"net461",
"netstandard1.3",
"netstandard1.5",
"netstandard2.0"
],
"category": "Environment and config files"
},
{
"name": "MicrosoftConsoleLayout",
"page": "MicrosoftConsoleLayout",
"description": "Write events to text format similar to Microsoft AddConsole Formatter for Microsoft.Hosting.Lifetime",
"package": [
"NLog.Extensions.Logging",
"NLog.Extensions.Hosting",
"NLog.Web.AspNetCore"
],
"category": "Integrations"
},
{
"name": "aspnet-MVC-Action",
"page": "AspNet-MVC-Action-Layout-Renderer",
"package": [
"NLog.Web",
"NLog.Web.AspNetCore"
],
"description": "ASP.NET MVC Action Name from routing parameters",
"platforms": [
"net35",
"net45",
"netstandard1.5",
"netstandard2.0"
],
"category": "Web, ASP.NET and ASP.NET Core"
},
{
"name": "aspnet-MVC-Controller",
"page": "AspNet-MVC-Controller-Layout-Renderer",
"package": [
"NLog.Web",
"NLog.Web.AspNetCore"
],
"description": "ASP.NET MVC Controller Name from routing parameters",
"platforms": [
"net35",
"net40",
"net45",
"netstandard1.5",
"netstandard2.0"
],
"category": "Web, ASP.NET and ASP.NET Core"
},
{
"name": "aspnet-Application",
"page": "AspNetApplication-layout-renderer",
"package": "NLog.Web",
"description": "ASP.NET Application variable.",
"platforms": [
"net35",
"net40",
"net45",
"netstandard1.5",
"netstandard2.0"
],
"category": "Web, ASP.NET and ASP.NET Core"
},
{
"name": "aspnet-request-connection-id",
"page": "AspNet-Request-ConnectionId-Layout-Renderer",
"package": [
"NLog.Web.AspNetCore"
],
"description": "ASP.NET Http Request Connection Id. The unique identifier that represents the connection.",
"platforms": [
"netstandard2.0"
],
"category": "Web, ASP.NET and ASP.NET Core"
},
{
"name": "aspnet-request-duration",
"page": "AspNet-Request-Duration-Layout-Renderer",
"package": [
"NLog.Web",
"NLog.Web.AspNetCore"
],
"description": "ASP.NET Request Duration.",
"platforms": [
"net35",
"net40",
"net45",
"netstandard1.5",
"netstandard2.0"
],
"category": "Web, ASP.NET and ASP.NET Core"
},
{
"name": "aspnet-httpcontext-item",
"page": "AspNet-HttpContext-Item-Layout-Renderer",
"package": [
"NLog.Web",
"NLog.Web.AspNetCore"
],
"description": "ASP.NET `HttpContext` Items Dictionary Value.",
"platforms": [
"net35",
"net40",
"net45",
"netstandard1.5",
"netstandard2.0"
],
"category": "Web, ASP.NET and ASP.NET Core"
},
{
"name": "aspnet-environment",
"page": "AspNet-Environment-layout-renderer",
"package": [
"NLog.Web.AspNetCore"
],
"description": "ASP.NET Environment name",
"platforms": [
"netstandard2.0"
],
"category": "Web, ASP.NET and ASP.NET Core"
},
{
"name": "aspnet-request-bidirectional-stream",
"page": "AspNet-Request-Bidirectional-Stream-Layout-Renderer",
"package": [
"NLog.Web.AspNetCore"
],
"description": "ASP.NET Request capable of upgrading connection to an opaque, bidirectional stream.",
"platforms": [
"netstandard2.0"
],
"category": "Web, ASP.NET and ASP.NET Core"
},
{
"name": "aspnet-request-endpoint",
"page": "AspNet-Request-EndPoint-Layout-Renderer",
"package": [
"NLog.Web.AspNetCore"
],
"description": "ASP.NET Request EndPoint display name.",
"platforms": [
"netstandard2.0"
],
"category": "Web, ASP.NET and ASP.NET Core"
},
{
"name": "aspnet-request-client-certificate",
"page": "AspNet-Request-Client-Certificate-Layout-Renderer",
"package": [
"NLog.Web",
"NLog.Web.AspNetCore"
],
"description": "ASP.NET Request Client Certificate",
"platforms": [
"net35",
"net40",
"net45",
"netstandard1.5",
"netstandard2.0"
],
"category": "Web, ASP.NET and ASP.NET Core"
},
{
"name": "aspnet-request-contentlength",
"page": "AspNet-Request-ContentLength-Layout-Renderer",
"package": [
"NLog.Web",
"NLog.Web.AspNetCore"
],
"description": "ASP.NET Request Header Content-Length",
"platforms": [
"net35",
"net40",
"net45",
"netstandard1.5",
"netstandard2.0"
],
"category": "Web, ASP.NET and ASP.NET Core"
},
{
"name": "aspnet-request-contenttype",
"page": "AspNet-Request-ContentType-layout-renderer",
"package": [
"NLog.Web",
"NLog.Web.AspNetCore"
],
"description": "ASP.NET Content-Type header (Ex. application/json)",
"platforms": [
"net35",
"net40",
"net45",
"netstandard1.5",
"netstandard2.0"
],
"category": "Web, ASP.NET and ASP.NET Core"
},
{
"name": "aspnet-request-http-transport-type",
"page": "AspNet-Request-HTTP-Transport-Type-Layout-Renderer",
"package": [
"NLog.Web.AspNetCore"
],
"description": "ASP.NET supported transport types that the client can use to send HTTP requests",
"platforms": [
"netstandard2.0"
],
"category": "Web, ASP.NET and ASP.NET Core"
},
{
"name": "aspnet-request-inherent-keep-alive",
"page": "AspNet-Request-Inherent-KeepAlive-Layout-Renderer",
"package": [
"NLog.Web.AspNetCore"
],
"description": "ASP.NET Request using connection transport capable of 'inherent keep-alive'",
"platforms": [
"netstandard2.0"
],
"category": "Web, ASP.NET and ASP.NET Core"
},
{
"name": "aspnet-request-local-ip",
"page": "AspNet-Request-Local-IP-Layout-Renderer",
"package": [
"NLog.Web",
"NLog.Web.AspNetCore"
],
"description": "ASP.NET Request HttpContext.Connection.LocalIpAddress",
"platforms": [
"net35",
"net40",
"net45",
"netstandard1.5",
"netstandard2.0"
],
"category": "Web, ASP.NET and ASP.NET Core"
},
{
"name": "aspnet-request-local-port",
"page": "AspNet-Request-Local-Port-Layout-Renderer",
"package": [
"NLog.Web",
"NLog.Web.AspNetCore"
],
"description": "ASP.NET Request HttpContext.Connection.LocalPort",
"platforms": [
"net35",
"net40",
"net45",
"netstandard1.5",
"netstandard2.0"
],
"category": "Web, ASP.NET and ASP.NET Core"
},
{
"name": "aspnet-request-remote-port",
"page": "AspNet-Request-Remote-Port-Layout-Renderer",
"package": [
"NLog.Web",
"NLog.Web.AspNetCore"
],
"description": "ASP.NET Request HttpContext.Connection.RemotePort",
"platforms": [
"net35",
"net40",
"net45",
"netstandard1.5",
"netstandard2.0"
],
"category": "Web, ASP.NET and ASP.NET Core"
},
{
"name": "aspnet-request-servervariable",
"page": "AspNet-Request-ServerVariable-Layout-Renderer",
"package": [
"NLog.Web",
"NLog.Web.AspNetCore"
],
"description": "ASP.NET Server Variable (Ex. APP_POOL_ID)",
"platforms": [
"net35",
"net40",
"net45",
"netstandard1.5",
"netstandard2.0"
],
"category": "Web, ASP.NET and ASP.NET Core"
},
{
"name": "aspnet-request-stream-id",
"page": "AspNet-Request-StreamId-Layout-Renderer",
"package": [
"NLog.Web.AspNetCore"
],
"description": "ASP.NET Http Request Stream Id. The unique identifier that represents the reusable socket.",
"platforms": [
"netstandard2.0"
],
"category": "Web, ASP.NET and ASP.NET Core"
},
{
"name": "aspnet-request-tls-handshake",
"page": "AspNet-Request-TLS-Handshake-Layout-Renderer",
"package": [
"NLog.Web.AspNetCore"
],
"description": "ASP.NET TLS Handshake Features ITlsHandshakeFeature of the connection.",
"platforms": [
"netstandard2.0"
],
"category": "Web, ASP.NET and ASP.NET Core"
},
{
"name": "aspnet-request-tls-token-binding",
"page": "AspNet-Request-TLS-Token-Bindng-Layout-Renderer",
"package": [
"NLog.Web.AspNetCore"
],
"description": "ASP.NET TLS Token Bindings for Provider and Referrer",
"platforms": [
"netstandard2.0"
],
"category": "Web, ASP.NET and ASP.NET Core"
},
{
"name": "aspnet-request-tracking-consent",
"page": "AspNet-Request-Tracking-Consent-Layout-Renderer",
"package": [
"NLog.Web.AspNetCore"
],
"description": "ASP.NET Tracking Consent",
"platforms": [
"netstandard2.0"
],
"category": "Web, ASP.NET and ASP.NET Core"
},
{
"name": "aspnet-request-trailers",
"page": "AspNet-Request-Trailers-Layout-Renderer",
"package": [
"NLog.Web.AspNetCore"
],
"description": "ASP.NET Request Trailers",
"platforms": [
"netstandard2.0"
],
"category": "Web, ASP.NET and ASP.NET Core"
},
{
"name": "aspnet-request-web-socket-requested-protocols",
"page": "AspNet-Request-WebSocket-Requested-Protocols-Layout-Renderer",
"package": [
"NLog.Web",
"NLog.Web.AspNetCore"
],
"description": "ASP.NET Request HttpContext.WebSockets.WebSocketRequestedProtocols",
"platforms": [
"net35",
"net40",
"net45",
"netstandard1.5",
"netstandard2.0"
],
"category": "Web, ASP.NET and ASP.NET Core"