-
Notifications
You must be signed in to change notification settings - Fork 316
Open
Description
Hello,
we are using your library heavily which is nice by the way, thanks your work. We ran into issues while using Result types within MassTransit as while serializing and deserializing Result type lead to RUntime exception as there are exceptions raised on Getter property methods like here below.
Why this type is flag as Serializable but raise exceptions on properties get ? did we miss something and can you help as this sounds like common issue
public T Value
{
get
{
if (!IsSuccess)
{
throw new ResultFailureException(Error);
}Metadata
Metadata
Assignees
Labels
No labels