SignalRFeatureFlag Struct
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
FeatureFlags is the supported features of Azure SignalR service.
- ServiceMode: Flag for backend server for SignalR service. Values allowed: "Default": have your own backend server; "Serverless": your application doesn't have a backend server; "Classic": for backward compatibility. Support both Default and Serverless mode but not recommended; "PredefinedOnly": for future use.
- EnableConnectivityLogs: "true"/"false", to enable/disable the connectivity log category respectively.
- EnableMessagingLogs: "true"/"false", to enable/disable the connectivity log category respectively.
- EnableLiveTrace: Live Trace allows you to know what's happening inside Azure SignalR service, it will give you live traces in real time, it will be helpful when you developing your own Azure SignalR based web application or self-troubleshooting some issues. Please note that live traces are counted as outbound messages that will be charged. Values allowed: "true"/"false", to enable/disable live trace feature.
public readonly struct SignalRFeatureFlag : IEquatable<Azure.ResourceManager.SignalR.Models.SignalRFeatureFlag>
type SignalRFeatureFlag = struct
Public Structure SignalRFeatureFlag
Implements IEquatable(Of SignalRFeatureFlag)
- Inheritance
-
SignalRFeatureFlag
- Implements
Constructors
SignalRFeatureFlag(String) |
Initializes a new instance of SignalRFeatureFlag. |
Properties
EnableConnectivityLogs |
EnableConnectivityLogs. |
EnableLiveTrace |
EnableLiveTrace. |
EnableMessagingLogs |
EnableMessagingLogs. |
ServiceMode |
ServiceMode. |
Methods
Equals(SignalRFeatureFlag) |
Indicates whether the current object is equal to another object of the same type. |
ToString() |
Returns the fully qualified type name of this instance. |
Operators
Equality(SignalRFeatureFlag, SignalRFeatureFlag) |
Determines if two SignalRFeatureFlag values are the same. |
Implicit(String to SignalRFeatureFlag) |
Converts a String to a SignalRFeatureFlag. |
Inequality(SignalRFeatureFlag, SignalRFeatureFlag) |
Determines if two SignalRFeatureFlag values are not the same. |
Applies to
Azure SDK for .NET