Paul Schaeflein

Results 32 comments of Paul Schaeflein

Most of this might be written already in the WebView sample: https://github.com/microsoft/vscode-extension-samples/tree/master/webview-view-sample ![](https://code.visualstudio.com/assets/updates/1_49/webview-view.png)

@erwinvanhunen I have some updates in support of .Net Standard 2.1 that I can contribute. (Mostly supporting the Azure Blob connector and "modern" authentication.) Is there a branch in which...

https://aka.ms/pnp/coresdk

At this point, I believe those questions should be asked in an issue in that repository instead of this one.

@mikequ-taggysoft , I would recommend following the per-request options pattern. Values are set in an extension method, for example [WithScopes()](https://github.com/microsoftgraph/msgraph-sdk-dotnet-core/blob/2e43863e349b4b3ebe2e166c26e3afcc4a974365/src/Microsoft.Graph.Core/Extensions/BaseRequestExtensions.cs#L171), and are retrieved in the [auth provider](https://github.com/microsoftgraph/msgraph-sdk-dotnet-core/blob/2e43863e349b4b3ebe2e166c26e3afcc4a974365/src/Microsoft.Graph.Core/Extensions/BaseRequestExtensions.cs#L171). Storing information about...

Sorry, I didn't mean use OOB auth provider. I meant: ```csharp var me = await _graphClient .Me.Request() .WithTokenOptions(options) // options is TenantId, or whatever you need .GetAsync(); ``` Then, in...

I would prefer a model similar to Linq where the OData capabilities are separate methods, over an interface for each capability as suggested above. Ideally, the methods exist only on...

Just wait until your call to Teams[].Operations[] returns a 404. You are left with nothing... The workaround is to query Teams using the displayName and hope that your new team...

@twsouthwick - Would you consider adding this to the [Graph Community library](https://github.com/microsoftgraph/msgraph-sdk-dotnet-contrib)? Or would you object if I added it?

The community library is intended to support temporary code before it gets added to the Graph service or native SDK. We monitor the SDK and remove code that gets added....