Michael Mainer

Results 139 comments of Michael Mainer

@michael-celani-relativity Thank you for the detailed instructions on how we can add this feature! We'll hopefully address this soon.

https://stackoverflow.com/questions/60992118/how-to-use-value-using-microsoft-graph-library-in-c-sharp Current workaround: ```csharp var attachmentRequestBuilder = client.Me.Messages[msgId].Attachments[attId]; var fileRequestBuilder = new FileAttachmentRequestBuilder(attachmentRequestBuilder.RequestUrl, client); Console.WriteLine($"Request URL: {fileRequestBuilder.Content.Request().RequestUrl}"); var stream = await fileRequestBuilder.Content.Request().GetAsync(); using(var reader = new StreamReader(stream)) { Console.WriteLine("Attachment contents:");...

Related. https://github.com/microsoftgraph/msgraph-sdk-java/pull/520. Still needed

I've inquired about this issue. Let me see if I can get more information.

It sounds like the all day event ending on Sunday isn't getting picked up. This may be caused be the filter window having an end time less than '2020-11-01T23:59'. Perhaps...

This is worth investigating. It would be convenient to automatically get the token in both of the scenarios that you described. Can you (or anyone else that is reading this),...

GetHttpRequestMessage(bool authenticate) so that customers can make use of the DelegateAuthorizationHandler.

@andrueastman Do the v4 changes support bring your own serializer? In the *[Use a custom IResponseHandler](https://github.com/microsoftgraph/msgraph-sdk-dotnet/blob/feature/2.0/docs/upgrade-to-v4.md)* section, we can use WithResponseHandler per response, but is there a way to set...

What needs to happen for this PR to go out?

> We should use whatever is the native project scaffolding tooling for the platform. Let's not re-invent that wheel. > Kiota should not touch the project files/interact with the dependency...