Class DicomWebConnectionDetails
Connection details of a data source.
Namespace: Monai.Deploy.InformaticsGateway.Api.Rest
Assembly: Monai.Deploy.InformaticsGateway.Api.dll
Syntax
public class DicomWebConnectionDetails
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
[JsonPropertyName("authID")]
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
[JsonPropertyName("authType")]
public ConnectionAuthType AuthType { get; set; }
Property Value
Type | Description |
---|---|
ConnectionAuthType |
Operations
Gets or sets a list of permitted operations for the connection.
Declaration
[JsonPropertyName("operations")]
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
[JsonPropertyName("uri")]
public string Uri { get; set; }
Property Value
Type | Description |
---|---|
String |