├── .gitignore ├── LICENSE ├── README.md ├── docs ├── application-management.md ├── apply-all-desired-properties.md ├── azure-dm-certification.md ├── building-the-dm-binaries.md ├── certificate-management.md ├── debugging.md ├── device-factory-reset.md ├── device-health-attestation.md ├── device-info.md ├── dha-architecture-detail1.png ├── dha-architecture-detail2.png ├── dha-architecture-detail3.png ├── dha-architecture-overview.png ├── dha-architecture.md ├── dha-deploy.md ├── dha-report-sample.png ├── diagnostic-logs-management.md ├── dm-application-anatomy.png ├── dm-architecture-all.png ├── dm-architecture-application-library.png ├── dm-client-architecture.md ├── dm-hello-world-coding.md ├── dm-hello-world-deploying.md ├── dm-hello-world-managing.md ├── dm-hello-world-overview.md ├── dm-validator.png ├── exposing-new-configuration.md ├── external-storage.md ├── library-reference.md ├── oem-device-setup.md ├── reboot-management.md ├── release-notes-2017-10.md ├── release-notes-2018-06.md ├── remote-wipe.md ├── report-all-device-properties.md ├── running-e2e-tests.md ├── samples.md ├── source-policy.md ├── status-reporting.md ├── time-management.md ├── wifi-management.md ├── windows-telemetry-management.md └── windows-update-management.md ├── external ├── WinSDKRS2 │ ├── arm │ │ └── mdmlocalmanagement.lib │ ├── x64 │ │ └── mdmlocalmanagement.lib │ └── x86 │ │ └── mdmlocalmanagement.lib └── limpet │ ├── dll │ ├── arm │ │ └── LimpetLib.dll │ ├── x64 │ │ ├── LimpetLib.dll │ │ └── LimpetLib.pdb │ └── x86 │ │ ├── LimpetLib.dll │ │ └── LimpetLib.pdb │ ├── inc │ ├── LimpetDefs.h │ └── LimpetLib.h │ └── lib │ ├── arm │ └── LimpetLib.lib │ ├── x64 │ └── LimpetLib.lib │ └── x86 │ └── LimpetLib.lib ├── nuget ├── IoTDMClientLib.nuspec ├── IoTDMClientLib.targets └── PackIoTDMClientLib.cmd ├── samples ├── DMController │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── LockScreenLogo.scale-200.png │ │ ├── SplashScreen.scale-200.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── StoreLogo.backup.png │ │ ├── StoreLogo.png │ │ └── Wide310x150Logo.scale-200.png │ ├── DMController.csproj │ ├── DeviceTwinAndMethods.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ ├── README.md │ ├── Views │ │ ├── ApplicationsUserControl.xaml │ │ ├── ApplicationsUserControl.xaml.cs │ │ ├── CertificatesUserControl.xaml │ │ ├── CertificatesUserControl.xaml.cs │ │ ├── DHAUserControl.xaml │ │ ├── DHAUserControl.xaml.cs │ │ ├── DeviceInfoUserControl.xaml │ │ ├── DeviceInfoUserControl.xaml.cs │ │ ├── DiagnosticLogsUserControl.xaml │ │ ├── DiagnosticLogsUserControl.xaml.cs │ │ ├── FactoryResetUserControl.xaml │ │ ├── FactoryResetUserControl.xaml.cs │ │ ├── RebootUserControl.xaml │ │ ├── RebootUserControl.xaml.cs │ │ ├── TimeUserControl.xaml │ │ ├── TimeUserControl.xaml.cs │ │ ├── WifiUserControl.xaml │ │ ├── WifiUserControl.xaml.cs │ │ ├── WindowsTelemetryUserControl.xaml │ │ ├── WindowsTelemetryUserControl.xaml.cs │ │ ├── WindowsUpdateUserControl.xaml │ │ └── WindowsUpdateUserControl.xaml.cs │ └── imgs │ │ ├── deviceinfo-buttons.png │ │ ├── settings.png │ │ └── test-buttons.png ├── DMDashboard │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── Appx │ │ ├── AppDesiredStateControl.xaml │ │ ├── AppDesiredStateControl.xaml.cs │ │ ├── AppReportedStateControl.xaml │ │ ├── AppReportedStateControl.xaml.cs │ │ ├── AppsDesiredStateControl.xaml │ │ ├── AppsDesiredStateControl.xaml.cs │ │ ├── AppsReportedStateControl.xaml │ │ └── AppsReportedStateControl.xaml.cs │ ├── AzureBlobSelector.xaml │ ├── AzureBlobSelector.xaml.cs │ ├── AzureStorageHelpers.cs │ ├── Certificates │ │ ├── CertificateDetails.xaml │ │ ├── CertificateDetails.xaml.cs │ │ ├── CertificateExportDetails.xaml │ │ ├── CertificateExportDetails.xaml.cs │ │ ├── CertificateHelpers.cs │ │ ├── CertificateSelector.xaml │ │ └── CertificateSelector.xaml.cs │ ├── Common │ │ ├── Converters.cs │ │ ├── DMComboBox.xaml │ │ ├── DMComboBox.xaml.cs │ │ ├── DMControl.cs │ │ ├── DMControlList.cs │ │ ├── DMSectionControl.cs │ │ ├── DMTextBlock.xaml │ │ ├── DMTextBlock.xaml.cs │ │ ├── DMTextBox.xaml │ │ └── DMTextBox.xaml.cs │ ├── DMDashboard.csproj │ ├── DeviceHealthAttestation │ │ ├── DeviceHealthAttestationDesiredStateControl.xaml │ │ ├── DeviceHealthAttestationDesiredStateControl.xaml.cs │ │ ├── DeviceHealthAttestationReportedStateControl.xaml │ │ └── DeviceHealthAttestationReportedStateControl.xaml.cs │ ├── DeviceInfo │ │ ├── DeviceInfoReportedStateControl.xaml │ │ └── DeviceInfoReportedStateControl.xaml.cs │ ├── DeviceTwinAndMethod.cs │ ├── DiagnosticLogs │ │ ├── CollectorDesiredStateControl.xaml │ │ ├── CollectorDesiredStateControl.xaml.cs │ │ ├── CollectorReportedStateControl.xaml │ │ ├── CollectorReportedStateControl.xaml.cs │ │ ├── CollectorsDesiredStateControl.xaml │ │ ├── CollectorsDesiredStateControl.xaml.cs │ │ ├── CollectorsReportedStateControl.xaml │ │ ├── CollectorsReportedStateControl.xaml.cs │ │ ├── ProviderDesiredStateControl.xaml │ │ ├── ProviderDesiredStateControl.xaml.cs │ │ ├── ProviderDesiredStateListControl.xaml │ │ ├── ProviderDesiredStateListControl.xaml.cs │ │ ├── ProviderReportedStateControl.xaml │ │ ├── ProviderReportedStateControl.xaml.cs │ │ ├── ProviderReportedStateListControl.xaml │ │ └── ProviderReportedStateListControl.xaml.cs │ ├── DmAppStoreUpdate │ │ ├── DmAppStoreUpdateReportedStateControl.xaml │ │ └── DmAppStoreUpdateReportedStateControl.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Models.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Reboot │ │ ├── RebootCmdReportedStateControl.xaml │ │ ├── RebootCmdReportedStateControl.xaml.cs │ │ ├── RebootInfoDesiredStateControl.xaml │ │ ├── RebootInfoDesiredStateControl.xaml.cs │ │ ├── RebootInfoReportedStateControl.xaml │ │ └── RebootInfoReportedStateControl.xaml.cs │ ├── StorageManagement │ │ ├── AzureStorageManager.xaml │ │ ├── AzureStorageManager.xaml.cs │ │ ├── DeviceDeleteFile.xaml │ │ ├── DeviceDeleteFile.xaml.cs │ │ ├── DeviceFileSelectionControl.xaml │ │ ├── DeviceFileSelectionControl.xaml.cs │ │ ├── DeviceUploadFile.xaml │ │ └── DeviceUploadFile.xaml.cs │ ├── Telemetry │ │ ├── WindowsTelemetryDesiredStateControl.xaml │ │ ├── WindowsTelemetryDesiredStateControl.xaml.cs │ │ ├── WindowsTelemetryReportedStateControl.xaml │ │ └── WindowsTelemetryReportedStateControl.xaml.cs │ ├── TimeSettings │ │ ├── TimeDesiredStateControl.xaml │ │ ├── TimeDesiredStateControl.xaml.cs │ │ ├── TimeReportedStateControl.xaml │ │ ├── TimeReportedStateControl.xaml.cs │ │ ├── TimeSvcDesiredStateControl.xaml │ │ ├── TimeSvcDesiredStateControl.xaml.cs │ │ ├── TimeSvcReportedStateControl.xaml │ │ └── TimeSvcReportedStateControl.xaml.cs │ ├── Utils.cs │ ├── WPFUtils.cs │ ├── Wifi │ │ ├── WifiDesiredStateControl.xaml │ │ ├── WifiDesiredStateControl.xaml.cs │ │ ├── WifiDetails.xaml │ │ ├── WifiDetails.xaml.cs │ │ ├── WifiProfileConfiguration.cs │ │ ├── WifiProfilesDesiredStateControl.xaml │ │ ├── WifiProfilesDesiredStateControl.xaml.cs │ │ ├── WifiProfilesReportedStateControl.xaml │ │ ├── WifiProfilesReportedStateControl.xaml.cs │ │ ├── WifiReportedStateControl.xaml │ │ └── WifiReportedStateControl.xaml.cs │ ├── WindowsUpdatePolicy │ │ ├── WindowsUpdatePolicyDesiredStateControl.xaml │ │ ├── WindowsUpdatePolicyDesiredStateControl.xaml.cs │ │ ├── WindowsUpdatePolicyReportedStateControl.xaml │ │ └── WindowsUpdatePolicyReportedStateControl.xaml.cs │ └── packages.config ├── IoTDMBackground │ ├── Assets │ │ ├── LockScreenLogo.scale-200.png │ │ ├── SplashScreen.scale-200.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── StoreLogo.png │ │ └── Wide310x150Logo.scale-200.png │ ├── DMClientBackgroundApplication.cs │ ├── IoTDMBackground.csproj │ ├── IoTDMBackground_TemporaryKey.pfx │ ├── Package.appxmanifest │ └── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml ├── IotDeviceManagementCapability.SCCD └── ToasterApp │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ ├── LockScreenLogo.scale-200.png │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ ├── Wide310x150Logo.scale-200.png │ ├── gear.png │ ├── hot.png │ └── toaster.png │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ ├── AssemblyInfo.cs │ └── Default.rd.xml │ ├── Toaster.csproj │ ├── ToasterDeviceManagementRequestHandler.cs │ ├── UserDialog.xaml │ └── UserDialog.xaml.cs ├── src ├── DHA │ ├── DHA-test │ │ ├── AppSettings.cs │ │ ├── DHA-test.csproj │ │ ├── DeviceHealthAttestationServerTest.cs │ │ ├── Extension.cs │ │ ├── NonceTable.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── ReportTable.cs │ │ ├── app.config │ │ └── packages.config │ ├── DHA.sln │ ├── DHA │ │ ├── DHA.funproj │ │ ├── DHAServiceBusQueueHandler │ │ │ ├── HealthInspector.csx │ │ │ ├── NonceRequestHandler.csx │ │ │ ├── NonceTable.csx │ │ │ ├── ReportRequestHandler.csx │ │ │ ├── Utilities.csx │ │ │ ├── function.json │ │ │ ├── project.json │ │ │ └── run.csx │ │ ├── Project_Readme.html │ │ ├── appsettings.json │ │ └── host.json │ └── Deployment Scripts │ │ ├── AzureFunctionDeploy.json │ │ ├── AzureServiceBusDeploy.json │ │ ├── AzureServiceBusQueueDeploy.json │ │ ├── AzureStorageDeploy.json │ │ └── DHA-setup.ps1 ├── DMDataContract │ └── DMDataContract │ │ ├── AppxLifeCycle.cs │ │ ├── AppxManagement.cs │ │ ├── Certificates.cs │ │ ├── ClearReportedProperties.cs │ │ ├── Common.cs │ │ ├── DMDataContract.csproj │ │ ├── DMJSonConstants.cs │ │ ├── DeviceHealthAttestation.cs │ │ ├── DeviceInfo.cs │ │ ├── DmAppStoreUpdate.cs │ │ ├── ErrorCodes.cs │ │ ├── EventTracing.cs │ │ ├── ExternalStorage.cs │ │ ├── FactoryReset.cs │ │ ├── Policy.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── RebootCmd.cs │ │ ├── RebootInfo.cs │ │ ├── RemoteWipe.cs │ │ ├── TimeService.cs │ │ ├── TimeSettings.cs │ │ ├── UsoClientCmd.cs │ │ ├── Utils.cs │ │ ├── WindowsTelemetry.cs │ │ ├── WindowsUpdatePolicy.cs │ │ ├── WindowsUpdates.cs │ │ └── packages.config ├── DMMessage │ ├── Blob.cpp │ ├── Blob.h │ ├── CurrentVersion.h │ ├── DMGarbageCollectorTempFolder.h │ ├── DMMessage.cpp │ ├── DMMessage.vcxproj │ ├── DMMessage.vcxproj.filters │ ├── DMMessageException.h │ ├── DMMessageHelper.cpp │ ├── DMMessageKind.h │ ├── DMMessageSerialization.h │ ├── IRequestIResponse.h │ ├── Models │ │ ├── AllModels.h │ │ ├── AppInstall.h │ │ ├── AppLifecycle.h │ │ ├── AppUninstall.h │ │ ├── CertificateConfiguration.h │ │ ├── CertificateDetails.h │ │ ├── CheckForUpdates.h │ │ ├── DeviceDMStorage.h │ │ ├── DeviceHealthAttestation.h │ │ ├── DeviceInfo.h │ │ ├── ErrorResponse.h │ │ ├── EventTracingConfiguration.h │ │ ├── ExitDM.h │ │ ├── FactoryReset.h │ │ ├── FileTransfer.h │ │ ├── ListApps.h │ │ ├── ModelHelper.h │ │ ├── ModelsInfo.dat │ │ ├── Policy.h │ │ ├── Reboot.h │ │ ├── RemoteWipe.h │ │ ├── StartupApp.h │ │ ├── StatusCodeResponse.h │ │ ├── StringListResponse.h │ │ ├── StringResponse.h │ │ ├── TimeInfo.h │ │ ├── TimeService.h │ │ ├── TpmRequests.h │ │ ├── UsoClientCmd.h │ │ ├── WifiConfiguration.h │ │ ├── WifiDetails.h │ │ ├── WindowsTelemetry.h │ │ ├── WindowsUpdatePolicy.h │ │ ├── WindowsUpdateRebootPolicy.h │ │ └── WindowsUpdates.h │ ├── ResponseStatus.h │ ├── SerializationHelper.cpp │ ├── SerializationHelper.h │ ├── stdafx.cpp │ └── stdafx.h ├── DMShared │ ├── DMShared.vcxitems │ ├── DMShared.vcxitems.filters │ └── ErrorCodes.h ├── DMTpm │ ├── DMTpm.vcxitems │ ├── TpmSupport.cpp │ └── TpmSupport.h ├── IoTDM.sln ├── IoTDMClientLib │ ├── AzureBlobFileTransfer.cs │ ├── AzureIoTHubDeviceTwinProxy.cs │ ├── CertificateManagement.cs │ ├── DeviceManagement.cs │ ├── DeviceManagementClient.cs │ ├── DirectMethodGuard.cs │ ├── Handlers │ │ ├── AppxLifeCycleHandler.cs │ │ ├── AppxManagement.cs │ │ ├── CertificateHandler.cs │ │ ├── ClearReportedPropertiesHandler.cs │ │ ├── DeviceHealthAttestationHandler.cs │ │ ├── DeviceInfoHandler.cs │ │ ├── DmAppStoreUpdate.cs │ │ ├── EventTracingHandler.cs │ │ ├── ExternalStorageHandler.cs │ │ ├── FactoryResetHandler.cs │ │ ├── RebootCmdHandler.cs │ │ ├── RebootInfoHandler.cs │ │ ├── RemoteWipeHandler.cs │ │ ├── StorageHandler.cs │ │ ├── TimeServiceHandler.cs │ │ ├── TimeSettingsHandler.cs │ │ ├── UsoClientCmdHandler.cs │ │ ├── WifiHandler.cs │ │ ├── WindowsTelemetryHandler.cs │ │ ├── WindowsUpdatePolicyHandler.cs │ │ └── WindowsUpdatesHandler.cs │ ├── Interfaces │ │ ├── IDeviceManagementClientHandler.cs │ │ ├── IDeviceManagementRequestHandler.cs │ │ ├── IDeviceTwin.cs │ │ └── ISystemConfiguratorProxy.cs │ ├── IoTDMClientLib.csproj │ ├── OnPremDeviceTwinProxy.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── IoTDMClient.rd.xml │ ├── SystemConfiguratorProxy.cs │ ├── TpmDevice.cs │ ├── Utils.cs │ └── include │ │ └── dm_request.h ├── SharedUtilities │ ├── AutoCloseBase.h │ ├── AutoCloseHandle.h │ ├── Constants.h │ ├── DMException.cpp │ ├── DMException.h │ ├── DMRequest.h │ ├── ETWLogger.cpp │ ├── ETWLogger.h │ ├── Impersonator.cpp │ ├── Impersonator.h │ ├── JsonHelpers.cpp │ ├── JsonHelpers.h │ ├── Logger.cpp │ ├── Logger.h │ ├── Permissions │ │ ├── PermissionsManager.cpp │ │ ├── PermissionsManager.h │ │ ├── PermissionsSnapshot.cpp │ │ ├── PermissionsSnapshot.h │ │ ├── PermissionsTracer.cpp │ │ └── PermissionsTracer.h │ ├── PolicyHelper.cpp │ ├── PolicyHelper.h │ ├── SecurityAttributes.cpp │ ├── SecurityAttributes.h │ ├── SharedUtilities.vcxitems │ ├── SharedUtilities.vcxitems.filters │ ├── StringUtils.cpp │ ├── StringUtils.h │ ├── TimeHelpers.cpp │ ├── TimeHelpers.h │ ├── Utils.cpp │ └── Utils.h ├── SystemConfigurator │ ├── AppCfg.cpp │ ├── AppCfg.h │ ├── AppInfo.h │ ├── CSPs │ │ ├── CertificateInfo.cpp │ │ ├── CertificateInfo.h │ │ ├── CertificateManagement.cpp │ │ ├── CertificateManagement.h │ │ ├── CertificateStoreCSP.cpp │ │ ├── CertificateStoreCSP.h │ │ ├── ClientCertificateInstallCSP.cpp │ │ ├── ClientCertificateInstallCSP.h │ │ ├── CustomDeviceUiCsp.cpp │ │ ├── CustomDeviceUiCsp.h │ │ ├── DeviceHealthAttestationCSP.cpp │ │ ├── DeviceHealthAttestationCSP.h │ │ ├── DiagnosticLogCSP.cpp │ │ ├── DiagnosticLogCSP.h │ │ ├── EnterpriseModernAppManagementCSP.cpp │ │ ├── EnterpriseModernAppManagementCSP.h │ │ ├── MdmProvision.cpp │ │ ├── MdmProvision.h │ │ ├── PrivateAPIs │ │ │ └── WinSDKRS2.h │ │ ├── RebootCSP.cpp │ │ ├── RebootCSP.h │ │ ├── WifiCSP.cpp │ │ ├── WifiCSP.h │ │ ├── WindowsUpdatePolicy.cpp │ │ └── WindowsUpdatePolicyCSP.h │ ├── CommandProcessor.cpp │ ├── CommandProcessor.h │ ├── DMService.cpp │ ├── DMService.h │ ├── DMStorage.cpp │ ├── DMStorage.h │ ├── Resource.rc │ ├── ServiceManager.cpp │ ├── ServiceManager.h │ ├── SystemConfigurator.cpp │ ├── SystemConfigurator.vcxproj │ ├── SystemConfigurator.vcxproj.filters │ ├── SystemConfiguratorProxyServer │ │ ├── SystemConfiguratorProxy.cpp │ │ └── SystemConfiguratorProxy.h │ ├── TaskQueue.cpp │ ├── TaskQueue.h │ ├── TimeCfg.cpp │ ├── TimeCfg.h │ ├── TimeService.cpp │ ├── TimeService.h │ ├── WindowsTelemetry.cpp │ ├── WindowsTelemetry.h │ ├── resource.h │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h └── SystemConfiguratorProxy │ ├── Client │ ├── SCProxyClient.cpp │ ├── SCProxyClient.h │ ├── ServiceConfiguratorProxyClientLib.vcxproj │ ├── ServiceConfiguratorProxyClientLib.vcxproj.filters │ ├── ServiceConfiguratorProxyInterface.c │ ├── SystemConfiguratorProxyInterface.c │ ├── pch.cpp │ └── pch.h │ └── Interface │ ├── SystemConfiguratorProxy.Idl │ ├── SystemConfiguratorProxyInterface.vcxproj │ └── SystemConfiguratorProxyInterface.vcxproj.filters └── tests ├── CSPTests ├── CSPTests.cpp ├── CSPTests.vcxproj ├── CSPTests.vcxproj.filters ├── CertificateManagementTest.cpp ├── CertificateManagementTest.h ├── DeviceHealthAttestationTest.cpp ├── DeviceHealthAttestationTest.h ├── ReadMe.txt ├── TestUtils.cpp ├── TestUtils.h ├── WifiManagementTest.cpp ├── WifiManagementTest.h ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── DMValidator ├── App.config ├── App.xaml ├── App.xaml.cs ├── DMValidator.csproj ├── DeviceConnectionString.cs ├── IoTHubManager.cs ├── Logger.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── TestCases │ ├── RebootCmd │ │ └── RebootCmd.00.json │ ├── RebootInfo │ │ └── RebootInfo.00.json │ └── WindowsUpdatePolicy │ │ └── WindowsUpdatePolicy.00.json ├── TestInfrastructure │ ├── DeviceTwinTestCase.cs │ ├── DirectMethodTestCase.cs │ ├── JsonHelpers.cs │ ├── TestCase.cs │ ├── TestCaseHelpers.cs │ ├── TestConstants.cs │ ├── TestParameters.cs │ └── TestScenario.cs └── packages.config ├── E2ETestApp ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── LockScreenLogo.scale-200.png │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ └── Wide310x150Logo.scale-200.png ├── Constants.cs ├── E2ETestApp.csproj ├── JsonHelpers.cs ├── MainPage.xaml ├── MainPage.xaml.cs ├── MockObjects │ ├── MockDeviceClient.cs │ ├── MockDeviceClientApp.cs │ ├── MockIoTHubDeviceTwinProxy.cs │ ├── MockRegistryManager.cs │ ├── MockTwin.cs │ └── MockTwinCollection.cs ├── Package.appxmanifest ├── Properties │ ├── AssemblyInfo.cs │ └── Default.rd.xml ├── TestCaseHandlers │ ├── DeviceTwinTestCase.cs │ ├── DirectMethodTestCase.cs │ ├── SetWindowsUpdateRingAsyncTestCase.cs │ ├── TestCase.cs │ └── TestScenario.cs ├── TestCases │ ├── Apps │ │ ├── Apps.00.arm.json │ │ ├── Apps.00.x86.RS4.Core.json │ │ ├── Apps.00.x86.RS4.Enterprise.json │ │ ├── Apps.00.x86.json │ │ ├── Apps.01.list.RS4.Core.json │ │ └── Apps.01.list.json │ ├── Certificates │ │ └── Certificates.00.json │ ├── DeviceInfo │ │ ├── DeviceInfo.MBM.00.json │ │ └── DeviceInfo.RPI2.00.json │ ├── Diagnostic Logs │ │ └── DiagnosticLogs.00.json │ ├── RebootCmd │ │ └── RebootCmd.00.json │ ├── RebootInfo │ │ └── RebootInfo.00.json │ ├── TimeInfo │ │ └── TimeInfo.00.json │ ├── TimeService │ │ └── TimeService.00.json │ ├── WiFi │ │ └── WiFi.00.json │ ├── WindowsTelemetry │ │ └── WindowsTelemetry.00.json │ ├── WindowsUpdatePolicy │ │ ├── WindowsUpdatePolicy.IoTCoreOnly.Ring.00.json │ │ └── WindowsUpdatePolicy.NoRing.00.json │ └── WindowsUpdates │ │ └── WindowsUpdates.00.json ├── TestInfrastructure │ ├── TestCaseEnumerator.cs │ ├── TestCaseHelpers.cs │ ├── TestNode.cs │ └── TestParameters.cs └── XamlConverters.cs ├── IoTDMClientLibTests ├── Assets │ ├── LockScreenLogo.scale-200.png │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ └── Wide310x150Logo.scale-200.png ├── DMMessageTests.cs ├── DeviceHealthAttestationTest.cs ├── DeviceManagementClientTests.cs ├── IoTDMClientLibTests.csproj ├── IoTDMClientLibTests_TemporaryKey.pfx ├── Package.appxmanifest ├── Properties │ ├── AssemblyInfo.cs │ └── UnitTestApp.rd.xml ├── UnitTestApp.xaml └── UnitTestApp.xaml.cs └── IoTHubManager ├── App.config ├── IoTHubManager.csproj ├── Program.cs ├── Properties └── AssemblyInfo.cs └── packages.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/README.md -------------------------------------------------------------------------------- /docs/application-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/docs/application-management.md -------------------------------------------------------------------------------- /docs/apply-all-desired-properties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/docs/apply-all-desired-properties.md -------------------------------------------------------------------------------- /docs/azure-dm-certification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/docs/azure-dm-certification.md -------------------------------------------------------------------------------- /docs/building-the-dm-binaries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/docs/building-the-dm-binaries.md -------------------------------------------------------------------------------- /docs/certificate-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/docs/certificate-management.md -------------------------------------------------------------------------------- /docs/debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/docs/debugging.md -------------------------------------------------------------------------------- /docs/device-factory-reset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/docs/device-factory-reset.md -------------------------------------------------------------------------------- /docs/device-health-attestation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/docs/device-health-attestation.md -------------------------------------------------------------------------------- /docs/device-info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/docs/device-info.md -------------------------------------------------------------------------------- /docs/dha-architecture-detail1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/docs/dha-architecture-detail1.png -------------------------------------------------------------------------------- /docs/dha-architecture-detail2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/docs/dha-architecture-detail2.png -------------------------------------------------------------------------------- /docs/dha-architecture-detail3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/docs/dha-architecture-detail3.png -------------------------------------------------------------------------------- /docs/dha-architecture-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/docs/dha-architecture-overview.png -------------------------------------------------------------------------------- /docs/dha-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/docs/dha-architecture.md -------------------------------------------------------------------------------- /docs/dha-deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/docs/dha-deploy.md -------------------------------------------------------------------------------- /docs/dha-report-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/docs/dha-report-sample.png -------------------------------------------------------------------------------- /docs/diagnostic-logs-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/docs/diagnostic-logs-management.md -------------------------------------------------------------------------------- /docs/dm-application-anatomy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/docs/dm-application-anatomy.png -------------------------------------------------------------------------------- /docs/dm-architecture-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/docs/dm-architecture-all.png -------------------------------------------------------------------------------- /docs/dm-architecture-application-library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/docs/dm-architecture-application-library.png -------------------------------------------------------------------------------- /docs/dm-client-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/docs/dm-client-architecture.md -------------------------------------------------------------------------------- /docs/dm-hello-world-coding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/docs/dm-hello-world-coding.md -------------------------------------------------------------------------------- /docs/dm-hello-world-deploying.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/docs/dm-hello-world-deploying.md -------------------------------------------------------------------------------- /docs/dm-hello-world-managing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/docs/dm-hello-world-managing.md -------------------------------------------------------------------------------- /docs/dm-hello-world-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/docs/dm-hello-world-overview.md -------------------------------------------------------------------------------- /docs/dm-validator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/docs/dm-validator.png -------------------------------------------------------------------------------- /docs/exposing-new-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/docs/exposing-new-configuration.md -------------------------------------------------------------------------------- /docs/external-storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/docs/external-storage.md -------------------------------------------------------------------------------- /docs/library-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/docs/library-reference.md -------------------------------------------------------------------------------- /docs/oem-device-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/docs/oem-device-setup.md -------------------------------------------------------------------------------- /docs/reboot-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/docs/reboot-management.md -------------------------------------------------------------------------------- /docs/release-notes-2017-10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/docs/release-notes-2017-10.md -------------------------------------------------------------------------------- /docs/release-notes-2018-06.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/docs/release-notes-2018-06.md -------------------------------------------------------------------------------- /docs/remote-wipe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/docs/remote-wipe.md -------------------------------------------------------------------------------- /docs/report-all-device-properties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/docs/report-all-device-properties.md -------------------------------------------------------------------------------- /docs/running-e2e-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/docs/running-e2e-tests.md -------------------------------------------------------------------------------- /docs/samples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/docs/samples.md -------------------------------------------------------------------------------- /docs/source-policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/docs/source-policy.md -------------------------------------------------------------------------------- /docs/status-reporting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/docs/status-reporting.md -------------------------------------------------------------------------------- /docs/time-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/docs/time-management.md -------------------------------------------------------------------------------- /docs/wifi-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/docs/wifi-management.md -------------------------------------------------------------------------------- /docs/windows-telemetry-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/docs/windows-telemetry-management.md -------------------------------------------------------------------------------- /docs/windows-update-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/docs/windows-update-management.md -------------------------------------------------------------------------------- /external/WinSDKRS2/arm/mdmlocalmanagement.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/external/WinSDKRS2/arm/mdmlocalmanagement.lib -------------------------------------------------------------------------------- /external/WinSDKRS2/x64/mdmlocalmanagement.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/external/WinSDKRS2/x64/mdmlocalmanagement.lib -------------------------------------------------------------------------------- /external/WinSDKRS2/x86/mdmlocalmanagement.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/external/WinSDKRS2/x86/mdmlocalmanagement.lib -------------------------------------------------------------------------------- /external/limpet/dll/arm/LimpetLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/external/limpet/dll/arm/LimpetLib.dll -------------------------------------------------------------------------------- /external/limpet/dll/x64/LimpetLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/external/limpet/dll/x64/LimpetLib.dll -------------------------------------------------------------------------------- /external/limpet/dll/x64/LimpetLib.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/external/limpet/dll/x64/LimpetLib.pdb -------------------------------------------------------------------------------- /external/limpet/dll/x86/LimpetLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/external/limpet/dll/x86/LimpetLib.dll -------------------------------------------------------------------------------- /external/limpet/dll/x86/LimpetLib.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/external/limpet/dll/x86/LimpetLib.pdb -------------------------------------------------------------------------------- /external/limpet/inc/LimpetDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/external/limpet/inc/LimpetDefs.h -------------------------------------------------------------------------------- /external/limpet/inc/LimpetLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/external/limpet/inc/LimpetLib.h -------------------------------------------------------------------------------- /external/limpet/lib/arm/LimpetLib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/external/limpet/lib/arm/LimpetLib.lib -------------------------------------------------------------------------------- /external/limpet/lib/x64/LimpetLib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/external/limpet/lib/x64/LimpetLib.lib -------------------------------------------------------------------------------- /external/limpet/lib/x86/LimpetLib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/external/limpet/lib/x86/LimpetLib.lib -------------------------------------------------------------------------------- /nuget/IoTDMClientLib.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/nuget/IoTDMClientLib.nuspec -------------------------------------------------------------------------------- /nuget/IoTDMClientLib.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/nuget/IoTDMClientLib.targets -------------------------------------------------------------------------------- /nuget/PackIoTDMClientLib.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/nuget/PackIoTDMClientLib.cmd -------------------------------------------------------------------------------- /samples/DMController/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMController/App.xaml -------------------------------------------------------------------------------- /samples/DMController/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMController/App.xaml.cs -------------------------------------------------------------------------------- /samples/DMController/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMController/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /samples/DMController/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMController/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/DMController/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMController/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/DMController/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMController/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /samples/DMController/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMController/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /samples/DMController/Assets/StoreLogo.backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMController/Assets/StoreLogo.backup.png -------------------------------------------------------------------------------- /samples/DMController/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMController/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/DMController/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMController/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/DMController/DMController.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMController/DMController.csproj -------------------------------------------------------------------------------- /samples/DMController/DeviceTwinAndMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMController/DeviceTwinAndMethods.cs -------------------------------------------------------------------------------- /samples/DMController/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMController/MainPage.xaml -------------------------------------------------------------------------------- /samples/DMController/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMController/MainPage.xaml.cs -------------------------------------------------------------------------------- /samples/DMController/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMController/Package.appxmanifest -------------------------------------------------------------------------------- /samples/DMController/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMController/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/DMController/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMController/Properties/Default.rd.xml -------------------------------------------------------------------------------- /samples/DMController/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMController/README.md -------------------------------------------------------------------------------- /samples/DMController/Views/ApplicationsUserControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMController/Views/ApplicationsUserControl.xaml -------------------------------------------------------------------------------- /samples/DMController/Views/ApplicationsUserControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMController/Views/ApplicationsUserControl.xaml.cs -------------------------------------------------------------------------------- /samples/DMController/Views/CertificatesUserControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMController/Views/CertificatesUserControl.xaml -------------------------------------------------------------------------------- /samples/DMController/Views/CertificatesUserControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMController/Views/CertificatesUserControl.xaml.cs -------------------------------------------------------------------------------- /samples/DMController/Views/DHAUserControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMController/Views/DHAUserControl.xaml -------------------------------------------------------------------------------- /samples/DMController/Views/DHAUserControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMController/Views/DHAUserControl.xaml.cs -------------------------------------------------------------------------------- /samples/DMController/Views/DeviceInfoUserControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMController/Views/DeviceInfoUserControl.xaml -------------------------------------------------------------------------------- /samples/DMController/Views/DeviceInfoUserControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMController/Views/DeviceInfoUserControl.xaml.cs -------------------------------------------------------------------------------- /samples/DMController/Views/DiagnosticLogsUserControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMController/Views/DiagnosticLogsUserControl.xaml -------------------------------------------------------------------------------- /samples/DMController/Views/DiagnosticLogsUserControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMController/Views/DiagnosticLogsUserControl.xaml.cs -------------------------------------------------------------------------------- /samples/DMController/Views/FactoryResetUserControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMController/Views/FactoryResetUserControl.xaml -------------------------------------------------------------------------------- /samples/DMController/Views/FactoryResetUserControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMController/Views/FactoryResetUserControl.xaml.cs -------------------------------------------------------------------------------- /samples/DMController/Views/RebootUserControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMController/Views/RebootUserControl.xaml -------------------------------------------------------------------------------- /samples/DMController/Views/RebootUserControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMController/Views/RebootUserControl.xaml.cs -------------------------------------------------------------------------------- /samples/DMController/Views/TimeUserControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMController/Views/TimeUserControl.xaml -------------------------------------------------------------------------------- /samples/DMController/Views/TimeUserControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMController/Views/TimeUserControl.xaml.cs -------------------------------------------------------------------------------- /samples/DMController/Views/WifiUserControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMController/Views/WifiUserControl.xaml -------------------------------------------------------------------------------- /samples/DMController/Views/WifiUserControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMController/Views/WifiUserControl.xaml.cs -------------------------------------------------------------------------------- /samples/DMController/Views/WindowsTelemetryUserControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMController/Views/WindowsTelemetryUserControl.xaml -------------------------------------------------------------------------------- /samples/DMController/Views/WindowsTelemetryUserControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMController/Views/WindowsTelemetryUserControl.xaml.cs -------------------------------------------------------------------------------- /samples/DMController/Views/WindowsUpdateUserControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMController/Views/WindowsUpdateUserControl.xaml -------------------------------------------------------------------------------- /samples/DMController/Views/WindowsUpdateUserControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMController/Views/WindowsUpdateUserControl.xaml.cs -------------------------------------------------------------------------------- /samples/DMController/imgs/deviceinfo-buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMController/imgs/deviceinfo-buttons.png -------------------------------------------------------------------------------- /samples/DMController/imgs/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMController/imgs/settings.png -------------------------------------------------------------------------------- /samples/DMController/imgs/test-buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMController/imgs/test-buttons.png -------------------------------------------------------------------------------- /samples/DMDashboard/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/App.config -------------------------------------------------------------------------------- /samples/DMDashboard/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/App.xaml -------------------------------------------------------------------------------- /samples/DMDashboard/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/App.xaml.cs -------------------------------------------------------------------------------- /samples/DMDashboard/Appx/AppDesiredStateControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/Appx/AppDesiredStateControl.xaml -------------------------------------------------------------------------------- /samples/DMDashboard/Appx/AppDesiredStateControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/Appx/AppDesiredStateControl.xaml.cs -------------------------------------------------------------------------------- /samples/DMDashboard/Appx/AppReportedStateControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/Appx/AppReportedStateControl.xaml -------------------------------------------------------------------------------- /samples/DMDashboard/Appx/AppReportedStateControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/Appx/AppReportedStateControl.xaml.cs -------------------------------------------------------------------------------- /samples/DMDashboard/Appx/AppsDesiredStateControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/Appx/AppsDesiredStateControl.xaml -------------------------------------------------------------------------------- /samples/DMDashboard/Appx/AppsDesiredStateControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/Appx/AppsDesiredStateControl.xaml.cs -------------------------------------------------------------------------------- /samples/DMDashboard/Appx/AppsReportedStateControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/Appx/AppsReportedStateControl.xaml -------------------------------------------------------------------------------- /samples/DMDashboard/Appx/AppsReportedStateControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/Appx/AppsReportedStateControl.xaml.cs -------------------------------------------------------------------------------- /samples/DMDashboard/AzureBlobSelector.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/AzureBlobSelector.xaml -------------------------------------------------------------------------------- /samples/DMDashboard/AzureBlobSelector.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/AzureBlobSelector.xaml.cs -------------------------------------------------------------------------------- /samples/DMDashboard/AzureStorageHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/AzureStorageHelpers.cs -------------------------------------------------------------------------------- /samples/DMDashboard/Certificates/CertificateDetails.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/Certificates/CertificateDetails.xaml -------------------------------------------------------------------------------- /samples/DMDashboard/Certificates/CertificateDetails.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/Certificates/CertificateDetails.xaml.cs -------------------------------------------------------------------------------- /samples/DMDashboard/Certificates/CertificateExportDetails.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/Certificates/CertificateExportDetails.xaml -------------------------------------------------------------------------------- /samples/DMDashboard/Certificates/CertificateExportDetails.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/Certificates/CertificateExportDetails.xaml.cs -------------------------------------------------------------------------------- /samples/DMDashboard/Certificates/CertificateHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/Certificates/CertificateHelpers.cs -------------------------------------------------------------------------------- /samples/DMDashboard/Certificates/CertificateSelector.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/Certificates/CertificateSelector.xaml -------------------------------------------------------------------------------- /samples/DMDashboard/Certificates/CertificateSelector.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/Certificates/CertificateSelector.xaml.cs -------------------------------------------------------------------------------- /samples/DMDashboard/Common/Converters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/Common/Converters.cs -------------------------------------------------------------------------------- /samples/DMDashboard/Common/DMComboBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/Common/DMComboBox.xaml -------------------------------------------------------------------------------- /samples/DMDashboard/Common/DMComboBox.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/Common/DMComboBox.xaml.cs -------------------------------------------------------------------------------- /samples/DMDashboard/Common/DMControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/Common/DMControl.cs -------------------------------------------------------------------------------- /samples/DMDashboard/Common/DMControlList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/Common/DMControlList.cs -------------------------------------------------------------------------------- /samples/DMDashboard/Common/DMSectionControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/Common/DMSectionControl.cs -------------------------------------------------------------------------------- /samples/DMDashboard/Common/DMTextBlock.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/Common/DMTextBlock.xaml -------------------------------------------------------------------------------- /samples/DMDashboard/Common/DMTextBlock.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/Common/DMTextBlock.xaml.cs -------------------------------------------------------------------------------- /samples/DMDashboard/Common/DMTextBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/Common/DMTextBox.xaml -------------------------------------------------------------------------------- /samples/DMDashboard/Common/DMTextBox.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/Common/DMTextBox.xaml.cs -------------------------------------------------------------------------------- /samples/DMDashboard/DMDashboard.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/DMDashboard.csproj -------------------------------------------------------------------------------- /samples/DMDashboard/DeviceHealthAttestation/DeviceHealthAttestationDesiredStateControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/DeviceHealthAttestation/DeviceHealthAttestationDesiredStateControl.xaml -------------------------------------------------------------------------------- /samples/DMDashboard/DeviceHealthAttestation/DeviceHealthAttestationDesiredStateControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/DeviceHealthAttestation/DeviceHealthAttestationDesiredStateControl.xaml.cs -------------------------------------------------------------------------------- /samples/DMDashboard/DeviceHealthAttestation/DeviceHealthAttestationReportedStateControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/DeviceHealthAttestation/DeviceHealthAttestationReportedStateControl.xaml -------------------------------------------------------------------------------- /samples/DMDashboard/DeviceHealthAttestation/DeviceHealthAttestationReportedStateControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/DeviceHealthAttestation/DeviceHealthAttestationReportedStateControl.xaml.cs -------------------------------------------------------------------------------- /samples/DMDashboard/DeviceInfo/DeviceInfoReportedStateControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/DeviceInfo/DeviceInfoReportedStateControl.xaml -------------------------------------------------------------------------------- /samples/DMDashboard/DeviceInfo/DeviceInfoReportedStateControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/DeviceInfo/DeviceInfoReportedStateControl.xaml.cs -------------------------------------------------------------------------------- /samples/DMDashboard/DeviceTwinAndMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/DeviceTwinAndMethod.cs -------------------------------------------------------------------------------- /samples/DMDashboard/DiagnosticLogs/CollectorDesiredStateControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/DiagnosticLogs/CollectorDesiredStateControl.xaml -------------------------------------------------------------------------------- /samples/DMDashboard/DiagnosticLogs/CollectorDesiredStateControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/DiagnosticLogs/CollectorDesiredStateControl.xaml.cs -------------------------------------------------------------------------------- /samples/DMDashboard/DiagnosticLogs/CollectorReportedStateControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/DiagnosticLogs/CollectorReportedStateControl.xaml -------------------------------------------------------------------------------- /samples/DMDashboard/DiagnosticLogs/CollectorReportedStateControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/DiagnosticLogs/CollectorReportedStateControl.xaml.cs -------------------------------------------------------------------------------- /samples/DMDashboard/DiagnosticLogs/CollectorsDesiredStateControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/DiagnosticLogs/CollectorsDesiredStateControl.xaml -------------------------------------------------------------------------------- /samples/DMDashboard/DiagnosticLogs/CollectorsDesiredStateControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/DiagnosticLogs/CollectorsDesiredStateControl.xaml.cs -------------------------------------------------------------------------------- /samples/DMDashboard/DiagnosticLogs/CollectorsReportedStateControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/DiagnosticLogs/CollectorsReportedStateControl.xaml -------------------------------------------------------------------------------- /samples/DMDashboard/DiagnosticLogs/CollectorsReportedStateControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/DiagnosticLogs/CollectorsReportedStateControl.xaml.cs -------------------------------------------------------------------------------- /samples/DMDashboard/DiagnosticLogs/ProviderDesiredStateControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/DiagnosticLogs/ProviderDesiredStateControl.xaml -------------------------------------------------------------------------------- /samples/DMDashboard/DiagnosticLogs/ProviderDesiredStateControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/DiagnosticLogs/ProviderDesiredStateControl.xaml.cs -------------------------------------------------------------------------------- /samples/DMDashboard/DiagnosticLogs/ProviderDesiredStateListControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/DiagnosticLogs/ProviderDesiredStateListControl.xaml -------------------------------------------------------------------------------- /samples/DMDashboard/DiagnosticLogs/ProviderDesiredStateListControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/DiagnosticLogs/ProviderDesiredStateListControl.xaml.cs -------------------------------------------------------------------------------- /samples/DMDashboard/DiagnosticLogs/ProviderReportedStateControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/DiagnosticLogs/ProviderReportedStateControl.xaml -------------------------------------------------------------------------------- /samples/DMDashboard/DiagnosticLogs/ProviderReportedStateControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/DiagnosticLogs/ProviderReportedStateControl.xaml.cs -------------------------------------------------------------------------------- /samples/DMDashboard/DiagnosticLogs/ProviderReportedStateListControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/DiagnosticLogs/ProviderReportedStateListControl.xaml -------------------------------------------------------------------------------- /samples/DMDashboard/DiagnosticLogs/ProviderReportedStateListControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/DiagnosticLogs/ProviderReportedStateListControl.xaml.cs -------------------------------------------------------------------------------- /samples/DMDashboard/DmAppStoreUpdate/DmAppStoreUpdateReportedStateControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/DmAppStoreUpdate/DmAppStoreUpdateReportedStateControl.xaml -------------------------------------------------------------------------------- /samples/DMDashboard/DmAppStoreUpdate/DmAppStoreUpdateReportedStateControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/DmAppStoreUpdate/DmAppStoreUpdateReportedStateControl.xaml.cs -------------------------------------------------------------------------------- /samples/DMDashboard/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/MainWindow.xaml -------------------------------------------------------------------------------- /samples/DMDashboard/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/MainWindow.xaml.cs -------------------------------------------------------------------------------- /samples/DMDashboard/Models.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/Models.cs -------------------------------------------------------------------------------- /samples/DMDashboard/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/DMDashboard/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /samples/DMDashboard/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/Properties/Resources.resx -------------------------------------------------------------------------------- /samples/DMDashboard/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /samples/DMDashboard/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/Properties/Settings.settings -------------------------------------------------------------------------------- /samples/DMDashboard/Reboot/RebootCmdReportedStateControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/Reboot/RebootCmdReportedStateControl.xaml -------------------------------------------------------------------------------- /samples/DMDashboard/Reboot/RebootCmdReportedStateControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/Reboot/RebootCmdReportedStateControl.xaml.cs -------------------------------------------------------------------------------- /samples/DMDashboard/Reboot/RebootInfoDesiredStateControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/Reboot/RebootInfoDesiredStateControl.xaml -------------------------------------------------------------------------------- /samples/DMDashboard/Reboot/RebootInfoDesiredStateControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/Reboot/RebootInfoDesiredStateControl.xaml.cs -------------------------------------------------------------------------------- /samples/DMDashboard/Reboot/RebootInfoReportedStateControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/Reboot/RebootInfoReportedStateControl.xaml -------------------------------------------------------------------------------- /samples/DMDashboard/Reboot/RebootInfoReportedStateControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/Reboot/RebootInfoReportedStateControl.xaml.cs -------------------------------------------------------------------------------- /samples/DMDashboard/StorageManagement/AzureStorageManager.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/StorageManagement/AzureStorageManager.xaml -------------------------------------------------------------------------------- /samples/DMDashboard/StorageManagement/AzureStorageManager.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/StorageManagement/AzureStorageManager.xaml.cs -------------------------------------------------------------------------------- /samples/DMDashboard/StorageManagement/DeviceDeleteFile.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/StorageManagement/DeviceDeleteFile.xaml -------------------------------------------------------------------------------- /samples/DMDashboard/StorageManagement/DeviceDeleteFile.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/StorageManagement/DeviceDeleteFile.xaml.cs -------------------------------------------------------------------------------- /samples/DMDashboard/StorageManagement/DeviceFileSelectionControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/StorageManagement/DeviceFileSelectionControl.xaml -------------------------------------------------------------------------------- /samples/DMDashboard/StorageManagement/DeviceFileSelectionControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/StorageManagement/DeviceFileSelectionControl.xaml.cs -------------------------------------------------------------------------------- /samples/DMDashboard/StorageManagement/DeviceUploadFile.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/StorageManagement/DeviceUploadFile.xaml -------------------------------------------------------------------------------- /samples/DMDashboard/StorageManagement/DeviceUploadFile.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/StorageManagement/DeviceUploadFile.xaml.cs -------------------------------------------------------------------------------- /samples/DMDashboard/Telemetry/WindowsTelemetryDesiredStateControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/Telemetry/WindowsTelemetryDesiredStateControl.xaml -------------------------------------------------------------------------------- /samples/DMDashboard/Telemetry/WindowsTelemetryDesiredStateControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/Telemetry/WindowsTelemetryDesiredStateControl.xaml.cs -------------------------------------------------------------------------------- /samples/DMDashboard/Telemetry/WindowsTelemetryReportedStateControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/Telemetry/WindowsTelemetryReportedStateControl.xaml -------------------------------------------------------------------------------- /samples/DMDashboard/Telemetry/WindowsTelemetryReportedStateControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/Telemetry/WindowsTelemetryReportedStateControl.xaml.cs -------------------------------------------------------------------------------- /samples/DMDashboard/TimeSettings/TimeDesiredStateControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/TimeSettings/TimeDesiredStateControl.xaml -------------------------------------------------------------------------------- /samples/DMDashboard/TimeSettings/TimeDesiredStateControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/TimeSettings/TimeDesiredStateControl.xaml.cs -------------------------------------------------------------------------------- /samples/DMDashboard/TimeSettings/TimeReportedStateControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/TimeSettings/TimeReportedStateControl.xaml -------------------------------------------------------------------------------- /samples/DMDashboard/TimeSettings/TimeReportedStateControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/TimeSettings/TimeReportedStateControl.xaml.cs -------------------------------------------------------------------------------- /samples/DMDashboard/TimeSettings/TimeSvcDesiredStateControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/TimeSettings/TimeSvcDesiredStateControl.xaml -------------------------------------------------------------------------------- /samples/DMDashboard/TimeSettings/TimeSvcDesiredStateControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/TimeSettings/TimeSvcDesiredStateControl.xaml.cs -------------------------------------------------------------------------------- /samples/DMDashboard/TimeSettings/TimeSvcReportedStateControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/TimeSettings/TimeSvcReportedStateControl.xaml -------------------------------------------------------------------------------- /samples/DMDashboard/TimeSettings/TimeSvcReportedStateControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/TimeSettings/TimeSvcReportedStateControl.xaml.cs -------------------------------------------------------------------------------- /samples/DMDashboard/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/Utils.cs -------------------------------------------------------------------------------- /samples/DMDashboard/WPFUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/WPFUtils.cs -------------------------------------------------------------------------------- /samples/DMDashboard/Wifi/WifiDesiredStateControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/Wifi/WifiDesiredStateControl.xaml -------------------------------------------------------------------------------- /samples/DMDashboard/Wifi/WifiDesiredStateControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/Wifi/WifiDesiredStateControl.xaml.cs -------------------------------------------------------------------------------- /samples/DMDashboard/Wifi/WifiDetails.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/Wifi/WifiDetails.xaml -------------------------------------------------------------------------------- /samples/DMDashboard/Wifi/WifiDetails.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/Wifi/WifiDetails.xaml.cs -------------------------------------------------------------------------------- /samples/DMDashboard/Wifi/WifiProfileConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/Wifi/WifiProfileConfiguration.cs -------------------------------------------------------------------------------- /samples/DMDashboard/Wifi/WifiProfilesDesiredStateControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/Wifi/WifiProfilesDesiredStateControl.xaml -------------------------------------------------------------------------------- /samples/DMDashboard/Wifi/WifiProfilesDesiredStateControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/Wifi/WifiProfilesDesiredStateControl.xaml.cs -------------------------------------------------------------------------------- /samples/DMDashboard/Wifi/WifiProfilesReportedStateControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/Wifi/WifiProfilesReportedStateControl.xaml -------------------------------------------------------------------------------- /samples/DMDashboard/Wifi/WifiProfilesReportedStateControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/Wifi/WifiProfilesReportedStateControl.xaml.cs -------------------------------------------------------------------------------- /samples/DMDashboard/Wifi/WifiReportedStateControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/Wifi/WifiReportedStateControl.xaml -------------------------------------------------------------------------------- /samples/DMDashboard/Wifi/WifiReportedStateControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/Wifi/WifiReportedStateControl.xaml.cs -------------------------------------------------------------------------------- /samples/DMDashboard/WindowsUpdatePolicy/WindowsUpdatePolicyDesiredStateControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/WindowsUpdatePolicy/WindowsUpdatePolicyDesiredStateControl.xaml -------------------------------------------------------------------------------- /samples/DMDashboard/WindowsUpdatePolicy/WindowsUpdatePolicyDesiredStateControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/WindowsUpdatePolicy/WindowsUpdatePolicyDesiredStateControl.xaml.cs -------------------------------------------------------------------------------- /samples/DMDashboard/WindowsUpdatePolicy/WindowsUpdatePolicyReportedStateControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/WindowsUpdatePolicy/WindowsUpdatePolicyReportedStateControl.xaml -------------------------------------------------------------------------------- /samples/DMDashboard/WindowsUpdatePolicy/WindowsUpdatePolicyReportedStateControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/WindowsUpdatePolicy/WindowsUpdatePolicyReportedStateControl.xaml.cs -------------------------------------------------------------------------------- /samples/DMDashboard/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/DMDashboard/packages.config -------------------------------------------------------------------------------- /samples/IoTDMBackground/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/IoTDMBackground/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /samples/IoTDMBackground/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/IoTDMBackground/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/IoTDMBackground/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/IoTDMBackground/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/IoTDMBackground/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/IoTDMBackground/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /samples/IoTDMBackground/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/IoTDMBackground/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /samples/IoTDMBackground/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/IoTDMBackground/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/IoTDMBackground/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/IoTDMBackground/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/IoTDMBackground/DMClientBackgroundApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/IoTDMBackground/DMClientBackgroundApplication.cs -------------------------------------------------------------------------------- /samples/IoTDMBackground/IoTDMBackground.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/IoTDMBackground/IoTDMBackground.csproj -------------------------------------------------------------------------------- /samples/IoTDMBackground/IoTDMBackground_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/IoTDMBackground/IoTDMBackground_TemporaryKey.pfx -------------------------------------------------------------------------------- /samples/IoTDMBackground/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/IoTDMBackground/Package.appxmanifest -------------------------------------------------------------------------------- /samples/IoTDMBackground/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/IoTDMBackground/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/IoTDMBackground/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/IoTDMBackground/Properties/Default.rd.xml -------------------------------------------------------------------------------- /samples/IotDeviceManagementCapability.SCCD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/IotDeviceManagementCapability.SCCD -------------------------------------------------------------------------------- /samples/ToasterApp/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/ToasterApp/App.xaml -------------------------------------------------------------------------------- /samples/ToasterApp/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/ToasterApp/App.xaml.cs -------------------------------------------------------------------------------- /samples/ToasterApp/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/ToasterApp/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /samples/ToasterApp/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/ToasterApp/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/ToasterApp/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/ToasterApp/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/ToasterApp/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/ToasterApp/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /samples/ToasterApp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/ToasterApp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /samples/ToasterApp/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/ToasterApp/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/ToasterApp/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/ToasterApp/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/ToasterApp/Assets/gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/ToasterApp/Assets/gear.png -------------------------------------------------------------------------------- /samples/ToasterApp/Assets/hot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/ToasterApp/Assets/hot.png -------------------------------------------------------------------------------- /samples/ToasterApp/Assets/toaster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/ToasterApp/Assets/toaster.png -------------------------------------------------------------------------------- /samples/ToasterApp/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/ToasterApp/MainPage.xaml -------------------------------------------------------------------------------- /samples/ToasterApp/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/ToasterApp/MainPage.xaml.cs -------------------------------------------------------------------------------- /samples/ToasterApp/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/ToasterApp/Package.appxmanifest -------------------------------------------------------------------------------- /samples/ToasterApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/ToasterApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/ToasterApp/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/ToasterApp/Properties/Default.rd.xml -------------------------------------------------------------------------------- /samples/ToasterApp/Toaster.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/ToasterApp/Toaster.csproj -------------------------------------------------------------------------------- /samples/ToasterApp/ToasterDeviceManagementRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/ToasterApp/ToasterDeviceManagementRequestHandler.cs -------------------------------------------------------------------------------- /samples/ToasterApp/UserDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/ToasterApp/UserDialog.xaml -------------------------------------------------------------------------------- /samples/ToasterApp/UserDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/samples/ToasterApp/UserDialog.xaml.cs -------------------------------------------------------------------------------- /src/DHA/DHA-test/AppSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DHA/DHA-test/AppSettings.cs -------------------------------------------------------------------------------- /src/DHA/DHA-test/DHA-test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DHA/DHA-test/DHA-test.csproj -------------------------------------------------------------------------------- /src/DHA/DHA-test/DeviceHealthAttestationServerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DHA/DHA-test/DeviceHealthAttestationServerTest.cs -------------------------------------------------------------------------------- /src/DHA/DHA-test/Extension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DHA/DHA-test/Extension.cs -------------------------------------------------------------------------------- /src/DHA/DHA-test/NonceTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DHA/DHA-test/NonceTable.cs -------------------------------------------------------------------------------- /src/DHA/DHA-test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DHA/DHA-test/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/DHA/DHA-test/ReportTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DHA/DHA-test/ReportTable.cs -------------------------------------------------------------------------------- /src/DHA/DHA-test/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DHA/DHA-test/app.config -------------------------------------------------------------------------------- /src/DHA/DHA-test/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DHA/DHA-test/packages.config -------------------------------------------------------------------------------- /src/DHA/DHA.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DHA/DHA.sln -------------------------------------------------------------------------------- /src/DHA/DHA/DHA.funproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DHA/DHA/DHA.funproj -------------------------------------------------------------------------------- /src/DHA/DHA/DHAServiceBusQueueHandler/HealthInspector.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DHA/DHA/DHAServiceBusQueueHandler/HealthInspector.csx -------------------------------------------------------------------------------- /src/DHA/DHA/DHAServiceBusQueueHandler/NonceRequestHandler.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DHA/DHA/DHAServiceBusQueueHandler/NonceRequestHandler.csx -------------------------------------------------------------------------------- /src/DHA/DHA/DHAServiceBusQueueHandler/NonceTable.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DHA/DHA/DHAServiceBusQueueHandler/NonceTable.csx -------------------------------------------------------------------------------- /src/DHA/DHA/DHAServiceBusQueueHandler/ReportRequestHandler.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DHA/DHA/DHAServiceBusQueueHandler/ReportRequestHandler.csx -------------------------------------------------------------------------------- /src/DHA/DHA/DHAServiceBusQueueHandler/Utilities.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DHA/DHA/DHAServiceBusQueueHandler/Utilities.csx -------------------------------------------------------------------------------- /src/DHA/DHA/DHAServiceBusQueueHandler/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DHA/DHA/DHAServiceBusQueueHandler/function.json -------------------------------------------------------------------------------- /src/DHA/DHA/DHAServiceBusQueueHandler/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DHA/DHA/DHAServiceBusQueueHandler/project.json -------------------------------------------------------------------------------- /src/DHA/DHA/DHAServiceBusQueueHandler/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DHA/DHA/DHAServiceBusQueueHandler/run.csx -------------------------------------------------------------------------------- /src/DHA/DHA/Project_Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DHA/DHA/Project_Readme.html -------------------------------------------------------------------------------- /src/DHA/DHA/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DHA/DHA/appsettings.json -------------------------------------------------------------------------------- /src/DHA/DHA/host.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /src/DHA/Deployment Scripts/AzureFunctionDeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DHA/Deployment Scripts/AzureFunctionDeploy.json -------------------------------------------------------------------------------- /src/DHA/Deployment Scripts/AzureServiceBusDeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DHA/Deployment Scripts/AzureServiceBusDeploy.json -------------------------------------------------------------------------------- /src/DHA/Deployment Scripts/AzureServiceBusQueueDeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DHA/Deployment Scripts/AzureServiceBusQueueDeploy.json -------------------------------------------------------------------------------- /src/DHA/Deployment Scripts/AzureStorageDeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DHA/Deployment Scripts/AzureStorageDeploy.json -------------------------------------------------------------------------------- /src/DHA/Deployment Scripts/DHA-setup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DHA/Deployment Scripts/DHA-setup.ps1 -------------------------------------------------------------------------------- /src/DMDataContract/DMDataContract/AppxLifeCycle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMDataContract/DMDataContract/AppxLifeCycle.cs -------------------------------------------------------------------------------- /src/DMDataContract/DMDataContract/AppxManagement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMDataContract/DMDataContract/AppxManagement.cs -------------------------------------------------------------------------------- /src/DMDataContract/DMDataContract/Certificates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMDataContract/DMDataContract/Certificates.cs -------------------------------------------------------------------------------- /src/DMDataContract/DMDataContract/ClearReportedProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMDataContract/DMDataContract/ClearReportedProperties.cs -------------------------------------------------------------------------------- /src/DMDataContract/DMDataContract/Common.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMDataContract/DMDataContract/Common.cs -------------------------------------------------------------------------------- /src/DMDataContract/DMDataContract/DMDataContract.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMDataContract/DMDataContract/DMDataContract.csproj -------------------------------------------------------------------------------- /src/DMDataContract/DMDataContract/DMJSonConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMDataContract/DMDataContract/DMJSonConstants.cs -------------------------------------------------------------------------------- /src/DMDataContract/DMDataContract/DeviceHealthAttestation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMDataContract/DMDataContract/DeviceHealthAttestation.cs -------------------------------------------------------------------------------- /src/DMDataContract/DMDataContract/DeviceInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMDataContract/DMDataContract/DeviceInfo.cs -------------------------------------------------------------------------------- /src/DMDataContract/DMDataContract/DmAppStoreUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMDataContract/DMDataContract/DmAppStoreUpdate.cs -------------------------------------------------------------------------------- /src/DMDataContract/DMDataContract/ErrorCodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMDataContract/DMDataContract/ErrorCodes.cs -------------------------------------------------------------------------------- /src/DMDataContract/DMDataContract/EventTracing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMDataContract/DMDataContract/EventTracing.cs -------------------------------------------------------------------------------- /src/DMDataContract/DMDataContract/ExternalStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMDataContract/DMDataContract/ExternalStorage.cs -------------------------------------------------------------------------------- /src/DMDataContract/DMDataContract/FactoryReset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMDataContract/DMDataContract/FactoryReset.cs -------------------------------------------------------------------------------- /src/DMDataContract/DMDataContract/Policy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMDataContract/DMDataContract/Policy.cs -------------------------------------------------------------------------------- /src/DMDataContract/DMDataContract/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMDataContract/DMDataContract/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/DMDataContract/DMDataContract/RebootCmd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMDataContract/DMDataContract/RebootCmd.cs -------------------------------------------------------------------------------- /src/DMDataContract/DMDataContract/RebootInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMDataContract/DMDataContract/RebootInfo.cs -------------------------------------------------------------------------------- /src/DMDataContract/DMDataContract/RemoteWipe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMDataContract/DMDataContract/RemoteWipe.cs -------------------------------------------------------------------------------- /src/DMDataContract/DMDataContract/TimeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMDataContract/DMDataContract/TimeService.cs -------------------------------------------------------------------------------- /src/DMDataContract/DMDataContract/TimeSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMDataContract/DMDataContract/TimeSettings.cs -------------------------------------------------------------------------------- /src/DMDataContract/DMDataContract/UsoClientCmd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMDataContract/DMDataContract/UsoClientCmd.cs -------------------------------------------------------------------------------- /src/DMDataContract/DMDataContract/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMDataContract/DMDataContract/Utils.cs -------------------------------------------------------------------------------- /src/DMDataContract/DMDataContract/WindowsTelemetry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMDataContract/DMDataContract/WindowsTelemetry.cs -------------------------------------------------------------------------------- /src/DMDataContract/DMDataContract/WindowsUpdatePolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMDataContract/DMDataContract/WindowsUpdatePolicy.cs -------------------------------------------------------------------------------- /src/DMDataContract/DMDataContract/WindowsUpdates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMDataContract/DMDataContract/WindowsUpdates.cs -------------------------------------------------------------------------------- /src/DMDataContract/DMDataContract/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMDataContract/DMDataContract/packages.config -------------------------------------------------------------------------------- /src/DMMessage/Blob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMMessage/Blob.cpp -------------------------------------------------------------------------------- /src/DMMessage/Blob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMMessage/Blob.h -------------------------------------------------------------------------------- /src/DMMessage/CurrentVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMMessage/CurrentVersion.h -------------------------------------------------------------------------------- /src/DMMessage/DMGarbageCollectorTempFolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMMessage/DMGarbageCollectorTempFolder.h -------------------------------------------------------------------------------- /src/DMMessage/DMMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMMessage/DMMessage.cpp -------------------------------------------------------------------------------- /src/DMMessage/DMMessage.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMMessage/DMMessage.vcxproj -------------------------------------------------------------------------------- /src/DMMessage/DMMessage.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMMessage/DMMessage.vcxproj.filters -------------------------------------------------------------------------------- /src/DMMessage/DMMessageException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMMessage/DMMessageException.h -------------------------------------------------------------------------------- /src/DMMessage/DMMessageHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMMessage/DMMessageHelper.cpp -------------------------------------------------------------------------------- /src/DMMessage/DMMessageKind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMMessage/DMMessageKind.h -------------------------------------------------------------------------------- /src/DMMessage/DMMessageSerialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMMessage/DMMessageSerialization.h -------------------------------------------------------------------------------- /src/DMMessage/IRequestIResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMMessage/IRequestIResponse.h -------------------------------------------------------------------------------- /src/DMMessage/Models/AllModels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMMessage/Models/AllModels.h -------------------------------------------------------------------------------- /src/DMMessage/Models/AppInstall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMMessage/Models/AppInstall.h -------------------------------------------------------------------------------- /src/DMMessage/Models/AppLifecycle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMMessage/Models/AppLifecycle.h -------------------------------------------------------------------------------- /src/DMMessage/Models/AppUninstall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMMessage/Models/AppUninstall.h -------------------------------------------------------------------------------- /src/DMMessage/Models/CertificateConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMMessage/Models/CertificateConfiguration.h -------------------------------------------------------------------------------- /src/DMMessage/Models/CertificateDetails.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMMessage/Models/CertificateDetails.h -------------------------------------------------------------------------------- /src/DMMessage/Models/CheckForUpdates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMMessage/Models/CheckForUpdates.h -------------------------------------------------------------------------------- /src/DMMessage/Models/DeviceDMStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMMessage/Models/DeviceDMStorage.h -------------------------------------------------------------------------------- /src/DMMessage/Models/DeviceHealthAttestation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMMessage/Models/DeviceHealthAttestation.h -------------------------------------------------------------------------------- /src/DMMessage/Models/DeviceInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMMessage/Models/DeviceInfo.h -------------------------------------------------------------------------------- /src/DMMessage/Models/ErrorResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMMessage/Models/ErrorResponse.h -------------------------------------------------------------------------------- /src/DMMessage/Models/EventTracingConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMMessage/Models/EventTracingConfiguration.h -------------------------------------------------------------------------------- /src/DMMessage/Models/ExitDM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMMessage/Models/ExitDM.h -------------------------------------------------------------------------------- /src/DMMessage/Models/FactoryReset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMMessage/Models/FactoryReset.h -------------------------------------------------------------------------------- /src/DMMessage/Models/FileTransfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMMessage/Models/FileTransfer.h -------------------------------------------------------------------------------- /src/DMMessage/Models/ListApps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMMessage/Models/ListApps.h -------------------------------------------------------------------------------- /src/DMMessage/Models/ModelHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMMessage/Models/ModelHelper.h -------------------------------------------------------------------------------- /src/DMMessage/Models/ModelsInfo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMMessage/Models/ModelsInfo.dat -------------------------------------------------------------------------------- /src/DMMessage/Models/Policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMMessage/Models/Policy.h -------------------------------------------------------------------------------- /src/DMMessage/Models/Reboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMMessage/Models/Reboot.h -------------------------------------------------------------------------------- /src/DMMessage/Models/RemoteWipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMMessage/Models/RemoteWipe.h -------------------------------------------------------------------------------- /src/DMMessage/Models/StartupApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMMessage/Models/StartupApp.h -------------------------------------------------------------------------------- /src/DMMessage/Models/StatusCodeResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMMessage/Models/StatusCodeResponse.h -------------------------------------------------------------------------------- /src/DMMessage/Models/StringListResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMMessage/Models/StringListResponse.h -------------------------------------------------------------------------------- /src/DMMessage/Models/StringResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMMessage/Models/StringResponse.h -------------------------------------------------------------------------------- /src/DMMessage/Models/TimeInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMMessage/Models/TimeInfo.h -------------------------------------------------------------------------------- /src/DMMessage/Models/TimeService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMMessage/Models/TimeService.h -------------------------------------------------------------------------------- /src/DMMessage/Models/TpmRequests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMMessage/Models/TpmRequests.h -------------------------------------------------------------------------------- /src/DMMessage/Models/UsoClientCmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMMessage/Models/UsoClientCmd.h -------------------------------------------------------------------------------- /src/DMMessage/Models/WifiConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMMessage/Models/WifiConfiguration.h -------------------------------------------------------------------------------- /src/DMMessage/Models/WifiDetails.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMMessage/Models/WifiDetails.h -------------------------------------------------------------------------------- /src/DMMessage/Models/WindowsTelemetry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMMessage/Models/WindowsTelemetry.h -------------------------------------------------------------------------------- /src/DMMessage/Models/WindowsUpdatePolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMMessage/Models/WindowsUpdatePolicy.h -------------------------------------------------------------------------------- /src/DMMessage/Models/WindowsUpdateRebootPolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMMessage/Models/WindowsUpdateRebootPolicy.h -------------------------------------------------------------------------------- /src/DMMessage/Models/WindowsUpdates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMMessage/Models/WindowsUpdates.h -------------------------------------------------------------------------------- /src/DMMessage/ResponseStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMMessage/ResponseStatus.h -------------------------------------------------------------------------------- /src/DMMessage/SerializationHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMMessage/SerializationHelper.cpp -------------------------------------------------------------------------------- /src/DMMessage/SerializationHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMMessage/SerializationHelper.h -------------------------------------------------------------------------------- /src/DMMessage/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMMessage/stdafx.cpp -------------------------------------------------------------------------------- /src/DMMessage/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMMessage/stdafx.h -------------------------------------------------------------------------------- /src/DMShared/DMShared.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMShared/DMShared.vcxitems -------------------------------------------------------------------------------- /src/DMShared/DMShared.vcxitems.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMShared/DMShared.vcxitems.filters -------------------------------------------------------------------------------- /src/DMShared/ErrorCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMShared/ErrorCodes.h -------------------------------------------------------------------------------- /src/DMTpm/DMTpm.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMTpm/DMTpm.vcxitems -------------------------------------------------------------------------------- /src/DMTpm/TpmSupport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMTpm/TpmSupport.cpp -------------------------------------------------------------------------------- /src/DMTpm/TpmSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/DMTpm/TpmSupport.h -------------------------------------------------------------------------------- /src/IoTDM.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/IoTDM.sln -------------------------------------------------------------------------------- /src/IoTDMClientLib/AzureBlobFileTransfer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/IoTDMClientLib/AzureBlobFileTransfer.cs -------------------------------------------------------------------------------- /src/IoTDMClientLib/AzureIoTHubDeviceTwinProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/IoTDMClientLib/AzureIoTHubDeviceTwinProxy.cs -------------------------------------------------------------------------------- /src/IoTDMClientLib/CertificateManagement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/IoTDMClientLib/CertificateManagement.cs -------------------------------------------------------------------------------- /src/IoTDMClientLib/DeviceManagement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/IoTDMClientLib/DeviceManagement.cs -------------------------------------------------------------------------------- /src/IoTDMClientLib/DeviceManagementClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/IoTDMClientLib/DeviceManagementClient.cs -------------------------------------------------------------------------------- /src/IoTDMClientLib/DirectMethodGuard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/IoTDMClientLib/DirectMethodGuard.cs -------------------------------------------------------------------------------- /src/IoTDMClientLib/Handlers/AppxLifeCycleHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/IoTDMClientLib/Handlers/AppxLifeCycleHandler.cs -------------------------------------------------------------------------------- /src/IoTDMClientLib/Handlers/AppxManagement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/IoTDMClientLib/Handlers/AppxManagement.cs -------------------------------------------------------------------------------- /src/IoTDMClientLib/Handlers/CertificateHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/IoTDMClientLib/Handlers/CertificateHandler.cs -------------------------------------------------------------------------------- /src/IoTDMClientLib/Handlers/ClearReportedPropertiesHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/IoTDMClientLib/Handlers/ClearReportedPropertiesHandler.cs -------------------------------------------------------------------------------- /src/IoTDMClientLib/Handlers/DeviceHealthAttestationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/IoTDMClientLib/Handlers/DeviceHealthAttestationHandler.cs -------------------------------------------------------------------------------- /src/IoTDMClientLib/Handlers/DeviceInfoHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/IoTDMClientLib/Handlers/DeviceInfoHandler.cs -------------------------------------------------------------------------------- /src/IoTDMClientLib/Handlers/DmAppStoreUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/IoTDMClientLib/Handlers/DmAppStoreUpdate.cs -------------------------------------------------------------------------------- /src/IoTDMClientLib/Handlers/EventTracingHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/IoTDMClientLib/Handlers/EventTracingHandler.cs -------------------------------------------------------------------------------- /src/IoTDMClientLib/Handlers/ExternalStorageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/IoTDMClientLib/Handlers/ExternalStorageHandler.cs -------------------------------------------------------------------------------- /src/IoTDMClientLib/Handlers/FactoryResetHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/IoTDMClientLib/Handlers/FactoryResetHandler.cs -------------------------------------------------------------------------------- /src/IoTDMClientLib/Handlers/RebootCmdHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/IoTDMClientLib/Handlers/RebootCmdHandler.cs -------------------------------------------------------------------------------- /src/IoTDMClientLib/Handlers/RebootInfoHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/IoTDMClientLib/Handlers/RebootInfoHandler.cs -------------------------------------------------------------------------------- /src/IoTDMClientLib/Handlers/RemoteWipeHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/IoTDMClientLib/Handlers/RemoteWipeHandler.cs -------------------------------------------------------------------------------- /src/IoTDMClientLib/Handlers/StorageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/IoTDMClientLib/Handlers/StorageHandler.cs -------------------------------------------------------------------------------- /src/IoTDMClientLib/Handlers/TimeServiceHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/IoTDMClientLib/Handlers/TimeServiceHandler.cs -------------------------------------------------------------------------------- /src/IoTDMClientLib/Handlers/TimeSettingsHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/IoTDMClientLib/Handlers/TimeSettingsHandler.cs -------------------------------------------------------------------------------- /src/IoTDMClientLib/Handlers/UsoClientCmdHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/IoTDMClientLib/Handlers/UsoClientCmdHandler.cs -------------------------------------------------------------------------------- /src/IoTDMClientLib/Handlers/WifiHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/IoTDMClientLib/Handlers/WifiHandler.cs -------------------------------------------------------------------------------- /src/IoTDMClientLib/Handlers/WindowsTelemetryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/IoTDMClientLib/Handlers/WindowsTelemetryHandler.cs -------------------------------------------------------------------------------- /src/IoTDMClientLib/Handlers/WindowsUpdatePolicyHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/IoTDMClientLib/Handlers/WindowsUpdatePolicyHandler.cs -------------------------------------------------------------------------------- /src/IoTDMClientLib/Handlers/WindowsUpdatesHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/IoTDMClientLib/Handlers/WindowsUpdatesHandler.cs -------------------------------------------------------------------------------- /src/IoTDMClientLib/Interfaces/IDeviceManagementClientHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/IoTDMClientLib/Interfaces/IDeviceManagementClientHandler.cs -------------------------------------------------------------------------------- /src/IoTDMClientLib/Interfaces/IDeviceManagementRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/IoTDMClientLib/Interfaces/IDeviceManagementRequestHandler.cs -------------------------------------------------------------------------------- /src/IoTDMClientLib/Interfaces/IDeviceTwin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/IoTDMClientLib/Interfaces/IDeviceTwin.cs -------------------------------------------------------------------------------- /src/IoTDMClientLib/Interfaces/ISystemConfiguratorProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/IoTDMClientLib/Interfaces/ISystemConfiguratorProxy.cs -------------------------------------------------------------------------------- /src/IoTDMClientLib/IoTDMClientLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/IoTDMClientLib/IoTDMClientLib.csproj -------------------------------------------------------------------------------- /src/IoTDMClientLib/OnPremDeviceTwinProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/IoTDMClientLib/OnPremDeviceTwinProxy.cs -------------------------------------------------------------------------------- /src/IoTDMClientLib/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/IoTDMClientLib/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/IoTDMClientLib/Properties/IoTDMClient.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/IoTDMClientLib/Properties/IoTDMClient.rd.xml -------------------------------------------------------------------------------- /src/IoTDMClientLib/SystemConfiguratorProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/IoTDMClientLib/SystemConfiguratorProxy.cs -------------------------------------------------------------------------------- /src/IoTDMClientLib/TpmDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/IoTDMClientLib/TpmDevice.cs -------------------------------------------------------------------------------- /src/IoTDMClientLib/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/IoTDMClientLib/Utils.cs -------------------------------------------------------------------------------- /src/IoTDMClientLib/include/dm_request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/IoTDMClientLib/include/dm_request.h -------------------------------------------------------------------------------- /src/SharedUtilities/AutoCloseBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SharedUtilities/AutoCloseBase.h -------------------------------------------------------------------------------- /src/SharedUtilities/AutoCloseHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SharedUtilities/AutoCloseHandle.h -------------------------------------------------------------------------------- /src/SharedUtilities/Constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SharedUtilities/Constants.h -------------------------------------------------------------------------------- /src/SharedUtilities/DMException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SharedUtilities/DMException.cpp -------------------------------------------------------------------------------- /src/SharedUtilities/DMException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SharedUtilities/DMException.h -------------------------------------------------------------------------------- /src/SharedUtilities/DMRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SharedUtilities/DMRequest.h -------------------------------------------------------------------------------- /src/SharedUtilities/ETWLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SharedUtilities/ETWLogger.cpp -------------------------------------------------------------------------------- /src/SharedUtilities/ETWLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SharedUtilities/ETWLogger.h -------------------------------------------------------------------------------- /src/SharedUtilities/Impersonator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SharedUtilities/Impersonator.cpp -------------------------------------------------------------------------------- /src/SharedUtilities/Impersonator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SharedUtilities/Impersonator.h -------------------------------------------------------------------------------- /src/SharedUtilities/JsonHelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SharedUtilities/JsonHelpers.cpp -------------------------------------------------------------------------------- /src/SharedUtilities/JsonHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SharedUtilities/JsonHelpers.h -------------------------------------------------------------------------------- /src/SharedUtilities/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SharedUtilities/Logger.cpp -------------------------------------------------------------------------------- /src/SharedUtilities/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SharedUtilities/Logger.h -------------------------------------------------------------------------------- /src/SharedUtilities/Permissions/PermissionsManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SharedUtilities/Permissions/PermissionsManager.cpp -------------------------------------------------------------------------------- /src/SharedUtilities/Permissions/PermissionsManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SharedUtilities/Permissions/PermissionsManager.h -------------------------------------------------------------------------------- /src/SharedUtilities/Permissions/PermissionsSnapshot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SharedUtilities/Permissions/PermissionsSnapshot.cpp -------------------------------------------------------------------------------- /src/SharedUtilities/Permissions/PermissionsSnapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SharedUtilities/Permissions/PermissionsSnapshot.h -------------------------------------------------------------------------------- /src/SharedUtilities/Permissions/PermissionsTracer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SharedUtilities/Permissions/PermissionsTracer.cpp -------------------------------------------------------------------------------- /src/SharedUtilities/Permissions/PermissionsTracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SharedUtilities/Permissions/PermissionsTracer.h -------------------------------------------------------------------------------- /src/SharedUtilities/PolicyHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SharedUtilities/PolicyHelper.cpp -------------------------------------------------------------------------------- /src/SharedUtilities/PolicyHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SharedUtilities/PolicyHelper.h -------------------------------------------------------------------------------- /src/SharedUtilities/SecurityAttributes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SharedUtilities/SecurityAttributes.cpp -------------------------------------------------------------------------------- /src/SharedUtilities/SecurityAttributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SharedUtilities/SecurityAttributes.h -------------------------------------------------------------------------------- /src/SharedUtilities/SharedUtilities.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SharedUtilities/SharedUtilities.vcxitems -------------------------------------------------------------------------------- /src/SharedUtilities/SharedUtilities.vcxitems.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SharedUtilities/SharedUtilities.vcxitems.filters -------------------------------------------------------------------------------- /src/SharedUtilities/StringUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SharedUtilities/StringUtils.cpp -------------------------------------------------------------------------------- /src/SharedUtilities/StringUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SharedUtilities/StringUtils.h -------------------------------------------------------------------------------- /src/SharedUtilities/TimeHelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SharedUtilities/TimeHelpers.cpp -------------------------------------------------------------------------------- /src/SharedUtilities/TimeHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SharedUtilities/TimeHelpers.h -------------------------------------------------------------------------------- /src/SharedUtilities/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SharedUtilities/Utils.cpp -------------------------------------------------------------------------------- /src/SharedUtilities/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SharedUtilities/Utils.h -------------------------------------------------------------------------------- /src/SystemConfigurator/AppCfg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfigurator/AppCfg.cpp -------------------------------------------------------------------------------- /src/SystemConfigurator/AppCfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfigurator/AppCfg.h -------------------------------------------------------------------------------- /src/SystemConfigurator/AppInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfigurator/AppInfo.h -------------------------------------------------------------------------------- /src/SystemConfigurator/CSPs/CertificateInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfigurator/CSPs/CertificateInfo.cpp -------------------------------------------------------------------------------- /src/SystemConfigurator/CSPs/CertificateInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfigurator/CSPs/CertificateInfo.h -------------------------------------------------------------------------------- /src/SystemConfigurator/CSPs/CertificateManagement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfigurator/CSPs/CertificateManagement.cpp -------------------------------------------------------------------------------- /src/SystemConfigurator/CSPs/CertificateManagement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfigurator/CSPs/CertificateManagement.h -------------------------------------------------------------------------------- /src/SystemConfigurator/CSPs/CertificateStoreCSP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfigurator/CSPs/CertificateStoreCSP.cpp -------------------------------------------------------------------------------- /src/SystemConfigurator/CSPs/CertificateStoreCSP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfigurator/CSPs/CertificateStoreCSP.h -------------------------------------------------------------------------------- /src/SystemConfigurator/CSPs/ClientCertificateInstallCSP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfigurator/CSPs/ClientCertificateInstallCSP.cpp -------------------------------------------------------------------------------- /src/SystemConfigurator/CSPs/ClientCertificateInstallCSP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfigurator/CSPs/ClientCertificateInstallCSP.h -------------------------------------------------------------------------------- /src/SystemConfigurator/CSPs/CustomDeviceUiCsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfigurator/CSPs/CustomDeviceUiCsp.cpp -------------------------------------------------------------------------------- /src/SystemConfigurator/CSPs/CustomDeviceUiCsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfigurator/CSPs/CustomDeviceUiCsp.h -------------------------------------------------------------------------------- /src/SystemConfigurator/CSPs/DeviceHealthAttestationCSP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfigurator/CSPs/DeviceHealthAttestationCSP.cpp -------------------------------------------------------------------------------- /src/SystemConfigurator/CSPs/DeviceHealthAttestationCSP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfigurator/CSPs/DeviceHealthAttestationCSP.h -------------------------------------------------------------------------------- /src/SystemConfigurator/CSPs/DiagnosticLogCSP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfigurator/CSPs/DiagnosticLogCSP.cpp -------------------------------------------------------------------------------- /src/SystemConfigurator/CSPs/DiagnosticLogCSP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfigurator/CSPs/DiagnosticLogCSP.h -------------------------------------------------------------------------------- /src/SystemConfigurator/CSPs/EnterpriseModernAppManagementCSP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfigurator/CSPs/EnterpriseModernAppManagementCSP.cpp -------------------------------------------------------------------------------- /src/SystemConfigurator/CSPs/EnterpriseModernAppManagementCSP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfigurator/CSPs/EnterpriseModernAppManagementCSP.h -------------------------------------------------------------------------------- /src/SystemConfigurator/CSPs/MdmProvision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfigurator/CSPs/MdmProvision.cpp -------------------------------------------------------------------------------- /src/SystemConfigurator/CSPs/MdmProvision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfigurator/CSPs/MdmProvision.h -------------------------------------------------------------------------------- /src/SystemConfigurator/CSPs/PrivateAPIs/WinSDKRS2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfigurator/CSPs/PrivateAPIs/WinSDKRS2.h -------------------------------------------------------------------------------- /src/SystemConfigurator/CSPs/RebootCSP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfigurator/CSPs/RebootCSP.cpp -------------------------------------------------------------------------------- /src/SystemConfigurator/CSPs/RebootCSP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfigurator/CSPs/RebootCSP.h -------------------------------------------------------------------------------- /src/SystemConfigurator/CSPs/WifiCSP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfigurator/CSPs/WifiCSP.cpp -------------------------------------------------------------------------------- /src/SystemConfigurator/CSPs/WifiCSP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfigurator/CSPs/WifiCSP.h -------------------------------------------------------------------------------- /src/SystemConfigurator/CSPs/WindowsUpdatePolicy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfigurator/CSPs/WindowsUpdatePolicy.cpp -------------------------------------------------------------------------------- /src/SystemConfigurator/CSPs/WindowsUpdatePolicyCSP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfigurator/CSPs/WindowsUpdatePolicyCSP.h -------------------------------------------------------------------------------- /src/SystemConfigurator/CommandProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfigurator/CommandProcessor.cpp -------------------------------------------------------------------------------- /src/SystemConfigurator/CommandProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfigurator/CommandProcessor.h -------------------------------------------------------------------------------- /src/SystemConfigurator/DMService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfigurator/DMService.cpp -------------------------------------------------------------------------------- /src/SystemConfigurator/DMService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfigurator/DMService.h -------------------------------------------------------------------------------- /src/SystemConfigurator/DMStorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfigurator/DMStorage.cpp -------------------------------------------------------------------------------- /src/SystemConfigurator/DMStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfigurator/DMStorage.h -------------------------------------------------------------------------------- /src/SystemConfigurator/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfigurator/Resource.rc -------------------------------------------------------------------------------- /src/SystemConfigurator/ServiceManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfigurator/ServiceManager.cpp -------------------------------------------------------------------------------- /src/SystemConfigurator/ServiceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfigurator/ServiceManager.h -------------------------------------------------------------------------------- /src/SystemConfigurator/SystemConfigurator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfigurator/SystemConfigurator.cpp -------------------------------------------------------------------------------- /src/SystemConfigurator/SystemConfigurator.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfigurator/SystemConfigurator.vcxproj -------------------------------------------------------------------------------- /src/SystemConfigurator/SystemConfigurator.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfigurator/SystemConfigurator.vcxproj.filters -------------------------------------------------------------------------------- /src/SystemConfigurator/SystemConfiguratorProxyServer/SystemConfiguratorProxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfigurator/SystemConfiguratorProxyServer/SystemConfiguratorProxy.cpp -------------------------------------------------------------------------------- /src/SystemConfigurator/SystemConfiguratorProxyServer/SystemConfiguratorProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfigurator/SystemConfiguratorProxyServer/SystemConfiguratorProxy.h -------------------------------------------------------------------------------- /src/SystemConfigurator/TaskQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfigurator/TaskQueue.cpp -------------------------------------------------------------------------------- /src/SystemConfigurator/TaskQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfigurator/TaskQueue.h -------------------------------------------------------------------------------- /src/SystemConfigurator/TimeCfg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfigurator/TimeCfg.cpp -------------------------------------------------------------------------------- /src/SystemConfigurator/TimeCfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfigurator/TimeCfg.h -------------------------------------------------------------------------------- /src/SystemConfigurator/TimeService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfigurator/TimeService.cpp -------------------------------------------------------------------------------- /src/SystemConfigurator/TimeService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfigurator/TimeService.h -------------------------------------------------------------------------------- /src/SystemConfigurator/WindowsTelemetry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfigurator/WindowsTelemetry.cpp -------------------------------------------------------------------------------- /src/SystemConfigurator/WindowsTelemetry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfigurator/WindowsTelemetry.h -------------------------------------------------------------------------------- /src/SystemConfigurator/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfigurator/resource.h -------------------------------------------------------------------------------- /src/SystemConfigurator/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfigurator/stdafx.cpp -------------------------------------------------------------------------------- /src/SystemConfigurator/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfigurator/stdafx.h -------------------------------------------------------------------------------- /src/SystemConfigurator/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfigurator/targetver.h -------------------------------------------------------------------------------- /src/SystemConfiguratorProxy/Client/SCProxyClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfiguratorProxy/Client/SCProxyClient.cpp -------------------------------------------------------------------------------- /src/SystemConfiguratorProxy/Client/SCProxyClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfiguratorProxy/Client/SCProxyClient.h -------------------------------------------------------------------------------- /src/SystemConfiguratorProxy/Client/ServiceConfiguratorProxyClientLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfiguratorProxy/Client/ServiceConfiguratorProxyClientLib.vcxproj -------------------------------------------------------------------------------- /src/SystemConfiguratorProxy/Client/ServiceConfiguratorProxyClientLib.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfiguratorProxy/Client/ServiceConfiguratorProxyClientLib.vcxproj.filters -------------------------------------------------------------------------------- /src/SystemConfiguratorProxy/Client/ServiceConfiguratorProxyInterface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfiguratorProxy/Client/ServiceConfiguratorProxyInterface.c -------------------------------------------------------------------------------- /src/SystemConfiguratorProxy/Client/SystemConfiguratorProxyInterface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfiguratorProxy/Client/SystemConfiguratorProxyInterface.c -------------------------------------------------------------------------------- /src/SystemConfiguratorProxy/Client/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfiguratorProxy/Client/pch.cpp -------------------------------------------------------------------------------- /src/SystemConfiguratorProxy/Client/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfiguratorProxy/Client/pch.h -------------------------------------------------------------------------------- /src/SystemConfiguratorProxy/Interface/SystemConfiguratorProxy.Idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfiguratorProxy/Interface/SystemConfiguratorProxy.Idl -------------------------------------------------------------------------------- /src/SystemConfiguratorProxy/Interface/SystemConfiguratorProxyInterface.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfiguratorProxy/Interface/SystemConfiguratorProxyInterface.vcxproj -------------------------------------------------------------------------------- /src/SystemConfiguratorProxy/Interface/SystemConfiguratorProxyInterface.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/src/SystemConfiguratorProxy/Interface/SystemConfiguratorProxyInterface.vcxproj.filters -------------------------------------------------------------------------------- /tests/CSPTests/CSPTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/CSPTests/CSPTests.cpp -------------------------------------------------------------------------------- /tests/CSPTests/CSPTests.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/CSPTests/CSPTests.vcxproj -------------------------------------------------------------------------------- /tests/CSPTests/CSPTests.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/CSPTests/CSPTests.vcxproj.filters -------------------------------------------------------------------------------- /tests/CSPTests/CertificateManagementTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/CSPTests/CertificateManagementTest.cpp -------------------------------------------------------------------------------- /tests/CSPTests/CertificateManagementTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/CSPTests/CertificateManagementTest.h -------------------------------------------------------------------------------- /tests/CSPTests/DeviceHealthAttestationTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/CSPTests/DeviceHealthAttestationTest.cpp -------------------------------------------------------------------------------- /tests/CSPTests/DeviceHealthAttestationTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/CSPTests/DeviceHealthAttestationTest.h -------------------------------------------------------------------------------- /tests/CSPTests/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/CSPTests/ReadMe.txt -------------------------------------------------------------------------------- /tests/CSPTests/TestUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/CSPTests/TestUtils.cpp -------------------------------------------------------------------------------- /tests/CSPTests/TestUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/CSPTests/TestUtils.h -------------------------------------------------------------------------------- /tests/CSPTests/WifiManagementTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/CSPTests/WifiManagementTest.cpp -------------------------------------------------------------------------------- /tests/CSPTests/WifiManagementTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/CSPTests/WifiManagementTest.h -------------------------------------------------------------------------------- /tests/CSPTests/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/CSPTests/stdafx.cpp -------------------------------------------------------------------------------- /tests/CSPTests/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/CSPTests/stdafx.h -------------------------------------------------------------------------------- /tests/CSPTests/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/CSPTests/targetver.h -------------------------------------------------------------------------------- /tests/DMValidator/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/DMValidator/App.config -------------------------------------------------------------------------------- /tests/DMValidator/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/DMValidator/App.xaml -------------------------------------------------------------------------------- /tests/DMValidator/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/DMValidator/App.xaml.cs -------------------------------------------------------------------------------- /tests/DMValidator/DMValidator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/DMValidator/DMValidator.csproj -------------------------------------------------------------------------------- /tests/DMValidator/DeviceConnectionString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/DMValidator/DeviceConnectionString.cs -------------------------------------------------------------------------------- /tests/DMValidator/IoTHubManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/DMValidator/IoTHubManager.cs -------------------------------------------------------------------------------- /tests/DMValidator/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/DMValidator/Logger.cs -------------------------------------------------------------------------------- /tests/DMValidator/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/DMValidator/MainWindow.xaml -------------------------------------------------------------------------------- /tests/DMValidator/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/DMValidator/MainWindow.xaml.cs -------------------------------------------------------------------------------- /tests/DMValidator/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/DMValidator/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /tests/DMValidator/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/DMValidator/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /tests/DMValidator/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/DMValidator/Properties/Resources.resx -------------------------------------------------------------------------------- /tests/DMValidator/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/DMValidator/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /tests/DMValidator/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/DMValidator/Properties/Settings.settings -------------------------------------------------------------------------------- /tests/DMValidator/TestCases/RebootCmd/RebootCmd.00.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/DMValidator/TestCases/RebootCmd/RebootCmd.00.json -------------------------------------------------------------------------------- /tests/DMValidator/TestCases/RebootInfo/RebootInfo.00.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/DMValidator/TestCases/RebootInfo/RebootInfo.00.json -------------------------------------------------------------------------------- /tests/DMValidator/TestCases/WindowsUpdatePolicy/WindowsUpdatePolicy.00.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/DMValidator/TestCases/WindowsUpdatePolicy/WindowsUpdatePolicy.00.json -------------------------------------------------------------------------------- /tests/DMValidator/TestInfrastructure/DeviceTwinTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/DMValidator/TestInfrastructure/DeviceTwinTestCase.cs -------------------------------------------------------------------------------- /tests/DMValidator/TestInfrastructure/DirectMethodTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/DMValidator/TestInfrastructure/DirectMethodTestCase.cs -------------------------------------------------------------------------------- /tests/DMValidator/TestInfrastructure/JsonHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/DMValidator/TestInfrastructure/JsonHelpers.cs -------------------------------------------------------------------------------- /tests/DMValidator/TestInfrastructure/TestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/DMValidator/TestInfrastructure/TestCase.cs -------------------------------------------------------------------------------- /tests/DMValidator/TestInfrastructure/TestCaseHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/DMValidator/TestInfrastructure/TestCaseHelpers.cs -------------------------------------------------------------------------------- /tests/DMValidator/TestInfrastructure/TestConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/DMValidator/TestInfrastructure/TestConstants.cs -------------------------------------------------------------------------------- /tests/DMValidator/TestInfrastructure/TestParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/DMValidator/TestInfrastructure/TestParameters.cs -------------------------------------------------------------------------------- /tests/DMValidator/TestInfrastructure/TestScenario.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/DMValidator/TestInfrastructure/TestScenario.cs -------------------------------------------------------------------------------- /tests/DMValidator/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/DMValidator/packages.config -------------------------------------------------------------------------------- /tests/E2ETestApp/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/E2ETestApp/App.xaml -------------------------------------------------------------------------------- /tests/E2ETestApp/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/E2ETestApp/App.xaml.cs -------------------------------------------------------------------------------- /tests/E2ETestApp/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/E2ETestApp/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /tests/E2ETestApp/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/E2ETestApp/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /tests/E2ETestApp/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/E2ETestApp/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /tests/E2ETestApp/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/E2ETestApp/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /tests/E2ETestApp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/E2ETestApp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /tests/E2ETestApp/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/E2ETestApp/Assets/StoreLogo.png -------------------------------------------------------------------------------- /tests/E2ETestApp/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/E2ETestApp/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /tests/E2ETestApp/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/E2ETestApp/Constants.cs -------------------------------------------------------------------------------- /tests/E2ETestApp/E2ETestApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/E2ETestApp/E2ETestApp.csproj -------------------------------------------------------------------------------- /tests/E2ETestApp/JsonHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/E2ETestApp/JsonHelpers.cs -------------------------------------------------------------------------------- /tests/E2ETestApp/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/E2ETestApp/MainPage.xaml -------------------------------------------------------------------------------- /tests/E2ETestApp/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/E2ETestApp/MainPage.xaml.cs -------------------------------------------------------------------------------- /tests/E2ETestApp/MockObjects/MockDeviceClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/E2ETestApp/MockObjects/MockDeviceClient.cs -------------------------------------------------------------------------------- /tests/E2ETestApp/MockObjects/MockDeviceClientApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/E2ETestApp/MockObjects/MockDeviceClientApp.cs -------------------------------------------------------------------------------- /tests/E2ETestApp/MockObjects/MockIoTHubDeviceTwinProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/E2ETestApp/MockObjects/MockIoTHubDeviceTwinProxy.cs -------------------------------------------------------------------------------- /tests/E2ETestApp/MockObjects/MockRegistryManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/E2ETestApp/MockObjects/MockRegistryManager.cs -------------------------------------------------------------------------------- /tests/E2ETestApp/MockObjects/MockTwin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/E2ETestApp/MockObjects/MockTwin.cs -------------------------------------------------------------------------------- /tests/E2ETestApp/MockObjects/MockTwinCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/E2ETestApp/MockObjects/MockTwinCollection.cs -------------------------------------------------------------------------------- /tests/E2ETestApp/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/E2ETestApp/Package.appxmanifest -------------------------------------------------------------------------------- /tests/E2ETestApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/E2ETestApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /tests/E2ETestApp/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/E2ETestApp/Properties/Default.rd.xml -------------------------------------------------------------------------------- /tests/E2ETestApp/TestCaseHandlers/DeviceTwinTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/E2ETestApp/TestCaseHandlers/DeviceTwinTestCase.cs -------------------------------------------------------------------------------- /tests/E2ETestApp/TestCaseHandlers/DirectMethodTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/E2ETestApp/TestCaseHandlers/DirectMethodTestCase.cs -------------------------------------------------------------------------------- /tests/E2ETestApp/TestCaseHandlers/SetWindowsUpdateRingAsyncTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/E2ETestApp/TestCaseHandlers/SetWindowsUpdateRingAsyncTestCase.cs -------------------------------------------------------------------------------- /tests/E2ETestApp/TestCaseHandlers/TestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/E2ETestApp/TestCaseHandlers/TestCase.cs -------------------------------------------------------------------------------- /tests/E2ETestApp/TestCaseHandlers/TestScenario.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/E2ETestApp/TestCaseHandlers/TestScenario.cs -------------------------------------------------------------------------------- /tests/E2ETestApp/TestCases/Apps/Apps.00.arm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/E2ETestApp/TestCases/Apps/Apps.00.arm.json -------------------------------------------------------------------------------- /tests/E2ETestApp/TestCases/Apps/Apps.00.x86.RS4.Core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/E2ETestApp/TestCases/Apps/Apps.00.x86.RS4.Core.json -------------------------------------------------------------------------------- /tests/E2ETestApp/TestCases/Apps/Apps.00.x86.RS4.Enterprise.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/E2ETestApp/TestCases/Apps/Apps.00.x86.RS4.Enterprise.json -------------------------------------------------------------------------------- /tests/E2ETestApp/TestCases/Apps/Apps.00.x86.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/E2ETestApp/TestCases/Apps/Apps.00.x86.json -------------------------------------------------------------------------------- /tests/E2ETestApp/TestCases/Apps/Apps.01.list.RS4.Core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/E2ETestApp/TestCases/Apps/Apps.01.list.RS4.Core.json -------------------------------------------------------------------------------- /tests/E2ETestApp/TestCases/Apps/Apps.01.list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/E2ETestApp/TestCases/Apps/Apps.01.list.json -------------------------------------------------------------------------------- /tests/E2ETestApp/TestCases/Certificates/Certificates.00.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/E2ETestApp/TestCases/Certificates/Certificates.00.json -------------------------------------------------------------------------------- /tests/E2ETestApp/TestCases/DeviceInfo/DeviceInfo.MBM.00.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/E2ETestApp/TestCases/DeviceInfo/DeviceInfo.MBM.00.json -------------------------------------------------------------------------------- /tests/E2ETestApp/TestCases/DeviceInfo/DeviceInfo.RPI2.00.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/E2ETestApp/TestCases/DeviceInfo/DeviceInfo.RPI2.00.json -------------------------------------------------------------------------------- /tests/E2ETestApp/TestCases/Diagnostic Logs/DiagnosticLogs.00.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/E2ETestApp/TestCases/Diagnostic Logs/DiagnosticLogs.00.json -------------------------------------------------------------------------------- /tests/E2ETestApp/TestCases/RebootCmd/RebootCmd.00.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/E2ETestApp/TestCases/RebootCmd/RebootCmd.00.json -------------------------------------------------------------------------------- /tests/E2ETestApp/TestCases/RebootInfo/RebootInfo.00.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/E2ETestApp/TestCases/RebootInfo/RebootInfo.00.json -------------------------------------------------------------------------------- /tests/E2ETestApp/TestCases/TimeInfo/TimeInfo.00.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/E2ETestApp/TestCases/TimeInfo/TimeInfo.00.json -------------------------------------------------------------------------------- /tests/E2ETestApp/TestCases/TimeService/TimeService.00.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/E2ETestApp/TestCases/TimeService/TimeService.00.json -------------------------------------------------------------------------------- /tests/E2ETestApp/TestCases/WiFi/WiFi.00.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/E2ETestApp/TestCases/WiFi/WiFi.00.json -------------------------------------------------------------------------------- /tests/E2ETestApp/TestCases/WindowsTelemetry/WindowsTelemetry.00.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/E2ETestApp/TestCases/WindowsTelemetry/WindowsTelemetry.00.json -------------------------------------------------------------------------------- /tests/E2ETestApp/TestCases/WindowsUpdatePolicy/WindowsUpdatePolicy.IoTCoreOnly.Ring.00.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/E2ETestApp/TestCases/WindowsUpdatePolicy/WindowsUpdatePolicy.IoTCoreOnly.Ring.00.json -------------------------------------------------------------------------------- /tests/E2ETestApp/TestCases/WindowsUpdatePolicy/WindowsUpdatePolicy.NoRing.00.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/E2ETestApp/TestCases/WindowsUpdatePolicy/WindowsUpdatePolicy.NoRing.00.json -------------------------------------------------------------------------------- /tests/E2ETestApp/TestCases/WindowsUpdates/WindowsUpdates.00.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/E2ETestApp/TestCases/WindowsUpdates/WindowsUpdates.00.json -------------------------------------------------------------------------------- /tests/E2ETestApp/TestInfrastructure/TestCaseEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/E2ETestApp/TestInfrastructure/TestCaseEnumerator.cs -------------------------------------------------------------------------------- /tests/E2ETestApp/TestInfrastructure/TestCaseHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/E2ETestApp/TestInfrastructure/TestCaseHelpers.cs -------------------------------------------------------------------------------- /tests/E2ETestApp/TestInfrastructure/TestNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/E2ETestApp/TestInfrastructure/TestNode.cs -------------------------------------------------------------------------------- /tests/E2ETestApp/TestInfrastructure/TestParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/E2ETestApp/TestInfrastructure/TestParameters.cs -------------------------------------------------------------------------------- /tests/E2ETestApp/XamlConverters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/E2ETestApp/XamlConverters.cs -------------------------------------------------------------------------------- /tests/IoTDMClientLibTests/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/IoTDMClientLibTests/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /tests/IoTDMClientLibTests/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/IoTDMClientLibTests/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /tests/IoTDMClientLibTests/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/IoTDMClientLibTests/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /tests/IoTDMClientLibTests/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/IoTDMClientLibTests/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /tests/IoTDMClientLibTests/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/IoTDMClientLibTests/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /tests/IoTDMClientLibTests/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/IoTDMClientLibTests/Assets/StoreLogo.png -------------------------------------------------------------------------------- /tests/IoTDMClientLibTests/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/IoTDMClientLibTests/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /tests/IoTDMClientLibTests/DMMessageTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/IoTDMClientLibTests/DMMessageTests.cs -------------------------------------------------------------------------------- /tests/IoTDMClientLibTests/DeviceHealthAttestationTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/IoTDMClientLibTests/DeviceHealthAttestationTest.cs -------------------------------------------------------------------------------- /tests/IoTDMClientLibTests/DeviceManagementClientTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/IoTDMClientLibTests/DeviceManagementClientTests.cs -------------------------------------------------------------------------------- /tests/IoTDMClientLibTests/IoTDMClientLibTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/IoTDMClientLibTests/IoTDMClientLibTests.csproj -------------------------------------------------------------------------------- /tests/IoTDMClientLibTests/IoTDMClientLibTests_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/IoTDMClientLibTests/IoTDMClientLibTests_TemporaryKey.pfx -------------------------------------------------------------------------------- /tests/IoTDMClientLibTests/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/IoTDMClientLibTests/Package.appxmanifest -------------------------------------------------------------------------------- /tests/IoTDMClientLibTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/IoTDMClientLibTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /tests/IoTDMClientLibTests/Properties/UnitTestApp.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/IoTDMClientLibTests/Properties/UnitTestApp.rd.xml -------------------------------------------------------------------------------- /tests/IoTDMClientLibTests/UnitTestApp.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/IoTDMClientLibTests/UnitTestApp.xaml -------------------------------------------------------------------------------- /tests/IoTDMClientLibTests/UnitTestApp.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/IoTDMClientLibTests/UnitTestApp.xaml.cs -------------------------------------------------------------------------------- /tests/IoTHubManager/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/IoTHubManager/App.config -------------------------------------------------------------------------------- /tests/IoTHubManager/IoTHubManager.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/IoTHubManager/IoTHubManager.csproj -------------------------------------------------------------------------------- /tests/IoTHubManager/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/IoTHubManager/Program.cs -------------------------------------------------------------------------------- /tests/IoTHubManager/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/IoTHubManager/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /tests/IoTHubManager/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/iot-core-azure-dm-client/HEAD/tests/IoTHubManager/packages.config --------------------------------------------------------------------------------