Class BackendForFrontendSettings
เนื้อหานี้ยังไม่ได้แปลเป็นภาษาไทย แสดงเป็นภาษาอังกฤษแทน
Namespace: Cephalon.Engine.Configuration
Assembly: Cephalon.Engine.dll
Describes configuration-driven backend-for-frontend settings for a Cephalon app.
public sealed class BackendForFrontendSettingsInheritance
Section titled “Inheritance”object ← BackendForFrontendSettings
Inherited Members
Section titled “Inherited Members”object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.ReferenceEquals(object?, object?), object.ToString()
Constructors
Section titled “Constructors”BackendForFrontendSettings(IReadOnlyList<BackendForFrontendClientBindingSettings>?)
Section titled “ BackendForFrontendSettings(IReadOnlyList<BackendForFrontendClientBindingSettings>?)”Creates backend-for-frontend settings.
public BackendForFrontendSettings(IReadOnlyList<BackendForFrontendClientBindingSettings>? bindings = null)Parameters
Section titled “Parameters”bindings IReadOnlyList<BackendForFrontendClientBindingSettings>?
The client-specific transport bindings configured for the app.
Properties
Section titled “Properties”Bindings
Section titled “ Bindings”Gets the client-specific transport bindings configured for the app.
public IReadOnlyList<BackendForFrontendClientBindingSettings> Bindings { get; }Property Value
Section titled “Property Value”IReadOnlyList<BackendForFrontendClientBindingSettings>
Gets an empty backend-for-frontend settings instance.
public static BackendForFrontendSettings Empty { get; }Property Value
Section titled “Property Value”HasValues
Section titled “ HasValues”Gets a value indicating whether any backend-for-frontend settings were explicitly supplied.
public bool HasValues { get; }Property Value
Section titled “Property Value”Methods
Section titled “Methods”FromConfiguration(IConfiguration, string)
Section titled “ FromConfiguration(IConfiguration, string)”Reads backend-for-frontend settings from configuration.
public static BackendForFrontendSettings FromConfiguration(IConfiguration configuration, string sectionPath = "Engine")Parameters
Section titled “Parameters”configuration IConfiguration
The configuration source that contains the engine section.
sectionPath string
The root configuration section path to read from.
Returns
Section titled “Returns”The parsed backend-for-frontend settings.