Windows error 0x8007065E, -2147023266

Detailed Error Information

UNSUPPORTED_TYPE[1]

MessageData of this type is not supported.
Declared inwinerror.h

HRESULT analysis[2]

FlagsSeverityFailure
Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode7 (0x007)
NameFACILITY_WIN32[2][1]
DescriptionThis region is reserved to map undecorated error codes into HRESULTs.[2][1]
Error Code1630 (0x065e)

This is a Win32 error which has been mapped into an HRESULT. More information may be available in error 0x0000065e.

Questions

3votes
1answer

Which data types can be used when communicating with an App Service in UWP

I have created an UWP app with an app service and communication between those are done using value sets in an AppServiceConnection. I can however not find out what types of data that are supported in the value sets that are transferred. Here is some test code class MyClass { [...] read more
c#
uwp
3votes
1answer

How to make a class that can be added to the Windows.Foundation.Collections.ValueSet

I am making a UWP application that utilizes an AppServiceConnection to send data to a COM style application. The AppServiceConnection.SendMessageAsync() takes a type of Windows.Foundation.Collections.ValueSet The ValueSet class is a collection, similar to a dictionary that stores KeyValuePairs of types <string, object> I am having trouble adding data to the [...] read more
c#
uwp
2votes
1answer

DllSurrogate not loading because of 0x8007065E "Data of this type not supported"

I am trying to make an old Delphi 32-bit DLL usable from my C# applications. Using the default system DLL surrogate (dllhost.exe) seems to be the most comfortable solution. To prove this would work I created a minimal 32-bit test DLL with Delphi that just implements one interface with one [...] read more
c#
pinvoke
com-interop
1vote
1answer

FileOpenPicker: Can't add complex type to ContinuationData

I am not able to add a custom type to he ContinuationData in the FileOpenPicker. I can add string/int/datetime, but when I try to add my custom CustomFolder object it fails with the following exception. CustomFolder TargetFolde = new CustomFolder() FileOpenPicker open = new FileOpenPicker(); open.SuggestedStartLocation = PickerLocationId.PicturesLibrary; open.ViewMode = [...] read more
c#
windows-phone-8
1vote
2answers

Unable to deploy WinJS apps

I'm working on a WinJS app which works perfectly on one particular Windows 8 image, but will not deploy on another that we use. Attempting to run any WinJS project from visual studio results in the following error: Error 1 Error : DEP0800 : The required framework "C:\Program Files (x86)\Microsoft [...] read more
windows-8
winjs

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0