Class FixError
Inheritance
System.Object
FixError
Implements
System.IComparable<FixError>
Inherited Members
System.Object.Equals(System.Object, System.Object)
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: FixAntenna.Fix.Validation.Error
Assembly: FixAntenna.Message.dll
Syntax
public sealed class FixError : IComparable<FixError>
Constructors
FixError(FixErrorCode, String, TagValue)
Declaration
public FixError(FixErrorCode fixErrorCode, string description, TagValue tagValue)
Parameters
Type | Name | Description |
---|---|---|
FixErrorCode | fixErrorCode | |
System.String | description | |
TagValue | tagValue |
Properties
Description
Declaration
public string Description { get; set; }
Property Value
Type | Description |
---|---|
System.String |
FixErrorCode
Declaration
public FixErrorCode FixErrorCode { get; }
Property Value
Type | Description |
---|---|
FixErrorCode |
TagValue
Declaration
public TagValue TagValue { get; set; }
Property Value
Type | Description |
---|---|
TagValue |
Methods
Clone()
Declaration
public FixError Clone()
Returns
Type | Description |
---|---|
FixError |
CompareTo(FixError)
Declaration
public int CompareTo(FixError o)
Parameters
Type | Name | Description |
---|---|---|
FixError | o |
Returns
Type | Description |
---|---|
System.Int32 |
Equals(Object)
Declaration
public override bool Equals(object o)
Parameters
Type | Name | Description |
---|---|---|
System.Object | o |
Returns
Type | Description |
---|---|
System.Boolean |
Overrides
System.Object.Equals(System.Object)
GetHashCode()
Declaration
public override int GetHashCode()
Returns
Type | Description |
---|---|
System.Int32 |
Overrides
System.Object.GetHashCode()
ToString()
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String |
Overrides
System.Object.ToString()
Implements
System.IComparable<T>