Class EndpointInfo
Provides basic information about service endpoint (port).
Inherited Members
Namespace: Nevatech.Vsb.Repository.Description
Assembly: Nevatech.Vsb.Repository.dll
Syntax
public sealed class EndpointInfo
Constructors
EndpointInfo()
Instantiates an empty object.
Declaration
public EndpointInfo()
EndpointInfo(String, Uri, String, String)
Initializes new object with endpoint name, address, and endpoint's contract name and namespace.
Declaration
public EndpointInfo(string name, Uri address, string contractName, string contractNamespace)
Parameters
Type | Name | Description |
---|---|---|
String | name | Endpoint name. |
Uri | address | Endpoint address. |
String | contractName | Endpoint contract name. |
String | contractNamespace | Endpoint contract namespace. |
Properties
Address
Gets or sets endpoint address.
Declaration
public Uri Address { get; set; }
Property Value
Type | Description |
---|---|
Uri |
ContractQName
Gets or sets the name and namespace of the endpoint contract (port type).
Declaration
public XmlQualifiedName ContractQName { get; set; }
Property Value
Type | Description |
---|---|
XmlQualifiedName |
Name
Gets or sets endpoint name.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
String |