Tony Valenti

Results 124 comments of Tony Valenti

@vitek-karas I was hoping to leverage the fact that .Net would decompress to a temporary folder to essentially be able to do the following: 1. "Main" EXE is run. 2....

@JonathanMagnan - My preference would be that calling DeEntitize never throws and does as good of a job as it can to do its work (just like a web browser...

@JonathanMagnan - Would you please add a TryDeEntitize method? We are extracting text that sometimes has HTML in it and sometimes has bad HTML in it. When we do the...

I would absolutely love it if this could be combined with constructor injecting such that the object is created with constructor injection and then init-only properties are filled in with...

Does ```PropertiesAutowired``` wire up any other properties beside init-only ones? Does it look at public, protected, or private?

Hi All, I just wanted to mention that required properties now exist as of the latest preview of C#. I would love to see the above code enhanced so that...

Hi @clairernovotny - It would be super helpful if there were WPF converters that could be used in XAML bindings. None of the converters would be particularly complex, but it...

To provide additional context, basically I need to apply redactions to a PDF. My thought is to generate a new PDF that has a single image in it (a copy...

Basically I'd like to be able to call it like this: ```csharp public virtual void DeleteAsync(Expression Where) { //Preference #1 Context.BulkDelete(Where, options => { options.RetryCount = OPTIONS_RETRYCOUNT; options.RetryInterval = OPTIONS_RETRYINTERVAL;...