Show / Hide Table of Contents

Class StreamingClientConfiguration

Configuration parameters object for Alpaca.Markets.StreamingClientBase`1 class.

Inheritance
System.Object
StreamingClientConfiguration
AlpacaCryptoStreamingClientConfiguration
AlpacaDataStreamingClientConfiguration
AlpacaNewsStreamingClientConfiguration
AlpacaStreamingClientConfiguration
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Alpaca.Markets
Assembly: Alpaca.Markets.dll
Syntax
public abstract class StreamingClientConfiguration

Constructors

| Improve this Doc View Source

StreamingClientConfiguration(Uri)

Creates new instance of StreamingClientConfiguration class.

Declaration
protected StreamingClientConfiguration(Uri apiEndpoint)
Parameters
Type Name Description
Uri apiEndpoint

Properties

| Improve this Doc View Source

ApiEndpoint

Gets or sets Alpaca streaming API base URL.

Declaration
public Uri ApiEndpoint { get; set; }
Property Value
Type Description
Uri
| Improve this Doc View Source

SecurityId

Gets or sets Alpaca secret key identifier.

Declaration
public SecurityKey SecurityId { get; set; }
Property Value
Type Description
SecurityKey
| Improve this Doc View Source

WebSocketFactory

Gets or sets factory for obtaining web socket client.

Declaration
public Func<IWebSocket>? WebSocketFactory { get; set; }
Property Value
Type Description
System.Nullable<Func<IWebSocket>>
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX