Class HttpInvitationDeliveryServiceCollectionExtensions
เนื้อหานี้ยังไม่ได้แปลเป็นภาษาไทย แสดงเป็นภาษาอังกฤษแทน
Namespace: Cephalon.MultiTenancy.Governance.HttpDelivery.Hosting
Assembly: Cephalon.MultiTenancy.Governance.HttpDelivery.dll
Adds HTTP webhook invitation delivery services to a Cephalon host.
public static class HttpInvitationDeliveryServiceCollectionExtensionsInheritance
Section titled “Inheritance”object ← HttpInvitationDeliveryServiceCollectionExtensions
Inherited Members
Section titled “Inherited Members”object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.MemberwiseClone(), object.ReferenceEquals(object?, object?), object.ToString()
Fields
Section titled “Fields”HttpClientName
Section titled “ HttpClientName”The named HTTP client used by the HTTP invitation delivery sender.
public const string HttpClientName = "Cephalon.MultiTenancy.Governance.HttpDelivery"Field Value
Section titled “Field Value”Methods
Section titled “Methods”AddCephalonHttpInvitationDelivery(IServiceCollection, IConfiguration, Action<HttpInvitationDeliveryOptions>?)
Section titled “ AddCephalonHttpInvitationDelivery(IServiceCollection, IConfiguration, Action<HttpInvitationDeliveryOptions>?)”Adds HTTP invitation delivery using configuration as the primary source of webhook settings.
public static IServiceCollection AddCephalonHttpInvitationDelivery(this IServiceCollection services, IConfiguration configuration, Action<HttpInvitationDeliveryOptions>? configure = null)Parameters
Section titled “Parameters”services IServiceCollection
The target service collection.
configuration IConfiguration
The application configuration root.
configure Action<HttpInvitationDeliveryOptions>?
An optional callback that can extend or override the configuration-driven setup.
Returns
Section titled “Returns”The same service collection for further registration.
AddCephalonHttpInvitationDelivery(IServiceCollection, Action<HttpInvitationDeliveryOptions>?)
Section titled “ AddCephalonHttpInvitationDelivery(IServiceCollection, Action<HttpInvitationDeliveryOptions>?)”Adds HTTP invitation delivery using code-first configuration.
public static IServiceCollection AddCephalonHttpInvitationDelivery(this IServiceCollection services, Action<HttpInvitationDeliveryOptions>? configure = null)Parameters
Section titled “Parameters”services IServiceCollection
The target service collection.
configure Action<HttpInvitationDeliveryOptions>?
An optional callback that configures the HTTP invitation delivery sender.
Returns
Section titled “Returns”The same service collection for further registration.