You've already forked linux-packaging-mono
Imported Upstream version 5.4.0.167
Former-commit-id: 5624ac747d633e885131e8349322922b6a59baaa
This commit is contained in:
parent
e49d6f06c0
commit
536cd135cc
@ -91,7 +91,7 @@ namespace System.Web {
|
||||
// Overload used only for deducing ETW parameters; use the public entry point instead.
|
||||
//
|
||||
// !! WARNING !!
|
||||
// The logic in RequestEnteredAspNetPipelineImpl must be kept in [....] with these parameters, otherwise
|
||||
// The logic in RequestEnteredAspNetPipelineImpl must be kept in sync with these parameters, otherwise
|
||||
// type safety violations could occur.
|
||||
[SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode", Justification = "ETW looks at this method using reflection.")]
|
||||
[Event((int)Events.RequestEnteredAspNetPipeline, Level = EventLevel.Informational, Task = (EventTask)Tasks.Request, Opcode = EventOpcode.Send, Version = 1)]
|
||||
@ -118,7 +118,7 @@ namespace System.Web {
|
||||
|
||||
fixed (char* pHttpVerb = httpVerb) {
|
||||
// !! WARNING !!
|
||||
// This logic must be kept in [....] with the ETW-deduced parameters in RequestStarted,
|
||||
// This logic must be kept in sync with the ETW-deduced parameters in RequestStarted,
|
||||
// otherwise type safety violations could occur.
|
||||
const int EVENTDATA_COUNT = 3;
|
||||
EventData* pEventData = stackalloc EventData[EVENTDATA_COUNT];
|
||||
@ -145,7 +145,7 @@ namespace System.Web {
|
||||
// Event attribute, but this causes a dependency between System.Web and mscorlib that breaks servicing.
|
||||
//
|
||||
// !! WARNING !!
|
||||
// The logic in RequestStartedImpl must be kept in [....] with these parameters, otherwise
|
||||
// The logic in RequestStartedImpl must be kept in sync with these parameters, otherwise
|
||||
// type safety violations could occur.
|
||||
[SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode", Justification = "ETW looks at this method using reflection.")]
|
||||
[Event((int)Events.RequestStarted, Level = EventLevel.Informational, Task = (EventTask)Tasks.Request, Opcode = EventOpcode.Start, Version = 1)]
|
||||
|
Reference in New Issue
Block a user