├── .editorconfig ├── .gitignore ├── .gitmodules ├── Data8.PowerPlatform.Dataverse.Client.Tests ├── AdAuthClientTests.cs ├── ClaimsBasedAuthClientTests.cs └── Data8.PowerPlatform.Dataverse.Client.Tests.csproj ├── Data8.PowerPlatform.Dataverse.Client.sln ├── Data8.PowerPlatform.Dataverse.Client ├── ADAuthClient.cs ├── ADAuthHelpers │ ├── Authenticator.cs │ ├── BaseAuthRequest.cs │ ├── BinaryExchange.cs │ ├── CombinedHash.cs │ ├── EncryptedKey.cs │ ├── FaultReader.cs │ ├── Lifetime.cs │ ├── Namespaces.cs │ ├── RequestSecurityToken.cs │ ├── RequestSecurityTokenResponse.cs │ ├── RequestSecurityTokenResponseCollection.cs │ ├── SecurityContextToken.cs │ ├── SecurityHeader.cs │ └── SecurityTokenReference.cs ├── ClaimsBasedAuthClient.cs ├── Data8.PowerPlatform.Dataverse.Client.csproj ├── IInnerOrganizationService.cs ├── OnPremiseClient.cs ├── ProxySerializationSurrogate.cs └── Wsdl.cs ├── Data8.png ├── LICENSE ├── README.md └── azure-pipelines.yml /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data8/DataverseClient/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data8/DataverseClient/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data8/DataverseClient/HEAD/.gitmodules -------------------------------------------------------------------------------- /Data8.PowerPlatform.Dataverse.Client.Tests/AdAuthClientTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data8/DataverseClient/HEAD/Data8.PowerPlatform.Dataverse.Client.Tests/AdAuthClientTests.cs -------------------------------------------------------------------------------- /Data8.PowerPlatform.Dataverse.Client.Tests/ClaimsBasedAuthClientTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data8/DataverseClient/HEAD/Data8.PowerPlatform.Dataverse.Client.Tests/ClaimsBasedAuthClientTests.cs -------------------------------------------------------------------------------- /Data8.PowerPlatform.Dataverse.Client.Tests/Data8.PowerPlatform.Dataverse.Client.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data8/DataverseClient/HEAD/Data8.PowerPlatform.Dataverse.Client.Tests/Data8.PowerPlatform.Dataverse.Client.Tests.csproj -------------------------------------------------------------------------------- /Data8.PowerPlatform.Dataverse.Client.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data8/DataverseClient/HEAD/Data8.PowerPlatform.Dataverse.Client.sln -------------------------------------------------------------------------------- /Data8.PowerPlatform.Dataverse.Client/ADAuthClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data8/DataverseClient/HEAD/Data8.PowerPlatform.Dataverse.Client/ADAuthClient.cs -------------------------------------------------------------------------------- /Data8.PowerPlatform.Dataverse.Client/ADAuthHelpers/Authenticator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data8/DataverseClient/HEAD/Data8.PowerPlatform.Dataverse.Client/ADAuthHelpers/Authenticator.cs -------------------------------------------------------------------------------- /Data8.PowerPlatform.Dataverse.Client/ADAuthHelpers/BaseAuthRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data8/DataverseClient/HEAD/Data8.PowerPlatform.Dataverse.Client/ADAuthHelpers/BaseAuthRequest.cs -------------------------------------------------------------------------------- /Data8.PowerPlatform.Dataverse.Client/ADAuthHelpers/BinaryExchange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data8/DataverseClient/HEAD/Data8.PowerPlatform.Dataverse.Client/ADAuthHelpers/BinaryExchange.cs -------------------------------------------------------------------------------- /Data8.PowerPlatform.Dataverse.Client/ADAuthHelpers/CombinedHash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data8/DataverseClient/HEAD/Data8.PowerPlatform.Dataverse.Client/ADAuthHelpers/CombinedHash.cs -------------------------------------------------------------------------------- /Data8.PowerPlatform.Dataverse.Client/ADAuthHelpers/EncryptedKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data8/DataverseClient/HEAD/Data8.PowerPlatform.Dataverse.Client/ADAuthHelpers/EncryptedKey.cs -------------------------------------------------------------------------------- /Data8.PowerPlatform.Dataverse.Client/ADAuthHelpers/FaultReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data8/DataverseClient/HEAD/Data8.PowerPlatform.Dataverse.Client/ADAuthHelpers/FaultReader.cs -------------------------------------------------------------------------------- /Data8.PowerPlatform.Dataverse.Client/ADAuthHelpers/Lifetime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data8/DataverseClient/HEAD/Data8.PowerPlatform.Dataverse.Client/ADAuthHelpers/Lifetime.cs -------------------------------------------------------------------------------- /Data8.PowerPlatform.Dataverse.Client/ADAuthHelpers/Namespaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data8/DataverseClient/HEAD/Data8.PowerPlatform.Dataverse.Client/ADAuthHelpers/Namespaces.cs -------------------------------------------------------------------------------- /Data8.PowerPlatform.Dataverse.Client/ADAuthHelpers/RequestSecurityToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data8/DataverseClient/HEAD/Data8.PowerPlatform.Dataverse.Client/ADAuthHelpers/RequestSecurityToken.cs -------------------------------------------------------------------------------- /Data8.PowerPlatform.Dataverse.Client/ADAuthHelpers/RequestSecurityTokenResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data8/DataverseClient/HEAD/Data8.PowerPlatform.Dataverse.Client/ADAuthHelpers/RequestSecurityTokenResponse.cs -------------------------------------------------------------------------------- /Data8.PowerPlatform.Dataverse.Client/ADAuthHelpers/RequestSecurityTokenResponseCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data8/DataverseClient/HEAD/Data8.PowerPlatform.Dataverse.Client/ADAuthHelpers/RequestSecurityTokenResponseCollection.cs -------------------------------------------------------------------------------- /Data8.PowerPlatform.Dataverse.Client/ADAuthHelpers/SecurityContextToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data8/DataverseClient/HEAD/Data8.PowerPlatform.Dataverse.Client/ADAuthHelpers/SecurityContextToken.cs -------------------------------------------------------------------------------- /Data8.PowerPlatform.Dataverse.Client/ADAuthHelpers/SecurityHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data8/DataverseClient/HEAD/Data8.PowerPlatform.Dataverse.Client/ADAuthHelpers/SecurityHeader.cs -------------------------------------------------------------------------------- /Data8.PowerPlatform.Dataverse.Client/ADAuthHelpers/SecurityTokenReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data8/DataverseClient/HEAD/Data8.PowerPlatform.Dataverse.Client/ADAuthHelpers/SecurityTokenReference.cs -------------------------------------------------------------------------------- /Data8.PowerPlatform.Dataverse.Client/ClaimsBasedAuthClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data8/DataverseClient/HEAD/Data8.PowerPlatform.Dataverse.Client/ClaimsBasedAuthClient.cs -------------------------------------------------------------------------------- /Data8.PowerPlatform.Dataverse.Client/Data8.PowerPlatform.Dataverse.Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data8/DataverseClient/HEAD/Data8.PowerPlatform.Dataverse.Client/Data8.PowerPlatform.Dataverse.Client.csproj -------------------------------------------------------------------------------- /Data8.PowerPlatform.Dataverse.Client/IInnerOrganizationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data8/DataverseClient/HEAD/Data8.PowerPlatform.Dataverse.Client/IInnerOrganizationService.cs -------------------------------------------------------------------------------- /Data8.PowerPlatform.Dataverse.Client/OnPremiseClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data8/DataverseClient/HEAD/Data8.PowerPlatform.Dataverse.Client/OnPremiseClient.cs -------------------------------------------------------------------------------- /Data8.PowerPlatform.Dataverse.Client/ProxySerializationSurrogate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data8/DataverseClient/HEAD/Data8.PowerPlatform.Dataverse.Client/ProxySerializationSurrogate.cs -------------------------------------------------------------------------------- /Data8.PowerPlatform.Dataverse.Client/Wsdl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data8/DataverseClient/HEAD/Data8.PowerPlatform.Dataverse.Client/Wsdl.cs -------------------------------------------------------------------------------- /Data8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data8/DataverseClient/HEAD/Data8.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data8/DataverseClient/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data8/DataverseClient/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data8/DataverseClient/HEAD/azure-pipelines.yml --------------------------------------------------------------------------------