Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions docs/sdk/dotnet/network.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@ This section describes network APIs, whose network events can be captured the sa
All requests made with ```WebRequest.Create('https://domain.com')``` are captured automatically and do not require any changes in your code. Bugsee will capture all the data passed through the returned ```HttpWebRequest``` instance.

:::warning
While capturing network requests made using the instances obtained through WebRequest.Create() work out of the box, currently we are not able to capture requests made from direct instantiation of HttpWebRequest: <code class="csharp"><span class="hljs-keyword">new</span> HttpWebRequest(<span class="hljs-string">"https://domain.com"</span>)
</code>
While capturing network requests made using the instances obtained through WebRequest.Create() work out of the box, currently we are not able to capture requests made from direct instantiation of HttpWebRequest: `new HttpWebRequest("https://domain.com")`
:::

## Capturing network in an iOS app
Expand Down
3 changes: 1 addition & 2 deletions docs/sdk/xamarin/network.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@ This section describes network APIs, whose network events can be captured the sa
All requests made with ```WebRequest.Create('https://domain.com')``` are captured automatically and do not require any changes in your code. Bugsee will capture all the data passed through the returned ```HttpWebRequest``` instance.

:::warning
While capturing network requests made using the instances obtained through WebRequest.Create() work out of the box, currently we are not able to capture requests made from direct instantiation of HttpWebRequest: <code class="csharp"><span class="hljs-keyword">new</span> HttpWebRequest(<span class="hljs-string">"https://domain.com"</span>)
</code>
While capturing network requests made using the instances obtained through WebRequest.Create() work out of the box, currently we are not able to capture requests made from direct instantiation of HttpWebRequest: `new HttpWebRequest("https://domain.com")`
:::

## Capturing network in an iOS app
Expand Down