Hello! Thanks for creating this library; it's the only one I could find to use ipp in .NET without gross amounts of boilerplate. I've been experimenting with it for use in a larger project and encountered the following exception:
No mapping found for types System.String -> System.Nullable[SharpIpp.Model.PrintQuality].
Here is the minimal reproduction:
var client = new SharpIppClient();
var uri = new Uri("ipp://<endpoint>:631");
var request = new GetJobAttributesRequest
{
PrinterUri = uri,
JobId = 1 // replace with extant ID
};
var response = await client.GetJobAttributesAsync(request);
If you could look into this at your convenience, I would greatly appreciate it!
Hello! Thanks for creating this library; it's the only one I could find to use
ippin .NET without gross amounts of boilerplate. I've been experimenting with it for use in a larger project and encountered the following exception:No mapping found for types System.String -> System.Nullable[SharpIpp.Model.PrintQuality].Here is the minimal reproduction:
If you could look into this at your convenience, I would greatly appreciate it!