Matt Johnson-Pint
Matt Johnson-Pint
Confirmed: ``` js var dt = '2016-11-06'; var z = 'America/Los_Angeles'; moment.tz(dt, z).hours(10).format() // "2016-11-06T10:00:00-08:00" (ok) moment.tz(dt, z).minutes(600).format() // "2016-11-06T09:00:00-08:00" (bad) moment.tz(dt, z).seconds(36000).format() // "2016-11-06T09:00:00-08:00" (bad) moment.tz(dt, z).milliseconds(36000000).format() // "2016-11-06T09:00:00-08:00"...
You're right - we're missing docs for this. It's there though. Use either `SentrySdk.PushScope`, or you can call any of the Capture methods such as `SentrySdk.CaptureException` and there's an overload...
`PushScope` is used like this: ```csharp using (SentrySdk.PushScope()) { // Anything done within the using block is part of that scope. // For example, adding a breadcrumb to the scope:...
That's the page listing _legacy clients_, is labeled as such, and already says to use the newer .NET SDK in the red box at the top of the page. I'm...
Ouch, yeah it's pretty bad that is the first Search result. Though it also depends which page you are on when you search, but still. Even the main page gives...
@imatwawana - not sure how you want to route this. It's both a docs-search and SEO issue.
I changed some of the text on the .NET docs to hopefully change these specific search results, but I still think it highlights some of the issues we have with...
The nuget link is pointing at the correct place for SharpRaven (the legacy client). Also, the change I made might have improved some of the search results already, so that...
If you ever get to this, please _don't_ adhere to 15.9.1.18 from ES5.1. What you are doing today is closer to the recomendation of ES6, and should stay in. See...
This sounds reasonable to me as well. Thanks.