API di Windows Runtime non supportate nelle app desktop
Sebbene sia possibile usare la maggior parte delle API Windows Runtime (WinRT) (vedi Spazi dei nomi UWP Windows) nell'app desktop C# o C++, esistono due set principali di API WinRT non supportate nelle app desktop o che presentano restrizioni:
- API con dipendenze dalle funzionalità dell'interfaccia utente progettate per l'uso solo in un'app UWP (Universal Windows Platform).
- API che richiedono l'identità del pacchetto (vedi Funzionalità che richiedono l'identità del pacchetto). Tali API sono supportate solo nelle app desktop incluse in pacchetti con MSIX.
Questo articolo fornisce informazioni dettagliate su entrambi i set di API WinRT. Se disponibile, questo articolo suggerisce API alternative per ottenere le stesse funzionalità delle API non supportate nelle app desktop. La maggior parte delle API alternative è disponibile in WinUI 3 o tramite interfacce COM WinRT disponibili in Windows SDK.
Nota
Le app che usano .NET possono usare le implementazioni di classi fornite per alcune delle interfacce COM WinRT elencate in questo articolo. Queste classi sono più facili da usare rispetto all'utilizzo diretto delle interfacce COM WinRT. Per altre informazioni sulle implementazioni di classi disponibili, vedi Chiamare API di interoperabilità da un'app .NET. Nota che queste classi richiedono .NET 6 SDK o versione successiva.
Questo articolo verrà aggiornato man mano che vengono identificate altre soluzioni alternative e sostituzioni. Se si verifica un problema con un'API non elencata qui, crea un problema nel repository microsoft-ui-xaml con il nome dell'API e i dettagli su ciò che speri di ottenere usandolo.
API con dipendenze dalle funzionalità dell'interfaccia utente solo UWP
Alcune API WinRT sono state progettate appositamente per gli scenari di interfaccia utente in un'app UWP. Queste API non si comportano correttamente nelle app desktop a causa del modello di threading e di altre differenze di piattaforma. Queste API e altre API WinRT con dipendenze non sono supportate per l'uso nelle app desktop.
Classi core non supportate
Queste classi WinRT non sono supportate nelle app desktop:
Classe | API alternative |
---|---|
ApplicationView | Nessuno |
CoreApplicationView | Usa invece la classe Window fornita da WinUI 3. |
CoreApplicationViewTitleBar | Anziché la proprietà ExtendViewIntoTitleBar, utilizza la proprietà Window.ExtendsContentIntoTitleBar fornita da WinUI 3. |
CoreDispatcher | Usa invece la proprietà Microsoft.UI.Xaml.Window.DispatcherQueue fornita da WinUI 3. Nota che le proprietà Windows.UI.Xaml.Window.Dispatcher e Windows.UI.Xaml.DependencyObject.Dispatcher restituiscono null in un'app desktop. |
CoreWindow | Vedi anche la sezione Classi che implementano IInitializeWithWindow di seguito. Anziché il metodo GetKeyState, usa il metodo InputKeyboardSource.GetKeyStateForCurrentThread fornito da WinUI 3. Anziché la proprietà PointerCursor, usa la proprietà UIElement.ProtectedCursor fornita da WinUI 3. Per accedere a tale proprietà, è necessario avere una sottoclasse di UIElement. |
UserActivity | Usa invece l'interfaccia COM IUserActivitySourceHostInterop (in useractivityinterop.h ). |
Per altre API WinRT non supportate nelle app desktop, vedi Membri non supportati più avanti in questo argomento.
Classi con un metodo XxxForCurrentView
Molte classi WinRT hanno un metodo GetForCurrentView o CreateForCurrentView statico, ad esempio UIViewSettings.GetForCurrentView. Questi metodi XxxForCurrentView hanno una dipendenza implicita dal tipo ApplicationView, che non è supportato nelle app desktop. Poiché ApplicationView non è supportato nelle app desktop, nessuno dei metodi XxxForCurrentView è supportato. Alcuni metodi XxxForCurrentView non supportati non solo restituiscono null
, ma generano anche eccezioni.
Nota
CoreInputView.GetForCurrentView è supportato nelle app desktop e può essere usato anche senza CoreWindow. È possibile utilizzare questo metodo per recuperare un oggetto CoreInputView in qualsiasi thread e, se tale thread ha una finestra in primo piano, tale oggetto genererà eventi.
Le classi seguenti sono supportate in app desktop, ma per recuperare un'istanza di una di queste in un'app desktop, si usa un meccanismo diverso dai metodi GetForCurrentView o CreateForCurrentView. Per le classi seguenti che hanno un'interfaccia COM elencata come API alternativa, gli sviluppatori C# possono usare anche queste interfacce COM WinRT (vedi Chiamare le API di interoperabilità da un'app .NET). L'elenco potrebbe non essere completo.
Classe | API alternative |
---|---|
AccountsSettingsPane | Usa invece l'interfaccia COM IAccountsSettingsPaneInterop (in accountssettingspaneinterop.h ). |
CoreDragDropManager | Usa invece l'interfaccia COM IDragDropManagerInterop (in dragdropinterop.h ). |
CoreTextServicesManager | Questa classe è attualmente supportata nelle app desktop solo nelle build di anteprima Windows Insider. |
DataTransferManager | Usa invece l'interfaccia COM IDataTransferManagerInterop (in shobjidl_core.h ). |
DisplayInformation | Per recuperare un'istanza di DisplayInformation, usa l'interfaccia IDisplayInformationStaticsInterop. In alternativa, invece della proprietà LogicalDpi, puoi usare la proprietà XamlRoot.RasterizationScale e ascoltare le modifiche tramite l'evento XamlRoot.Changed (la proprietà XamlRoot.RasterizationScaleviene fornita in WinUI 3). Invece della proprietà RawPixelsPerViewPixel, puoi usare la proprietà XamlRoot.RasterizationScale fornita da WinUI 3. |
InputPane | Usa invece l'interfaccia COM IInputPaneInterop (in inputpaneinterop.h ). |
PlayToManager | Usa invece l'interfaccia COM IPlayToManagerInterop (in playtomanagerinterop.h ). |
Print3DManager | Usa invece l'interfaccia COM IPrinting3DManagerInterop (in print3dmanagerinterop.h ). |
PrintManager | Usare invece l'interfaccia COM IPrintManagerInterop (in printmanagerinterop.h ). |
RadialController | Usa invece l'interfaccia COM IRadialControllerInterop (in radialcontrollerinterop.h ). |
RadialControllerConfiguration | Usa invece l'interfaccia COM IRadialControllerConfigurationInterop (in radialcontrollerinterop.h ). |
ResourceContext | Vedi Migrazione da MRT a MRT Core. |
ResourceLoader | Vedi Migrazione da MRT a MRT Core. |
SpatialInteractionManager | Usa invece l'interfaccia COM ISpatialInteractionManagerInterop (in spatialinteractionmanagerinterop.h ). |
SystemMediaTransportControls | Usa invece l'interfaccia COM ISystemMediaTransportControlsInterop (in systemmediatransportcontrolsinterop.h ). |
UserActivityRequestManager | Usare invece l'interfaccia COM IUserActivityRequestManagerInterop (in useractivityinterop.h ). |
UIViewSettings | Usa invece l'interfaccia COM IUIViewSettingsInterop (in uiviewsettingsinterop.h ). |
Le classi seguenti non sono supportate nelle app desktop perché le API non forniscono un'alternativa al metodo GetForCurrentView o CreateForCurrentView. L'elenco potrebbe non essere completo.
Classe | API alternative |
---|---|
AppCapture | Nessuno |
BrightnessOverride | Nessuno |
ConnectedAnimationService | Nessuno |
CoreInputView | Nessuno |
CoreWindowResizeManager | Nessuno |
DisplayEnhancementOverride | Nessuno |
EdgeGesture | Nessuno |
GazeInputSourcePreview | Nessuno |
HdmiDisplayInformation | Nessuno |
HolographicKeyboardPlacementOverridePreview | Nessuno |
KeyboardDeliveryInterceptor | Nessuno |
LockApplicationHost | Nessuno |
MouseDevice | Nessuno |
PointerVisualizationSettings | Nessuno |
ProtectionPolicyManager | Nessuno |
SearchPane | Nessuno |
SettingsPane | Nessuno |
SystemNavigationManager | Nessuno |
SystemNavigationManagerPreview | Nessuno |
WebAuthenticationBroker | Nessuno. Per altre informazioni, vedi il problema GitHub WebAuthenticationBroker.AuthenticateAsync genera COMException. |
Classi che implementano IInitializeWithWindow
Alcuni strumenti di selezione, popup, finestre di dialogo e altri oggetti Windows Runtime (WinRT) dipendono da CoreWindow, in genere per visualizzare un'interfaccia utente. Anche se CoreWindow non è supportato nelle app desktop (vedi sopra Classi core non supportate), puoi comunque usare molte di queste classi WinRT nell'app desktop aggiungendo una parte del codice di interoperabilità.
Per altre info (incluso un elenco di tipi interessati) ed esempi di codice, vedi Visualizzare gli oggetti dell'interfaccia utente WinRT che dipendono da CoreWindow.
Membri non supportati
Questa sezione elenca, o descrive, (un elenco completo non è possibile) membri specifici delle classi WinRT che non sono supportate per l'uso nelle app desktop. Se non diversamente specificato, le altre classi a parte questi membri sono supportate nelle app desktop.
evento
Le classi seguenti sono supportate nelle app desktop, ad eccezione degli eventi specificati.
Classe | Eventi non supportati |
---|---|
UISettings | ColorValuesChanged |
AccessibilitySettings | HighContrastChanged |
Metodi
Le classi seguenti sono supportate nelle app desktop, ad eccezione dei metodi specificati.
Classe | Metodi non supportati |
---|---|
DeviceInformationPairing | PairAsync |
Metodi che usano il modello di denominazione delle richieste
La maggior parte dei metodi che seguono il modello di denominazione Request - come AppCapability.RequestAccessAsync e StoreContext.RequestPurchaseAsync- non sono supportati nelle applicazioni desktop. Internamente, questi metodi usano la classe Windows.UI.Popups. Tale classe richiede che il thread abbia un oggetto CoreWindow, che non è supportato nelle app desktop.
L'elenco completo dei metodi che seguono il modello di denominazione delle richieste è molto lungo e questo articolo non fornisce un elenco completo di tali metodi.
API che richiedono l'identità del pacchetto
Le classi WinRT seguenti richiedono l'identità del pacchetto (vedi Funzionalità che richiedono l'identità del pacchetto). Queste API sono supportate solo nelle app desktop incluse in un pacchetto, ovvero con identità del pacchetto in fase di esecuzione. L'elenco potrebbe non essere completo.
- Windows.ApplicationModel.DataTransfer.DataProviderHandler
- Windows.ApplicationModel.DataTransfer.DataRequest
- Windows.ApplicationModel.DataTransfer.DataRequestDeferral
- Windows.ApplicationModel.DataTransfer.DataRequestedEventArgs
- Windows.ApplicationModel.DataTransfer.DataTransferManager
- Windows.ApplicationModel.DataTransfer.SharedStorageAccessManager
- Windows.ApplicationModel.DataTransfer.TargetApplicationChosenEventArgs
- Windows.ApplicationModel.Resources.Core.NamedResource
- Windows.ApplicationModel.Resources.Core.ResourceCandidate
- Windows.ApplicationModel.Resources.Core.ResourceCandidateVectorView
- Windows.ApplicationModel.Resources.Core.ResourceContext
- Windows.ApplicationModel.Resources.Core.ResourceContextLanguagesVectorView
- Windows.ApplicationModel.Resources.Core.ResourceManager
- Windows.ApplicationModel.Resources.Core.ResourceMap
- Windows.ApplicationModel.Resources.Core.ResourceMapIterator
- Windows.ApplicationModel.Resources.Core.ResourceMapMapView
- Windows.ApplicationModel.Resources.Core.ResourceMapMapViewIterator
- Windows.ApplicationModel.Resources.Core.ResourceQualifier
- Windows.ApplicationModel.Resources.Core.ResourceQualifierMapView
- Windows.ApplicationModel.Resources.Core.ResourceQualifierObservableMap
- Windows.ApplicationModel.Resources.Core.ResourceQualifierVectorView
- Windows.ApplicationModel.Resources.ResourceLoader
- Windows.Data.Pdf.PdfDocument
- Windows.Data.Pdf.PdfPage
- Windows.Data.Pdf.PdfPageDimensions
- Windows.Data.Pdf.PdfPageRenderOptions
- Windows.Data.Text.SelectableWordSegmentsTokenizingHandler
- Windows.Data.Text.SemanticTextQuery
- Windows.Data.Text.TextConversionGenerator
- Windows.Data.Text.TextPredictionGenerator
- Windows.Data.Text.TextReverseConversionGenerator
- Windows.Data.Text.WordSegmentsTokenizingHandler
- Windows.Data.Xml.Dom.DtdEntity
- Windows.Data.Xml.Dom.DtdNotation
- Windows.Data.Xml.Dom.XmlAttribute
- Windows.Data.Xml.Dom.XmlCDataSection
- Windows.Data.Xml.Dom.XmlComment
- Windows.Data.Xml.Dom.XmlDocument
- Windows.Data.Xml.Dom.XmlDocumentFragment
- Windows.Data.Xml.Dom.XmlDocumentType
- Windows.Data.Xml.Dom.XmlDomImplementation
- Windows.Data.Xml.Dom.XmlElement
- Windows.Data.Xml.Dom.XmlEntityReference
- Windows.Data.Xml.Dom.XmlLoadSettings
- Windows.Data.Xml.Dom.XmlNamedNodeMap
- Windows.Data.Xml.Dom.XmlNodeList
- Windows.Data.Xml.Dom.XmlProcessingInstruction
- Windows.Data.Xml.Dom.XmlText
- Windows.Data.Xml.Xsl.XsltProcessor
- Windows.Devices.Input.KeyboardCapabilities
- Windows.Devices.Input.MouseCapabilities
- Windows.Devices.Input.MouseDevice
- Windows.Devices.Input.MouseEventArgs
- Windows.Devices.Input.PointerDevice
- Windows.Devices.Input.TouchCapabilities
- Windows.Devices.Lights.Lamp
- Windows.Devices.Lights.LampAvailabilityChangedEventArgs
- Windows.Devices.Perception.Provider.PerceptionStartFaceAuthenticationHandler
- Windows.Devices.Perception.Provider.PerceptionStopFaceAuthenticationHandler
- Windows.Devices.PointOfService.MagneticStripeReader
- Windows.Devices.PointOfService.MagneticStripeReaderAamvaCardDataReceivedEventArgs
- Windows.Devices.PointOfService.MagneticStripeReaderBankCardDataReceivedEventArgs
- Windows.Devices.PointOfService.MagneticStripeReaderCapabilities
- Windows.Devices.PointOfService.MagneticStripeReaderCardTypes
- Windows.Devices.PointOfService.MagneticStripeReaderEncryptionAlgorithms
- Windows.Devices.PointOfService.MagneticStripeReaderErrorOccurredEventArgs
- Windows.Devices.PointOfService.MagneticStripeReaderReport
- Windows.Devices.PointOfService.MagneticStripeReaderStatusUpdatedEventArgs
- Windows.Devices.PointOfService.MagneticStripeReaderTrackData
- Windows.Devices.PointOfService.MagneticStripeReaderVendorSpecificCardDataReceivedEventArgs
- Windows.Devices.Portable.ServiceDevice
- Windows.Devices.Portable.StorageDevice
- Windows.Devices.Printers.Print3DDevice
- Windows.Devices.Printers.PrintSchema
- Windows.Devices.SmartCards.SmartCard
- Windows.Devices.SmartCards.SmartCardConnection
- Windows.Devices.SmartCards.SmartCardReader
- Windows.Foundation.AsyncActionCompletedHandler
- Windows.Foundation.AsyncActionProgressHandler<TProgress>
- Windows.Foundation.AsyncActionWithProgressCompletedHandler<TProgress>
- Windows.Foundation.AsyncOperationCompletedHandler<TProgress>
- Windows.Foundation.Collections.VectorChangedEventHandler<T>
- Windows.Foundation.DeferralCompletedHandler
- Windows.Foundation.Diagnostics.FileLoggingSession
- Windows.Foundation.Diagnostics.LogFileGeneratedEventArgs
- Windows.Foundation.Diagnostics.LoggingActivity
- Windows.Foundation.Diagnostics.LoggingChannel
- Windows.Foundation.Diagnostics.LoggingChannelOptions
- Windows.Foundation.Diagnostics.LoggingFields
- Windows.Foundation.Diagnostics.LoggingOptions
- Windows.Foundation.Diagnostics.LoggingSession
- Windows.Foundation.EventHandler<T>
- Windows.Foundation.MemoryBuffer
- Windows.Globalization.ApplicationLanguages
- Windows.Globalization.JapanesePhoneme
- Windows.Globalization.JapanesePhoneticAnalyzer
- Windows.Globalization.PhoneNumberFormatting.PhoneNumberFormatter
- Windows.Globalization.PhoneNumberFormatting.PhoneNumberInfo
- Windows.Graphics.Imaging.BitmapBuffer
- Windows.Graphics.Imaging.BitmapCodecInformation
- Windows.Graphics.Imaging.BitmapDecoder
- Windows.Graphics.Imaging.BitmapEncoder
- Windows.Graphics.Imaging.BitmapFrame
- Windows.Graphics.Imaging.BitmapProperties
- Windows.Graphics.Imaging.BitmapPropertiesView
- Windows.Graphics.Imaging.BitmapPropertySet
- Windows.Graphics.Imaging.BitmapTransform
- Windows.Graphics.Imaging.BitmapTypedValue
- Windows.Graphics.Imaging.ImageStream
- Windows.Graphics.Imaging.PixelDataProvider
- Windows.Graphics.Imaging.SoftwareBitmap
- Windows.Graphics.Printing3D.Print3DTaskRequestedEventArgs
- Windows.Graphics.Printing3D.Print3DTaskSourceRequestedHandler
- Windows.Graphics.Printing3D.Printing3D3MFPackage
- Windows.Graphics.Printing3D.Printing3DBaseMaterial
- Windows.Graphics.Printing3D.Printing3DBaseMaterialGroup
- Windows.Graphics.Printing3D.Printing3DColorMaterial
- Windows.Graphics.Printing3D.Printing3DColorMaterialGroup
- Windows.Graphics.Printing3D.Printing3DComponent
- Windows.Graphics.Printing3D.Printing3DComponentWithMatrix
- Windows.Graphics.Printing3D.Printing3DCompositeMaterial
- Windows.Graphics.Printing3D.Printing3DCompositeMaterialGroup
- Windows.Graphics.Printing3D.Printing3DFaceReductionOptions
- Windows.Graphics.Printing3D.Printing3DMaterial
- Windows.Graphics.Printing3D.Printing3DMesh
- Windows.Graphics.Printing3D.Printing3DMeshVerificationResult
- Windows.Graphics.Printing3D.Printing3DModel
- Windows.Graphics.Printing3D.Printing3DModelTexture
- Windows.Graphics.Printing3D.Printing3DMultiplePropertyMaterial
- Windows.Graphics.Printing3D.Printing3DMultiplePropertyMaterialGroup
- Windows.Graphics.Printing3D.Printing3DTexture2CoordMaterial
- Windows.Graphics.Printing3D.Printing3DTexture2CoordMaterialGroup
- Windows.Graphics.Printing3D.Printing3DTextureResource
- Windows.Management.Core.ApplicationDataManager
- Windows.Management.Deployment.DeploymentResult
- Windows.Management.Deployment.PackageManager
- Windows.Management.Deployment.PackageUserInformation
- Windows.Management.Deployment.PackageVolume
- Windows.Management.Workplace.MdmPolicy
- Windows.Management.Workplace.WorkplaceSettings
- Windows.Media.AudioBuffer
- Windows.Media.Capture.AdvancedCapturedPhoto
- Windows.Media.Capture.AppCaptureAlternateShortcutKeys
- Windows.Media.Capture.AppCaptureManager
- Windows.Media.Capture.AppCaptureSettings
- Windows.Media.Capture.CapturedFrame
- Windows.Media.Capture.MediaCaptureFailedEventArgs
- Windows.Media.Capture.MediaCaptureFailedEventHandler
- Windows.Media.Capture.MediaCapturePauseResult
- Windows.Media.Capture.MediaCaptureStopResult
- Windows.Media.Capture.OptionalReferencePhotoCapturedEventArgs
- Windows.Media.Capture.RecordLimitationExceededEventHandler
- Windows.Media.ClosedCaptioning.ClosedCaptionProperties
- Windows.Media.Devices.DefaultAudioCaptureDeviceChangedEventArgs
- Windows.Media.Devices.DefaultAudioRenderDeviceChangedEventArgs
- Windows.Media.Devices.MediaDevice
- Windows.Media.DialProtocol.DialApp
- Windows.Media.DialProtocol.DialAppStateDetails
- Windows.Media.DialProtocol.DialDevice
- Windows.Media.FaceAnalysis.DetectedFace
- Windows.Media.FaceAnalysis.FaceDetector
- Windows.Media.FaceAnalysis.FaceTracker
- Windows.Media.MediaExtensionManager
- Windows.Media.MediaProperties.H264ProfileIds
- Windows.Media.MediaProperties.MediaEncodingSubtypes
- Windows.Media.MediaProperties.Mpeg2ProfileIds
- Windows.Media.Ocr.OcrEngine
- Windows.Media.Ocr.OcrLine
- Windows.Media.Ocr.OcrResult
- Windows.Media.Ocr.OcrWord
- Windows.Media.Playback.PlaybackMediaMarker
- Windows.Media.Playback.PlaybackMediaMarkerReachedEventArgs
- Windows.Media.Playback.PlaybackMediaMarkerSequence
- Windows.Media.SpeechRecognition.SpeechContinuousRecognitionCompletedEventArgs
- Windows.Media.SpeechRecognition.SpeechContinuousRecognitionResultGeneratedEventArgs
- Windows.Media.SpeechRecognition.SpeechContinuousRecognitionSession
- Windows.Media.SpeechRecognition.SpeechRecognitionCompilationResult
- Windows.Media.SpeechRecognition.SpeechRecognitionGrammarFileConstraint
- Windows.Media.SpeechRecognition.SpeechRecognitionHypothesis
- Windows.Media.SpeechRecognition.SpeechRecognitionHypothesisGeneratedEventArgs
- Windows.Media.SpeechRecognition.SpeechRecognitionListConstraint
- Windows.Media.SpeechRecognition.SpeechRecognitionQualityDegradingEventArgs
- Windows.Media.SpeechRecognition.SpeechRecognitionResult
- Windows.Media.SpeechRecognition.SpeechRecognitionSemanticInterpretation
- Windows.Media.SpeechRecognition.SpeechRecognitionTopicConstraint
- Windows.Media.SpeechRecognition.SpeechRecognitionVoiceCommandDefinitionConstraint
- Windows.Media.SpeechRecognition.SpeechRecognizer
- Windows.Media.SpeechRecognition.SpeechRecognizerStateChangedEventArgs
- Windows.Media.SpeechRecognition.SpeechRecognizerTimeouts
- Windows.Media.SpeechRecognition.SpeechRecognizerUIOptions
- Windows.Media.SpeechSynthesis.SpeechSynthesisStream
- Windows.Media.SpeechSynthesis.SpeechSynthesizer
- Windows.Media.SpeechSynthesis.VoiceInformation
- Windows.Networking.PushNotifications.PushNotificationChannel
- Windows.Networking.PushNotifications.PushNotificationChannelManager
- Windows.Networking.PushNotifications.PushNotificationReceivedEventArgs
- Windows.Networking.PushNotifications.RawNotification
- Windows.Networking.Sockets.DatagramSocketMessageReceivedEventArgs
- Windows.Networking.Sockets.MessageWebSocketMessageReceivedEventArgs
- Windows.Services.Maps.Guidance.GuidanceAudioNotificationRequestedEventArgs
- Windows.Services.Maps.Guidance.GuidanceLaneInfo
- Windows.Services.Maps.Guidance.GuidanceManeuver
- Windows.Services.Maps.Guidance.GuidanceMapMatchedCoordinate
- Windows.Services.Maps.Guidance.GuidanceNavigator
- Windows.Services.Maps.Guidance.GuidanceReroutedEventArgs
- Windows.Services.Maps.Guidance.GuidanceRoadSegment
- Windows.Services.Maps.Guidance.GuidanceRoadSignpost
- Windows.Services.Maps.Guidance.GuidanceRoute
- Windows.Services.Maps.Guidance.GuidanceTelemetryCollector
- Windows.Services.Maps.Guidance.GuidanceUpdatedEventArgs
- Windows.Services.Maps.LocalSearch.LocalCategories
- Windows.Services.Maps.LocalSearch.LocalLocation
- Windows.Services.Maps.LocalSearch.LocalLocationFinder
- Windows.Services.Maps.LocalSearch.LocalLocationFinderResult
- Windows.Services.Maps.LocalSearch.LocalLocationHoursOfOperationItem
- Windows.Services.Maps.LocalSearch.LocalLocationRatingInfo
- Windows.Services.Maps.MapAddress
- Windows.Services.Maps.MapLocation
- Windows.Services.Maps.MapLocationFinder
- Windows.Services.Maps.MapLocationFinderResult
- Windows.Services.Maps.MapManager
- Windows.Services.Maps.MapRoute
- Windows.Services.Maps.MapRouteDrivingOptions
- Windows.Services.Maps.MapRouteFinder
- Windows.Services.Maps.MapRouteFinderResult
- Windows.Services.Maps.MapRouteLeg
- Windows.Services.Maps.MapRouteManeuver
- Windows.Services.Maps.MapService
- Windows.Services.Store.StoreAcquireLicenseResult
- Windows.Services.Store.StoreAppLicense
- Windows.Services.Store.StoreAvailability
- Windows.Services.Store.StoreCollectionData
- Windows.Services.Store.StoreConsumableResult
- Windows.Services.Store.StoreContext
- Windows.Services.Store.StoreImage
- Windows.Services.Store.StoreLicense
- Windows.Services.Store.StorePackageLicense
- Windows.Services.Store.StorePackageUpdate
- Windows.Services.Store.StorePackageUpdateResult
- Windows.Services.Store.StorePrice
- Windows.Services.Store.StoreProduct
- Windows.Services.Store.StoreProductPagedQueryResult
- Windows.Services.Store.StoreProductQueryResult
- Windows.Services.Store.StoreProductResult
- Windows.Services.Store.StorePurchaseProperties
- Windows.Services.Store.StorePurchaseResult
- Windows.Services.Store.StoreRequestHelper
- Windows.Services.Store.StoreSendRequestResult
- Windows.Services.Store.StoreSku
- Windows.Services.Store.StoreVideo
- Windows.Storage.AccessCache.StorageApplicationPermissions
- Windows.Storage.ApplicationData
- Windows.Storage.ApplicationDataSetVersionHandler
- Windows.Storage.CachedFileManager
- Windows.Storage.DownloadsFolder
- Windows.Storage.FileIO
- Windows.Storage.FileProperties.BasicProperties
- Windows.Storage.FileProperties.DocumentProperties
- Windows.Storage.FileProperties.ImageProperties
- Windows.Storage.FileProperties.MusicProperties
- Windows.Storage.FileProperties.StorageItemContentProperties
- Windows.Storage.FileProperties.StorageItemThumbnail
- Windows.Storage.FileProperties.VideoProperties
- Windows.Storage.KnownFolders
- Windows.Storage.PathIO
- Windows.Storage.StorageFile
- Windows.Storage.StorageFolder
- Windows.Storage.StorageLibrary
- Windows.Storage.StorageProvider
- Windows.Storage.StorageStreamTransaction
- Windows.Storage.StreamedFileDataRequest
- Windows.Storage.StreamedFileDataRequestedHandler
- Windows.Storage.Streams.Buffer
- Windows.Storage.Streams.DataReader
- Windows.Storage.Streams.DataReaderLoadOperation
- Windows.Storage.Streams.DataWriter
- Windows.Storage.Streams.DataWriterStoreOperation
- Windows.Storage.Streams.FileInputStream
- Windows.Storage.Streams.FileOutputStream
- Windows.Storage.Streams.FileRandomAccessStream
- Windows.Storage.Streams.InMemoryRandomAccessStream
- Windows.Storage.Streams.InputStreamOverStream
- Windows.Storage.Streams.OutputStreamOverStream
- Windows.Storage.Streams.RandomAccessStream
- Windows.Storage.Streams.RandomAccessStreamOverStream
- Windows.Storage.Streams.RandomAccessStreamReference
- Windows.Storage.SystemAudioProperties
- Windows.Storage.SystemGPSProperties
- Windows.Storage.SystemImageProperties
- Windows.Storage.SystemMediaProperties
- Windows.Storage.SystemMusicProperties
- Windows.Storage.SystemPhotoProperties
- Windows.Storage.SystemProperties
- Windows.Storage.SystemVideoProperties
- Windows.System.Diagnostics.ProcessCpuUsage
- Windows.System.Diagnostics.ProcessCpuUsageReport
- Windows.System.Diagnostics.ProcessDiagnosticInfo
- Windows.System.Diagnostics.ProcessDiskUsage
- Windows.System.Diagnostics.ProcessDiskUsageReport
- Windows.System.Diagnostics.ProcessMemoryUsage
- Windows.System.Diagnostics.ProcessMemoryUsageReport
- Windows.System.Profile.AnalyticsInfo
- Windows.System.Profile.AnalyticsVersionInfo
- Windows.System.Threading.Core.PreallocatedWorkItem
- Windows.System.Threading.Core.SignalHandler
- Windows.System.Threading.Core.SignalNotifier
- Windows.System.Threading.ThreadPool
- Windows.System.Threading.ThreadPoolTimer
- Windows.System.Threading.TimerDestroyedHandler
- Windows.System.Threading.TimerElapsedHandler
- Windows.System.Threading.WorkItemHandler
- Windows.System.TimeZoneSettings
- Windows.UI.Notifications.BadgeNotification
- Windows.UI.Notifications.BadgeUpdateManager
- Windows.UI.Notifications.BadgeUpdater
- Windows.UI.Notifications.ScheduledTileNotification
- Windows.UI.Notifications.ScheduledToastNotification
- Windows.UI.Notifications.TileNotification
- Windows.UI.Notifications.TileUpdateManager
- Windows.UI.Notifications.TileUpdater
- Windows.UI.Notifications.ToastNotificationHistory
- Windows.UI.StartScreen.JumpList
- Windows.UI.StartScreen.JumpListItem
Inoltre, quando chiamati da un'app desktop che non dispone dell'identità del pacchetto, i metodi AdaptiveMediaSource.CreateFromUriAsync non supportano i formati URI ms-appx
e ms-resource
.