Skip to content

Commit

Permalink
Add response request-id
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenegriffin committed Dec 6, 2023
1 parent fc43edf commit dd1e236
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions MAPIInspector/Source/MAPIParser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2263,6 +2263,7 @@ private class MAPIFrame
public string Url { get; set; }
public string LocalProcess { get; set; }
public string ClientRequestId { get; set; }
public string RequestId { get; set; }
public object Request { get; set; }
public object Response { get; set; }
}
Expand Down Expand Up @@ -2326,6 +2327,7 @@ public static bool ParseCaptureFile(Session[] sessionsFromCore, string fileName)
Url = session.url,
LocalProcess = session.LocalProcess,
ClientRequestId = session.RequestHeaders["Client-Request-Id"],
RequestId = session.ResponseHeaders["Request-Id"],
Request = requestObj,
Response = responseObj
};
Expand Down

0 comments on commit dd1e236

Please sign in to comment.