Show / Hide Table of Contents

Class RequestForQuoteEventArgs

Additional information for request for quote events.

Inheritance
object
EventArgs
RequestForQuoteEventArgs
Inherited Members
EventArgs.Empty
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
Namespace: tt_net_sdk
Assembly: tt-net-api.dll
Syntax
public class RequestForQuoteEventArgs : EventArgs

Constructors

RequestForQuoteEventArgs(Product, ICollection<RequestForQuoteData>)

Constructor.

Declaration
public RequestForQuoteEventArgs(Product product, ICollection<RequestForQuoteData> data)
Parameters
Type Name Description
Product product

The instrument.

ICollection<RequestForQuoteData> data

The data.

RequestForQuoteEventArgs(Product, ICollection<RequestForQuoteData>, SubscriptionStatus, Exception)

Constructor.

Declaration
public RequestForQuoteEventArgs(Product product, ICollection<RequestForQuoteData> data, SubscriptionStatus status, Exception error)
Parameters
Type Name Description
Product product

The product.

ICollection<RequestForQuoteData> data

The data.

SubscriptionStatus status
Exception error

The error.

Properties

Data

Gets the data.

Declaration
public ICollection<RequestForQuoteData> Data { get; }
Property Value
Type Description
ICollection<RequestForQuoteData>

The data.

Error

Gets the error.

Declaration
public Exception Error { get; }
Property Value
Type Description
Exception

The error.

Product

Gets the product.

Declaration
public Product Product { get; }
Property Value
Type Description
Product

The product.

SubscriptionStatus

Gets the status.

Declaration
public SubscriptionStatus SubscriptionStatus { get; }
Property Value
Type Description
SubscriptionStatus

Methods

ToString()

Returns a string that represents the current object.

Declaration
public override string ToString()
Returns
Type Description
string

A string that represents the current object.

Overrides
object.ToString()
In this article
Back to top