Class ServiceMetadata
Represents the metadata of a service.
Inheritance
System.Object
ServiceMetadata
Namespace: Copper.Service.Metadata
Assembly: Copper.Service.dll
Syntax
public class ServiceMetadata
Constructors
View SourceServiceMetadata(String, String, String, String)
Initializes a new instance of the Service
Declaration
public ServiceMetadata(string serviceName, string serviceTypeName, string applicationName, string applicationTypeName)
Parameters
Type | Name | Description |
---|---|---|
System. |
serviceName | The name of the service. |
System. |
serviceTypeName | The name of the service type. |
System. |
applicationName | The name of the application. |
System. |
applicationTypeName | The name of the application type. |
Properties
View SourceApplicationName
Gets the name of the application in which the service is running.
Declaration
public string ApplicationName { get; }
Property Value
Type | Description |
---|---|
System. |
The name of the application in which the service is running. |
ApplicationTypeName
Gets the name of the application type in which the service is running.
Declaration
public string ApplicationTypeName { get; }
Property Value
Type | Description |
---|---|
System. |
The name of the application type in which the service is running. |
ListenerMetadataCollection
Gets the service's listener metadata collection.
Declaration
public IReadOnlyCollection<ListenerMetadata> ListenerMetadataCollection { get; }
Property Value
Type | Description |
---|---|
System. |
The service's listener metadata collection. |
ServiceName
Gets the name of the service.
Declaration
public string ServiceName { get; }
Property Value
Type | Description |
---|---|
System. |
The name of the service. |
ServiceTypeName
Gets the name of the service type.
Declaration
public string ServiceTypeName { get; }
Property Value
Type | Description |
---|---|
System. |
The name of the service type. |