Jef
Jef
This example PDF file gets detected as _text/plain_ when `MaxHeaderSize` first bytes are used for the detection: http://www.orimi.com/pdf-test.pdf I would run the file signature detection before checking for plain text...
Proper bmp MIME type and decimal values converted to its hexadecimal equivalent. See issue #11.
``` new FileType(new byte?[] { 66, 77 }, "bmp", "image/gif"); ``` must be changed to ``` new FileType(new byte?[] { 0x42, 0x4D }, "bmp", "image/bmp"); // or image/x-windows-bmp ```
**Describe the bug** The docs are not up to date with the latest version. **To Reproduce** For example the headers documentation https://github.com/microsoftgraph/msgraph-sdk-dotnet/blob/dev/docs/headers.md ``` var newObject = graphServiceClient .Object .Request(new HeaderOption("Etag",...