In This Topic
Configure a web server to handle DicomWeb
Syntax
'Declaration
Public Sub Configure( _
ByVal As System.Web.Http.HttpConfiguration, _
ByVal As System.String, _
ByVal As System.String, _
ByVal As System.String, _
ByVal As System.String, _
ByVal As System.String, _
ByVal As System.String _
)
'Usage
Dim instance As DicomWebServer
Dim Configuration As System.Web.Http.HttpConfiguration
Dim BaseUri As System.String
Dim StowPrefix As System.String
Dim QidoPrefix As System.String
Dim WadoPrefix As System.String
Dim WorklistPrefix As System.String
Dim BulkPrefix As System.String
instance.Configure(Configuration, BaseUri, StowPrefix, QidoPrefix, WadoPrefix, WorklistPrefix, BulkPrefix)
public void Configure(
System.Web.Http.HttpConfiguration ,
System.string ,
System.string ,
System.string ,
System.string ,
System.string ,
System.string
)
public procedure Configure(
: System.Web.Http.HttpConfiguration;
: System.String;
: System.String;
: System.String;
: System.String;
: System.String;
: System.String
);
public function Configure(
: System.Web.Http.HttpConfiguration,
: System.String,
: System.String,
: System.String,
: System.String,
: System.String,
: System.String
);
public: void Configure(
System.Web.Http.HttpConfiguration* ,
System.string* ,
System.string* ,
System.string* ,
System.string* ,
System.string* ,
System.string*
)
public:
void Configure(
System.Web.Http.HttpConfiguration^ ,
System.String^ ,
System.String^ ,
System.String^ ,
System.String^ ,
System.String^ ,
System.String^
)
Parameters
- Configuration
- An web server configuration object to do the listening
- BaseUri
-
The uri on which the server will be listening - this is only used for creating "links" as the user is responsible
for
actually listening on that URL - see remarks
- StowPrefix
- The prefix to be used for STOW operations
- QidoPrefix
- The prefix to be used for QIDO operations
- WadoPrefix
- The prefix to be used for WADO operations
- WorklistPrefix
- The prefix to be used for Worklist operations
- BulkPrefix
- The prefix to be used for bul data retrieval
Requirements
Target Platforms: .NET CLR 4.8 or higher
See Also