James Jensen

Results 4 issues of James Jensen

Consider [the following LINQPad code](http://share.linqpad.net/7ic2t6.linq): ``` void Main() { try { Foo(); } catch (Exception e) { e.ToString().Dump("ToString"); e.ToStringDemystified().Dump("ToStringDemystified"); e.Demystify().ToString().Dump(".Demystify().ToString()"); } } public void Foo() { try { Bar();} catch(Exception...

### Expected behavior People want to be able to drill down through a large json document to make changes to a few specific parts of it. ### Actual behavior Loading...

enhancement
help wanted

Description =========== I'm looking for guidance on how to handle `Dispose()` when I have registered an OAuth handler with `SetOAuthBearerTokenRefreshHandler`. [This comment](https://github.com/confluentinc/confluent-kafka-dotnet/issues/1240#issuecomment-610470911) notes: > After the `Dispose` method returns, delivery...

ODataT4CodeGenerator.ttinclude puts `GeneratedCodeAttribute`s on specific members, like the container constructor, but that attribute should really just go on all generated types. This will allow Code Analysis tools to ignore this...

enhancement