Windows error 0x8013150C, -2146233076

Detailed Error Information

COR_E_SERIALIZATION[1]

Message"An error relating to serialization occurred."
Comment An error relating to serialization has occurred.

HRESULT analysis[2]

FlagsSeverityFailure
Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode19 (0x013)
NameFACILITY_URT[2][3]
DescriptionThe source of the error code is .NET CLR.[2][3]
Error Code5388 (0x150c)

Questions

6votes
2answers

Deep clone of System.Random

I'm trying to deep clone an object which contains a System.Random variable. My application must be deterministic and so I need to capture the the random object state. My project is based on .Net Core 2.0. I'm using some deep clone code from here (How do you do a deep [...] read more
c#
.net
serialization
random
4votes
1answer

Azure Service Bus BrokeredMessage GetBody method throws SerializationException when reading data sent through Rest API

I am sending a csv file to an Azure Service Bus Queue from a .NET 3.5 based C# solution. Since the Service Bus nuget packages aren't available in .NET 3.5, I am using the Rest API. byte[] file = File.ReadAllBytes(@"VehicleContacts.csv"); string url = baseAddress + queueName + "/messages" + "?timeout=60&api-version=2013-08 [...] read more
azure
serialization
azureservicebus
azure-servicebus-queues
brokeredmessage
2votes
1answer

Serialize a FaultException of Generic Type

We currently have a mechanism of calling our web services in a test page. However, I am trying to look at the better practices of WCF services and using the FaultException. So there are cases when the FaultException is thrown by our service, I want to serialize the fault as [...] read more
c#
asp.net
web-services
wcf
faultexception
1vote
1answer

MarshalByRefObject with iterator method (IEnumerable<T>) not working

I'm trying to make an application that can dynamically load and unload an after-market assembly and create an object of a type defined in that assembly, but I'm running into problems when the object has an iterator method. Stay with me -- the Minimal, Reproducible Example is a little bit [...] read more
c#
iterator
yield
appdomain
marshalbyrefobject
0votes
1answer

Error during class serialization: type is not marked serializable

I have a class marked as [Serializable]. It has a property tha I don't wan to serialize. But at runtime I got an error during serialization. These are my classes: public interface IMyNonSerializable { ... } public class MyNonSerializable : IMyNonSerializable { ... } [Serializable] public class MySerializable { public [...] read more
c#
.net
serialization
binary-serialization

Comments

Leave a comment

(plain text only)

Sources

  1. https://github.com/dotnet/coreclr/blob/v1.1.0/src/inc/corerror.xml
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx
  3. winerror.h from Windows SDK 10.0.14393.0

User contributions licensed under CC BY-SA 3.0