Class OriginValidationException
The exception that is thrown when the origin of an incoming message does not match
the expected value defined by AllowedOriginAttribute.
Implements IDomainException so that the pipeline does not trigger retries.
Inheritance
OriginValidationException
Assembly: Chapar.Core.dll
Syntax
public class OriginValidationException : InvalidOperationException, ISerializable, IDomainException
Constructors
|
Edit this page
View Source
OriginValidationException(string, string?)
Declaration
public OriginValidationException(string expectedOrigin, string? actualOrigin)
Parameters
| Type |
Name |
Description |
| string |
expectedOrigin |
|
| string |
actualOrigin |
|
Properties
|
Edit this page
View Source
ActualOrigin
Declaration
public string? ActualOrigin { get; }
Property Value
|
Edit this page
View Source
ExpectedOrigin
Declaration
public string ExpectedOrigin { get; }
Property Value
Implements