Show / Hide Table of Contents

Class ForwardingConfig

Inheritance
object
ForwardingConfig
Implements
IEquatable<ForwardingConfig>
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: CrashCABN.PullIngestion
Assembly: CrashCABN.PullIngestion.Abstractions.dll
Syntax
public sealed record ForwardingConfig : IEquatable<ForwardingConfig>

Constructors

View Source

ForwardingConfig(bool, string, string)

Declaration
public ForwardingConfig(bool Enabled, string FailureForwarderQueue = "failureinfoforwarder", string BugFilerForwarderQueue = "bugfilermessageforwarder")
Parameters
Type Name Description
bool Enabled
string FailureForwarderQueue
string BugFilerForwarderQueue

Properties

View Source

BugFilerForwarderQueue

Declaration
[JsonProperty(Required = Required.DisallowNull, DefaultValueHandling = DefaultValueHandling.IgnoreAndPopulate)]
public string BugFilerForwarderQueue { get; init; }
Property Value
Type Description
string
View Source

Enabled

Declaration
[JsonProperty(Required = Required.Always)]
public bool Enabled { get; init; }
Property Value
Type Description
bool
View Source

FailureForwarderQueue

Declaration
[JsonProperty(Required = Required.DisallowNull, DefaultValueHandling = DefaultValueHandling.IgnoreAndPopulate)]
public string FailureForwarderQueue { get; init; }
Property Value
Type Description
string

Implements

IEquatable<T>
  • View Source
In this article
Back to top Generated by DocFX