Class DicomWebConnectionDetails
Connection details of a data source.
Namespace: Nvidia.Clara.DicomAdapter.API.Rest
Assembly: Nvidia.Clara.Dicom.API.dll
Syntax
public class DicomWebConnectionDetails : object
Properties
| Improve this Doc View SourceAuthId
Gets or sets the authentication/authorization token of the connection. For HTTP basic access authentication, the value must be encoded in based 64 using "{username}:{password}" format.
Declaration
public string AuthId { get; set; }
Property Value
Type | Description |
---|---|
String |
AuthType
Gets or sets the type of the authentication token used for the connection. Defaults to None if not specified.
Declaration
public ConnectionAuthType AuthType { get; set; }
Property Value
Type | Description |
---|---|
ConnectionAuthType |
Operations
Gets or sets a list of permitted operations for the connection.
Declaration
public IList<InputInterfaceOperations> Operations { get; set; }
Property Value
Type | Description |
---|---|
IList<InputInterfaceOperations> |
Uri
Gets or sets the resource URI (Uniform Resource Identifier) of the connection.
Declaration
public string Uri { get; set; }
Property Value
Type | Description |
---|---|
String |