Class RestEndpointInfo
Provides basic information about REST service endpoint. This class is usually used during REST service import process to provide a brief endpoint information on UI.
Inherited Members
Namespace: Nevatech.Vsb.Repository.Description
Assembly: Nevatech.Vsb.Repository.dll
Syntax
public sealed class RestEndpointInfo
Constructors
RestEndpointInfo()
Initializes a new instance of the RestEndpointInfo.
Declaration
public RestEndpointInfo()
RestEndpointInfo(String, Uri)
Initializes a new instance of the RestEndpointInfo.
Declaration
public RestEndpointInfo(string name, Uri address)
Parameters
Type | Name | Description |
---|---|---|
String | name | The endpoint name. |
Uri | address | The endpoint address. |
Properties
Address
Gets or sets endpoint address.
Declaration
public Uri Address { get; set; }
Property Value
Type | Description |
---|---|
Uri |
Name
Gets or sets endpoint name.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
String |