diff --git a/dev/_sources/apps/movescu.rst.txt b/dev/_sources/apps/movescu.rst.txt index fcbff5f82..5f076d9ae 100644 --- a/dev/_sources/apps/movescu.rst.txt +++ b/dev/_sources/apps/movescu.rst.txt @@ -522,7 +522,7 @@ SOP Classes +----------------------------------+------------------------------------------+ | 1.2.840.10008.5.1.4.1.1.481.10 | RT Physician Intent Storage | +----------------------------------+------------------------------------------+ -| 1.2.840.10008.5.1.4.1.1.481.11 | RT Segmentation Annotation Storge | +| 1.2.840.10008.5.1.4.1.1.481.11 | RT Segmentation Annotation Storage | +----------------------------------+------------------------------------------+ | 1.2.840.10008.5.1.4.1.1.481.12 | RT Radiation Set Storage | +----------------------------------+------------------------------------------+ diff --git a/dev/_static/basic.css b/dev/_static/basic.css index 7577acb1a..30fee9d0f 100644 --- a/dev/_static/basic.css +++ b/dev/_static/basic.css @@ -237,6 +237,10 @@ a.headerlink { visibility: hidden; } +a:visited { + color: #551A8B; +} + h1:hover > a.headerlink, h2:hover > a.headerlink, h3:hover > a.headerlink, @@ -670,6 +674,16 @@ dd { margin-left: 30px; } +.sig dd { + margin-top: 0px; + margin-bottom: 0px; +} + +.sig dl { + margin-top: 0px; + margin-bottom: 0px; +} + dl > dd:last-child, dl > dd:last-child > :last-child { margin-bottom: 0; @@ -738,6 +752,14 @@ abbr, acronym { cursor: help; } +.translated { + background-color: rgba(207, 255, 207, 0.2) +} + +.untranslated { + background-color: rgba(255, 207, 207, 0.2) +} + /* -- code displays --------------------------------------------------------- */ pre { diff --git a/dev/_static/documentation_options.js b/dev/_static/documentation_options.js index 0d9eff950..d13c211e2 100644 --- a/dev/_static/documentation_options.js +++ b/dev/_static/documentation_options.js @@ -1,5 +1,4 @@ -var DOCUMENTATION_OPTIONS = { - URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'), +const DOCUMENTATION_OPTIONS = { VERSION: '2.1.0.dev0', LANGUAGE: 'en', COLLAPSE_INDEX: false, diff --git a/dev/_static/pygments.css b/dev/_static/pygments.css index 691aeb82d..0d49244ed 100644 --- a/dev/_static/pygments.css +++ b/dev/_static/pygments.css @@ -17,6 +17,7 @@ span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: .highlight .cs { color: #408090; background-color: #fff0f0 } /* Comment.Special */ .highlight .gd { color: #A00000 } /* Generic.Deleted */ .highlight .ge { font-style: italic } /* Generic.Emph */ +.highlight .ges { font-weight: bold; font-style: italic } /* Generic.EmphStrong */ .highlight .gr { color: #FF0000 } /* Generic.Error */ .highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */ .highlight .gi { color: #00A000 } /* Generic.Inserted */ diff --git a/dev/_static/searchtools.js b/dev/_static/searchtools.js index 97d56a74d..7918c3fab 100644 --- a/dev/_static/searchtools.js +++ b/dev/_static/searchtools.js @@ -57,12 +57,12 @@ const _removeChildren = (element) => { const _escapeRegExp = (string) => string.replace(/[.*+\-?^${}()|[\]\\]/g, "\\$&"); // $& means the whole matched string -const _displayItem = (item, searchTerms) => { +const _displayItem = (item, searchTerms, highlightTerms) => { const docBuilder = DOCUMENTATION_OPTIONS.BUILDER; - const docUrlRoot = DOCUMENTATION_OPTIONS.URL_ROOT; const docFileSuffix = DOCUMENTATION_OPTIONS.FILE_SUFFIX; const docLinkSuffix = DOCUMENTATION_OPTIONS.LINK_SUFFIX; const showSearchSummary = DOCUMENTATION_OPTIONS.SHOW_SEARCH_SUMMARY; + const contentRoot = document.documentElement.dataset.content_root; const [docName, title, anchor, descr, score, _filename] = item; @@ -75,20 +75,24 @@ const _displayItem = (item, searchTerms) => { if (dirname.match(/\/index\/$/)) dirname = dirname.substring(0, dirname.length - 6); else if (dirname === "index/") dirname = ""; - requestUrl = docUrlRoot + dirname; + requestUrl = contentRoot + dirname; linkUrl = requestUrl; } else { // normal html builders - requestUrl = docUrlRoot + docName + docFileSuffix; + requestUrl = contentRoot + docName + docFileSuffix; linkUrl = docName + docLinkSuffix; } let linkEl = listItem.appendChild(document.createElement("a")); linkEl.href = linkUrl + anchor; linkEl.dataset.score = score; linkEl.innerHTML = title; - if (descr) + if (descr) { listItem.appendChild(document.createElement("span")).innerHTML = " (" + descr + ")"; + // highlight search terms in the description + if (SPHINX_HIGHLIGHT_ENABLED) // set in sphinx_highlight.js + highlightTerms.forEach((term) => _highlightText(listItem, term, "highlighted")); + } else if (showSearchSummary) fetch(requestUrl) .then((responseData) => responseData.text()) @@ -97,6 +101,9 @@ const _displayItem = (item, searchTerms) => { listItem.appendChild( Search.makeSearchSummary(data, searchTerms) ); + // highlight search terms in the summary + if (SPHINX_HIGHLIGHT_ENABLED) // set in sphinx_highlight.js + highlightTerms.forEach((term) => _highlightText(listItem, term, "highlighted")); }); Search.output.appendChild(listItem); }; @@ -115,14 +122,15 @@ const _finishSearch = (resultCount) => { const _displayNextItem = ( results, resultCount, - searchTerms + searchTerms, + highlightTerms, ) => { // results left, load the summary and display it // this is intended to be dynamic (don't sub resultsCount) if (results.length) { - _displayItem(results.pop(), searchTerms); + _displayItem(results.pop(), searchTerms, highlightTerms); setTimeout( - () => _displayNextItem(results, resultCount, searchTerms), + () => _displayNextItem(results, resultCount, searchTerms, highlightTerms), 5 ); } @@ -360,7 +368,7 @@ const Search = { // console.info("search results:", Search.lastresults); // print the results - _displayNextItem(results, results.length, searchTerms); + _displayNextItem(results, results.length, searchTerms, highlightTerms); }, /** diff --git a/dev/_static/sphinx_highlight.js b/dev/_static/sphinx_highlight.js index aae669d7e..8a96c69a1 100644 --- a/dev/_static/sphinx_highlight.js +++ b/dev/_static/sphinx_highlight.js @@ -29,14 +29,19 @@ const _highlight = (node, addItems, text, className) => { } span.appendChild(document.createTextNode(val.substr(pos, text.length))); + const rest = document.createTextNode(val.substr(pos + text.length)); parent.insertBefore( span, parent.insertBefore( - document.createTextNode(val.substr(pos + text.length)), + rest, node.nextSibling ) ); node.nodeValue = val.substr(0, pos); + /* There may be more occurrences of search term in this node. So call this + * function recursively on the remaining fragment. + */ + _highlight(rest, addItems, text, className); if (isInSVG) { const rect = document.createElementNS( @@ -140,5 +145,10 @@ const SphinxHighlight = { }, }; -_ready(SphinxHighlight.highlightSearchWords); -_ready(SphinxHighlight.initEscapeListener); +_ready(() => { + /* Do not call highlightSearchWords() when we are on the search page. + * It will highlight words from the *previous* search query. + */ + if (typeof Search === "undefined") SphinxHighlight.highlightSearchWords(); + SphinxHighlight.initEscapeListener(); +}); diff --git a/dev/apps/echoscp.html b/dev/apps/echoscp.html index c18d5be84..774e10c82 100644 --- a/dev/apps/echoscp.html +++ b/dev/apps/echoscp.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -115,12 +115,12 @@
-

echoscp

+

echoscp

$ python -m pynetdicom echoscp [options] port
 
-

Description

+

Description

The echoscp application implements a Service Class Provider (SCP) for the Verification service class. It listens for incoming association requests on the specified port, and once an association @@ -129,7 +129,7 @@

Descriptionhere

-

Usage

+

Usage

The following example shows what happens when it’s started and receives a C-ECHO request from a peer:

$ python -m pynetdicom echoscp 11112
@@ -168,9 +168,9 @@ 

Usage

-

Options

+

Options

-

General Options

+

General Options

-q    --quiet

quiet mode, prints no warnings or errors

@@ -185,7 +185,7 @@

General Options -

Network Options

+

Network Options

-aet  --ae-title [a]etitle (str)

set the local AE title (default: ECHOSCP)

@@ -200,7 +200,7 @@

Network Options -

Preferred Transfer Syntaxes

+

Preferred Transfer Syntaxes

-x=   --prefer-uncompr

prefer explicit VR local byte order

@@ -214,13 +214,13 @@

Preferred Transfer Syntaxes -

DICOM Conformance

+

DICOM Conformance

The echoscp application supports the Verification service as an SCP. The following SOP classes are supported:

-

Verification Service

+

Verification Service

-

SOP Classes

+

SOP Classes

@@ -235,7 +235,7 @@

SOP Classes -

Transfer Syntaxes

+

Transfer Syntaxes

UID

diff --git a/dev/apps/echoscu.html b/dev/apps/echoscu.html index a847ce227..6da4631e1 100644 --- a/dev/apps/echoscu.html +++ b/dev/apps/echoscu.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -117,12 +117,12 @@
-

echoscu

+

echoscu

$ python -m pynetdicom echoscu [options] addr port
 
-

Description

+

Description

The echoscu application implements a Service Class User (SCU) for the Verification service class. It establishes an association with a peer Application Entity (AE), sends a @@ -131,7 +131,7 @@

Descriptionhere

-

Usage

+

Usage

The following example shows what happens when it is successfully run on an SCP at IP 127.0.0.1 and listen port 11112 that supports the Verification service:

@@ -176,7 +176,7 @@

Usage

-

Parameters

+

Parameters

addr

TCP/IP address or hostname of DICOM peer

@@ -185,9 +185,9 @@

Parameters -

Options

+

Options

-

General Options

+

General Options

-q    --quiet

quiet mode, prints no warnings or errors

@@ -202,7 +202,7 @@

General Options -

Network Options

+

Network Options

-aet  --calling-aet [a]etitle (str)

set the local AE title (default: ECHOSCU)

@@ -219,7 +219,7 @@

Network Options -

Transfer Syntax Options

+

Transfer Syntax Options

-xe   --request-little

request explicit VR little endian TS only

@@ -230,7 +230,7 @@

Transfer Syntax Options

-

Miscellaneous Options

+

Miscellaneous Options

--repeat [n]umber (int)

repeat echo request n times

@@ -240,13 +240,13 @@

Miscellaneous Options

-

DICOM Conformance

+

DICOM Conformance

The echoscu application supports the Verification service as an SCU. The following SOP classes are supported:

-

Verification Service

+

Verification Service

-

SOP Classes

+

SOP Classes

UID

@@ -261,7 +261,7 @@

SOP Classes -

Transfer Syntaxes

+

Transfer Syntaxes

UID

diff --git a/dev/apps/findscu.html b/dev/apps/findscu.html index 006ac00d5..27e7fd38b 100644 --- a/dev/apps/findscu.html +++ b/dev/apps/findscu.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -125,7 +125,7 @@
-

findscu

+

findscu

New in version 1.5.

@@ -133,7 +133,7 @@

findscu -

Description

+

Description

The findscu application implements a Service Class User (SCU) for the Query/Retrieve and Basic Worklist Management service classes. It @@ -143,7 +143,7 @@

Descriptionhere

-

Usage

+

Usage

The following example shows what happens when it is successfully run on an SCP at IP 127.0.0.1 and listen port 11112 that supports the Query/Retrieve (Find) service:

@@ -169,7 +169,7 @@

Usage

-

Parameters

+

Parameters

addr

TCP/IP address or hostname of DICOM peer

@@ -178,9 +178,9 @@

Parameters -

Options

+

Options

-

General Options

+

General Options

-q    --quiet

quiet mode, prints no warnings or errors

@@ -195,7 +195,7 @@

General Options -

Network Options

+

Network Options

-aet  --calling-aet [a]etitle (str)

set the local AE title (default: FINDSCU)

@@ -212,7 +212,7 @@

Network Options -

Query Information Model Options

+

Query Information Model Options

-P    --patient

use patient root information model (default)

@@ -227,7 +227,7 @@

Query Information Model Options -

Query Options

+

Query Options

-k [k]eyword: (gggg,eeee)=str, keyword=str

add or override a query element using either an element tag as (group,element) or the element’s keyword (such as PatientName). @@ -240,7 +240,7 @@

Query Options -

Extended Negotiation Options

+

Extended Negotiation Options

--relational-query

request the use of relational queries (not with -W)

@@ -256,7 +256,7 @@

Extended Negotiation Options -

Output Options

+

Output Options

-w    --write

write the responses to file as rsp000001.dcm, rsp000002.dcm, …

@@ -265,7 +265,7 @@

Output Options -

Keyword pathing

+

Keyword pathing

When using the -k keyword option it becomes possible to specify the query dataset (the Identifier) without needing to create a DICOM file. Multiple instances of -k can be used to build up the Identifier. For @@ -290,7 +290,7 @@

Keyword pathing -

Examples

+

Examples

Empty (0010,0010) Patient Name element:

-k PatientName=
 -k (0010,0010)=
@@ -305,14 +305,14 @@ 

Examplesint -or float depending on the VR:

+

Numeric VRs like US and FL are converted to either int +or float depending on the VR:

-k Columns=1024
 
 (0028, 0011) Columns                             US: 1024
 
-

Byte VRs like OB and OW are converted to bytes:

+

Byte VRs like OB and OW are converted to bytes:

-k PixelData=00FFEA08
 
 (7fe0, 0010) Pixel Data                          OW: b'\x00\xff\xea\x08'
@@ -374,13 +374,13 @@ 

Examples -

DICOM Conformance

+

DICOM Conformance

The findscu application supports the Query/Retrieve and Basic Worklist Management services as an SCU. The following SOP classes are supported:

-

Query/Retrieve Service

+

Query/Retrieve Service

-

SOP Classes

+

SOP Classes

UID

@@ -404,7 +404,7 @@

SOP Classes -

Transfer Syntaxes

+

Transfer Syntaxes

UID

@@ -429,9 +429,9 @@

Transfer Syntaxes -

Basic Worklist Management Service

+

Basic Worklist Management Service

-

SOP Classes

+

SOP Classes

UID

@@ -446,7 +446,7 @@

SOP Classes -

Transfer Syntaxes

+

Transfer Syntaxes

UID

@@ -471,9 +471,9 @@

Transfer Syntaxes -

Unified Procedure Step Service

+

Unified Procedure Step Service

-

SOP Classes

+

SOP Classes

UID

@@ -488,7 +488,7 @@

SOP Classes -

Transfer Syntaxes

+

Transfer Syntaxes

UID

diff --git a/dev/apps/getscu.html b/dev/apps/getscu.html index 73d8d72f8..be8b630be 100644 --- a/dev/apps/getscu.html +++ b/dev/apps/getscu.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -123,7 +123,7 @@
-

getscu

+

getscu

New in version 1.5.

@@ -131,7 +131,7 @@

getscu

-

Description

+

Description

The getscu application implements a Service Class User (SCU) for the Query/Retrieve service class. It requests an association with a peer Application Entity and once established, sends a C-GET @@ -141,7 +141,7 @@

Descriptionhere

-

Usage

+

Usage

The following example shows what happens when it is successfully run on an SCP at IP 127.0.0.1 and listen port 11112 that supports the Query/Retrieve (Get) service:

@@ -165,7 +165,7 @@

Usage

-

Parameters

+

Parameters

addr

TCP/IP address or hostname of DICOM peer

@@ -174,9 +174,9 @@

Parameters -

Options

+

Options

-

General Options

+

General Options

-q    --quiet

quiet mode, prints no warnings or errors

@@ -191,7 +191,7 @@

General Options -

Network Options

+

Network Options

-aet  --calling-aet [a]etitle (str)

set the local AE title (default: GETSCU)

@@ -208,7 +208,7 @@

Network Options -

Query Information Model Options

+

Query Information Model Options

-P    --patient

use patient root information model (default)

@@ -219,7 +219,7 @@

Query Information Model Options -

Query Options

+

Query Options

-k [k]eyword: (gggg,eeee)=str, keyword=str

add or override a query element using either an element tag as (group,element) or the element’s keyword (such as PatientName). @@ -232,7 +232,7 @@

Query Options -

Extended Negotiation Options

+

Extended Negotiation Options

--relational-retrieval

request the use of relational retrieval

@@ -241,7 +241,7 @@

Extended Negotiation Options -

Output Options

+

Output Options

-od [d]irectory, --output-directory [d]irectory (str)

write received objects to directory d

@@ -251,7 +251,7 @@

Output Options -

Keyword pathing

+

Keyword pathing

When using the -k keyword option it becomes possible to specify the query dataset (the Identifier) without needing to create a DICOM file. Multiple instances of -k can be used to build up the Identifier. For @@ -276,7 +276,7 @@

Keyword pathing -

Examples

+

Examples

Empty (0010,0010) Patient Name element:

-k PatientName=
 -k (0010,0010)=
@@ -291,14 +291,14 @@ 

Examplesint -or float depending on the VR:

+

Numeric VRs like US and FL are converted to either int +or float depending on the VR:

-k Columns=1024
 
 (0028, 0011) Columns                             US: 1024
 
-

Byte VRs like OB and OW are converted to bytes:

+

Byte VRs like OB and OW are converted to bytes:

-k PixelData=00FFEA08
 
 (7fe0, 0010) Pixel Data                          OW: b'\x00\xff\xea\x08'
@@ -360,13 +360,13 @@ 

Examples -

DICOM Conformance

+

DICOM Conformance

The getscu application supports the Query/Retrieve service classes as an SCU. The following SOP classes are supported:

-

Query/Retrieve Service

+

Query/Retrieve Service

-

SOP Classes

+

SOP Classes

UID

@@ -390,7 +390,7 @@

SOP Classes -

Transfer Syntaxes

+

Transfer Syntaxes

UID

@@ -416,7 +416,7 @@

Transfer Syntaxes -

SOP Classes

+

SOP Classes

UID

@@ -850,7 +850,7 @@

SOP Classes -

Transfer Syntaxes

+

Transfer Syntaxes

UID

diff --git a/dev/apps/index.html b/dev/apps/index.html index 464a22554..8c79ccc1d 100644 --- a/dev/apps/index.html +++ b/dev/apps/index.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -100,7 +100,7 @@
-

Applications

+

Applications

  • echoscp
  • diff --git a/dev/apps/keyword_pathing.html b/dev/apps/keyword_pathing.html index 362e0e371..423920939 100644 --- a/dev/apps/keyword_pathing.html +++ b/dev/apps/keyword_pathing.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -88,7 +88,7 @@
    -

    Keyword pathing

    +

    Keyword pathing

    When using the -k keyword option it becomes possible to specify the query dataset (the Identifier) without needing to create a DICOM file. Multiple instances of -k can be used to build up the Identifier. For @@ -113,7 +113,7 @@

    Keyword pathing -

    Examples

    +

    Examples

    Empty (0010,0010) Patient Name element:

    -k PatientName=
     -k (0010,0010)=
    @@ -128,14 +128,14 @@ 

    Examplesint -or float depending on the VR:

    +

    Numeric VRs like US and FL are converted to either int +or float depending on the VR:

    -k Columns=1024
     
     (0028, 0011) Columns                             US: 1024
     
    -

    Byte VRs like OB and OW are converted to bytes:

    +

    Byte VRs like OB and OW are converted to bytes:

    -k PixelData=00FFEA08
     
     (7fe0, 0010) Pixel Data                          OW: b'\x00\xff\xea\x08'
    diff --git a/dev/apps/movescu.html b/dev/apps/movescu.html
    index 56a476274..3b036dac2 100644
    --- a/dev/apps/movescu.html
    +++ b/dev/apps/movescu.html
    @@ -14,11 +14,11 @@
         
       
       
    -        
    -        
    -        
    -        
    -        
    +        
    +        
    +        
    +        
    +        
         
         
         
    @@ -125,7 +125,7 @@
                
    -

    movescu

    +

    movescu

    New in version 1.5.

    @@ -133,7 +133,7 @@

    movescu -

    Description

    +

    Description

    The movescu application implements a Service Class User (SCU) for the Query/Retrieve service class and optionally a Service Class Provider (SCP) for the Storage @@ -145,7 +145,7 @@

    Descriptionhere

    -

    Usage

    +

    Usage

    The following example shows what happens when it is successfully run on an SCP at IP 127.0.0.1 and listen port 11112 that supports the Query/Retrieve service with the default Move Destination AE title @@ -194,7 +194,7 @@

    Usage

    -

    Parameters

    +

    Parameters

    addr

    TCP/IP address or hostname of DICOM peer

    @@ -203,9 +203,9 @@

    Parameters -

    Options

    +

    Options

    -

    General Options

    +

    General Options

    -q    --quiet

    quiet mode, prints no warnings or errors

    @@ -220,7 +220,7 @@

    General Options -

    Network Options

    +

    Network Options

    -aet  --calling-aet [a]etitle (str)

    set the local AE title (default: MOVESCU)

    @@ -239,7 +239,7 @@

    Network Options -

    Storage SCP Options

    +

    Storage SCP Options

    --store

    start a Storage SCP that can be used as the move destination

    @@ -250,7 +250,7 @@

    Storage SCP Options -

    Query Information Model Options

    +

    Query Information Model Options

    -P    --patient

    use patient root information model (default)

    @@ -261,7 +261,7 @@

    Query Information Model Options -

    Query Options

    +

    Query Options

    -k [k]eyword: (gggg,eeee)=str, keyword=str

    add or override a query element using either an element tag as (group,element) or the element’s keyword (such as PatientName). @@ -274,7 +274,7 @@

    Query Options -

    Extended Negotiation Options

    +

    Extended Negotiation Options

    --relational-retrieval

    request the use of relational retrieval

    @@ -283,7 +283,7 @@

    Extended Negotiation Options -

    Output Options

    +

    Output Options

    -od [d]irectory, --output-directory [d]irectory (str)

    write received objects to directory d (with --store)

    @@ -293,7 +293,7 @@

    Output Options -

    Keyword pathing

    +

    Keyword pathing

    When using the -k keyword option it becomes possible to specify the query dataset (the Identifier) without needing to create a DICOM file. Multiple instances of -k can be used to build up the Identifier. For @@ -318,7 +318,7 @@

    Keyword pathing -

    Examples

    +

    Examples

    Empty (0010,0010) Patient Name element:

    -k PatientName=
     -k (0010,0010)=
    @@ -333,14 +333,14 @@ 

    Examplesint -or float depending on the VR:

    +

    Numeric VRs like US and FL are converted to either int +or float depending on the VR:

    -k Columns=1024
     
     (0028, 0011) Columns                             US: 1024
     
    -

    Byte VRs like OB and OW are converted to bytes:

    +

    Byte VRs like OB and OW are converted to bytes:

    -k PixelData=00FFEA08
     
     (7fe0, 0010) Pixel Data                          OW: b'\x00\xff\xea\x08'
    @@ -402,14 +402,14 @@ 

    Examples -

    DICOM Conformance

    +

    DICOM Conformance

    The movescu application supports the Query/Retrieve service classes as an SCU and the Storage service as an SCP (with the --store option). The following SOP classes are supported:

    -

    Query/Retrieve Service

    +

    Query/Retrieve Service

    -

    SOP Classes

    +

    SOP Classes

UID

@@ -433,7 +433,7 @@

SOP Classes -

Transfer Syntaxes

+

Transfer Syntaxes

UID

@@ -458,9 +458,9 @@

Transfer Syntaxes -

Storage Service

+

Storage Service

-

SOP Classes

+

SOP Classes

UID

@@ -907,7 +907,7 @@

SOP Classes

- + @@ -926,7 +926,7 @@

SOP Classes -

Transfer Syntaxes

+

Transfer Syntaxes

UID

1.2.840.10008.5.1.4.1.1.481.11

RT Segmentation Annotation Storge

RT Segmentation Annotation Storage

1.2.840.10008.5.1.4.1.1.481.12

RT Radiation Set Storage

diff --git a/dev/apps/qrscp.html b/dev/apps/qrscp.html index 686a6ea9b..88bedea5b 100644 --- a/dev/apps/qrscp.html +++ b/dev/apps/qrscp.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -120,7 +120,7 @@
-

qrscp

+

qrscp

New in version 1.5.

@@ -128,7 +128,7 @@

qrscp

-

Description

+

Description

The qrscp application implements a Service Class Provider (SCP) for the Verification, Storage and Query/Retrieve service classes. It listens for incoming association requests on the @@ -155,7 +155,7 @@

Descriptionhere

-

Usage

+

Usage

Start the application using the default configuration, which listens on port 11112:

$ python -m pynetdicom qrscp
@@ -172,9 +172,9 @@ 

Usage

-

Options

+

Options

-

General Options

+

General Options

-c    --config [f]ilename

use configuration file f, see the configuration file section for more information

@@ -194,7 +194,7 @@

General Options -

Network Options

+

Network Options

-aet  --ae-title [a]etitle (str)

override the configured local AE title

@@ -213,7 +213,7 @@

Network Options -

Database Options

+

Database Options

--database-location [f]ile (str)

override the location of the database using file f

@@ -226,9 +226,9 @@

Database Options -

Configuration File

+

Configuration File

The qrscp application uses a configuration file format compatible with the -configparser Python module. The [DEFAULT] section contains the +configparser Python module. The [DEFAULT] section contains the configuration options for the application itself while all other sections are assumed to be definitions for the Query/Retrieve service’s Move Destinations:

@@ -267,13 +267,13 @@

Configuration File -

DICOM Conformance

+

DICOM Conformance

The qrscp application supports the Verification, Storage and Query/Retrieve service classes as an SCP. The following SOP classes are supported:

-

Verification Service

+

Verification Service

-

SOP Classes

+

SOP Classes

UID

@@ -288,7 +288,7 @@

SOP Classes -

Transfer Syntaxes

+

Transfer Syntaxes

UID

@@ -348,9 +348,9 @@

Transfer Syntaxes -

Storage Service

+

Storage Service

-

SOP Classes

+

SOP Classes

UID

@@ -884,7 +884,7 @@

SOP Classes -

Transfer Syntaxes

+

Transfer Syntaxes

UID

@@ -944,9 +944,9 @@

Transfer Syntaxes -

Query/Retrieve Service

+

Query/Retrieve Service

-

SOP Classes

+

SOP Classes

UID

@@ -982,7 +982,7 @@

SOP Classes -

Transfer Syntaxes

+

Transfer Syntaxes

UID

@@ -1007,9 +1007,9 @@

Transfer Syntaxes -

Basic Worklist Management Service

+

Basic Worklist Management Service

-

SOP Classes

+

SOP Classes

UID

@@ -1024,7 +1024,7 @@

SOP Classes -

Transfer Syntaxes

+

Transfer Syntaxes

UID

@@ -1049,9 +1049,9 @@

Transfer Syntaxes -

Unified Procedure Step Service

+

Unified Procedure Step Service

-

SOP Classes

+

SOP Classes

UID

@@ -1066,7 +1066,7 @@

SOP Classes -

Transfer Syntaxes

+

Transfer Syntaxes

UID

diff --git a/dev/apps/storescp.html b/dev/apps/storescp.html index 3ca24406c..2926bb7d3 100644 --- a/dev/apps/storescp.html +++ b/dev/apps/storescp.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -118,12 +118,12 @@
-

storescp

+

storescp

$ python -m pynetdicom storescp [options] port
 
-

Description

+

Description

The storescp application implements a Service Class Provider (SCP) for the Storage service class. It listens for incoming association requests on the specified port, and once an association @@ -131,7 +131,7 @@

Descriptionhere

-

Usage

+

Usage

The following example shows what happens when it is started and receives a C-STORE request from a peer:

$ python -m pynetdicom storescp 11112
@@ -173,9 +173,9 @@ 

Usage

-

Options

+

Options

-

General Options

+

General Options

-q    --quiet

quiet mode, prints no warnings or errors

@@ -190,7 +190,7 @@

General Options -

Network Options

+

Network Options

-aet  --ae-title [a]etitle (str)

set the local AE title (default: STORESCP)

@@ -205,7 +205,7 @@

Network Options -

Preferred Transfer Syntaxes

+

Preferred Transfer Syntaxes

-x=   --prefer-uncompr

prefer explicit VR local byte order

@@ -218,7 +218,7 @@

Preferred Transfer Syntaxes -

Output

+

Output

-od [d]irectory, --output-directory [d]irectory (str)

write received objects to directory d

@@ -227,7 +227,7 @@

Output

-

Miscellaneous

+

Miscellaneous

--no-echo

don’t act as a verification SCP

@@ -235,14 +235,14 @@

Miscellaneous -

DICOM Conformance

+

DICOM Conformance

The storescp application supports the Verification (unless --no-echo is used) and Storage service classes as an SCP. The following SOP classes are supported:

-

Verification Service

+

Verification Service

-

SOP Classes

+

SOP Classes

UID

@@ -257,7 +257,7 @@

SOP Classes -

Transfer Syntaxes

+

Transfer Syntaxes

UID

@@ -282,9 +282,9 @@

Transfer Syntaxes -

Storage Service

+

Storage Service

-

SOP Classes

+

SOP Classes

UID

@@ -818,7 +818,7 @@

SOP Classes -

Transfer Syntaxes

+

Transfer Syntaxes

UID

diff --git a/dev/apps/storescu.html b/dev/apps/storescu.html index 969297444..95b39b099 100644 --- a/dev/apps/storescu.html +++ b/dev/apps/storescu.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -118,12 +118,12 @@
-

storescu

+

storescu

$ python -m pynetdicom storescu [options] addr port path
 
-

Description

+

Description

The storescu application implements a Service Class User (SCU) for the Storage service class. It requests an association with a peer Application Entity and once established requests the @@ -131,7 +131,7 @@

Descriptionhere

-

Usage

+

Usage

The following example shows what happens when it is successfully run on an SCP at IP 127.0.0.1 and listen port 11112 that supports the Storage Service:

@@ -179,7 +179,7 @@

Usage

-

Parameters

+

Parameters

addr

TCP/IP address or hostname of DICOM peer

@@ -191,9 +191,9 @@

Parameters -

Options

+

Options

-

General Options

+

General Options

-q    --quiet

quiet mode, prints no warnings or errors

@@ -208,14 +208,14 @@

General Options -

Input Options

+

Input Options

-r    --recurse

recursively search the given directory

-

Network Options

+

Network Options

-aet  --calling-aet [a]etitle (str)

set the local AE title (default: STORESCU)

@@ -232,7 +232,7 @@

Network Options -

Transfer Syntax Options

+

Transfer Syntax Options

-xe   --request-little

request explicit VR little endian TS only

@@ -243,7 +243,7 @@

Transfer Syntax Options

-

Miscellaneous Options

+

Miscellaneous Options

-cx   --single-context

only request the presentation contexts required for the input DICOM file(s)

@@ -252,13 +252,13 @@

Miscellaneous Options

-

DICOM Conformance

+

DICOM Conformance

The storescu application supports the Storage service class as an SCU. The following SOP classes are supported:

-

Storage Service

+

Storage Service

-

SOP Classes

+

SOP Classes

UID

@@ -792,7 +792,7 @@

SOP Classes -

Transfer Syntaxes

+

Transfer Syntaxes

By default, the application will request presentation contexts using these transfer syntaxes:

UID

diff --git a/dev/changelog/index.html b/dev/changelog/index.html index 3562b087e..757d26245 100644 --- a/dev/changelog/index.html +++ b/dev/changelog/index.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -110,7 +110,7 @@
-

Release Notes

+

Release Notes

  • 2.1.0
  • diff --git a/dev/changelog/v1.0.0.html b/dev/changelog/v1.0.0.html index c294ccf7f..64b549500 100644 --- a/dev/changelog/v1.0.0.html +++ b/dev/changelog/v1.0.0.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -115,9 +115,9 @@
    -

    1.0.0

    +

    1.0.0

    -

    Fixes

    +

    Fixes

    • Fixed upstream pydicom changes to AE elements breaking logging (#195)

    • @@ -128,7 +128,7 @@

      Fixes

    -

    Changes

    +

    Changes

    • applicationentity module renamed ae

    • ApplicationEntity interface updated

      @@ -187,7 +187,7 @@

      Changes -

      Enhancements

      +

      Enhancements

      • Add context and info parameters to on_c_* callbacks (#45, #54, #65, #106)

      • diff --git a/dev/changelog/v1.1.0.html b/dev/changelog/v1.1.0.html index 5d492b8e9..d7949fb2f 100644 --- a/dev/changelog/v1.1.0.html +++ b/dev/changelog/v1.1.0.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -116,9 +116,9 @@
        -

        1.1.0

        +

        1.1.0

        -

        Fixes

        +

        Fixes

        • No longer using a list as the default value for the transfer_syntax keyword argument in AE.add_requested_context(), @@ -136,7 +136,7 @@

          Fixes

        -

        Enhancements

        +

        Enhancements

        • Added select_timeout parameter to Association.start() to allow the user to specify how long the select.select() call blocks for. @@ -145,7 +145,7 @@

          Enhancements -

          Changes

          +

          Changes

          • AE.quit() is deprecated and will be removed in v1.2. Use AE.stop() instead.

          • diff --git a/dev/changelog/v1.2.0.html b/dev/changelog/v1.2.0.html index b06f6792d..3d77fde74 100644 --- a/dev/changelog/v1.2.0.html +++ b/dev/changelog/v1.2.0.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -116,9 +116,9 @@
            -

            1.2.0

            +

            1.2.0

            -

            Fixes

            +

            Fixes

            • Fixed network_timeout not working when acting as the association requestor and an A-ABORT not being sent when the timeout expired. (#286)

            • @@ -133,7 +133,7 @@

              Fixes

            -

            Enhancements

            +

            Enhancements

            • Added _config module and the ability to skip the dataset decoding step in C-STORE operations by setting _config.DECODE_STORE_DATASETS to False @@ -188,7 +188,7 @@

              Enhancements -

              Changes

              +

              Changes

              • AE.quit(), DIMSEMessage.ID, ACSE.is_released() and ACSE.release_association() removed as per planned deprecation.

              • diff --git a/dev/changelog/v1.3.0.html b/dev/changelog/v1.3.0.html index 817284d4e..76c6d53fa 100644 --- a/dev/changelog/v1.3.0.html +++ b/dev/changelog/v1.3.0.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -116,9 +116,9 @@
                -

                1.3.0

                +

                1.3.0

                -

                Fixes

                +

                Fixes

                • Exceptions raised during generator operation for C-GET and C-MOVE services now handled properly.

                • @@ -136,7 +136,7 @@

                  Fixes

                -

                Enhancements

                +

                Enhancements

                • Added event-handler system as a replacement for the callback system

                  @@ -158,7 +158,7 @@

                  Enhancements -

                  Changes

                  +

                  Changes

                  • The following have been removed as per planned deprecation:

                      diff --git a/dev/changelog/v1.3.1.html b/dev/changelog/v1.3.1.html index b9027d1fc..e00154a05 100644 --- a/dev/changelog/v1.3.1.html +++ b/dev/changelog/v1.3.1.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -114,9 +114,9 @@
                      -

                      1.3.1

                      +

                      1.3.1

                      -

                      Fixes

                      +

                      Fixes

                      • Fixed association being aborted due to a rejected presentation context performing a validation check on the transfer syntax value (#342)

                      • diff --git a/dev/changelog/v1.4.0.html b/dev/changelog/v1.4.0.html index 1b2068386..37f5876e7 100644 --- a/dev/changelog/v1.4.0.html +++ b/dev/changelog/v1.4.0.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -116,9 +116,9 @@
                        -

                        1.4.0

                        +

                        1.4.0

                        -

                        Fixes

                        +

                        Fixes

                        • Fixed Query Retrieve service class not responded with 0x0000 (Success) if no matches were yielded by the C-FIND request handler.

                        • @@ -135,7 +135,7 @@

                          Fixes

                        -

                        Enhancements

                        +

                        Enhancements

                        • Added Event.move_destination (for evt.EVT_C_MOVE), Event.action_type @@ -172,7 +172,7 @@

                          Enhancements -

                          Changes

                          +

                          Changes

                          • The following have been removed as per planned deprecation:

                              @@ -190,7 +190,7 @@

                              ChangesAssociation.send_c_find(), Association.send_c_get() and Association.send_c_move() now require a query_model parameter that is used to set the Affected SOP Class UID value. The parameter should -pass a pydicom pydicom.uid.UID or UID string. Passing a key that +pass a pydicom pydicom.uid.UID or UID string. Passing a key that corresponds to a given UID is deprecated and will be removed in v1.5. (#348)

                            • Event.name and Event.description properties removed, use diff --git a/dev/changelog/v1.4.1.html b/dev/changelog/v1.4.1.html index 367ec15bb..6147e6b95 100644 --- a/dev/changelog/v1.4.1.html +++ b/dev/changelog/v1.4.1.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -114,9 +114,9 @@

                              -

                              1.4.1

                              +

                              1.4.1

                              -

                              Fixes

                              +

                              Fixes

                              • Fixed server socket not closing properly after association release (#382)

                              • diff --git a/dev/changelog/v1.5.0.html b/dev/changelog/v1.5.0.html index 788909e1e..931ed5cdb 100644 --- a/dev/changelog/v1.5.0.html +++ b/dev/changelog/v1.5.0.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -117,11 +117,11 @@
                                -

                                1.5.0

                                +

                                1.5.0

                                This will be the last release that supports Python 2, with fixes for serious bugs being available for a year after the release date.

                                -

                                Fixes

                                +

                                Fixes

                                -

                                Enhancements

                                +

                                Enhancements

                                • Added configuration option _config.USE_SHORT_DIMSE_AET so elements with a VR of AE in DIMSE messages are no longer padded to the maximum 16 characters. @@ -203,13 +203,13 @@

                                  Enhancementsevt.EVT_C_MOVE, the handler function may optionally yield (addr, port, kwargs) as its first yield, where kwargs is a -dict containing keyword parameters that will be passed to +dict containing keyword parameters that will be passed to AE.associate() when the association with the Storage SCP is initiated.

                                -

                                Changes

                                +

                                Changes

                                • Using a key that corresponds to a given UID with Association.send_c_find(), Association.send_c_get() and @@ -238,7 +238,7 @@

                                  Changes -

                                  Known Issues

                                  +

                                  Known Issues

                                  • TLS v1.3 (with OpenSSL 1.1.1 or higher) is not currently supported (#364)

                                  • diff --git a/dev/changelog/v1.5.1.html b/dev/changelog/v1.5.1.html index 76e1ffa0a..d0b5ffb6b 100644 --- a/dev/changelog/v1.5.1.html +++ b/dev/changelog/v1.5.1.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -114,9 +114,9 @@
                                    -

                                    1.5.1

                                    +

                                    1.5.1

                                    -

                                    Changes

                                    +

                                    Changes

                                    • Switch pydicom dependency to >= 1.4.2 (#493)

                                    diff --git a/dev/changelog/v1.5.2.html b/dev/changelog/v1.5.2.html index 22481ba3a..764ee49fa 100644 --- a/dev/changelog/v1.5.2.html +++ b/dev/changelog/v1.5.2.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -114,9 +114,9 @@
                                    -

                                    1.5.2

                                    +

                                    1.5.2

                                    -

                                    Changes

                                    +

                                    Changes

                                    • The Association.send_n_*() methods now allow the use of UPS Push as the Requested or Affected SOP Class when UPS Pull, Watch, Event, or Query has been diff --git a/dev/changelog/v1.5.3.html b/dev/changelog/v1.5.3.html index ff88af807..12c18d4cd 100644 --- a/dev/changelog/v1.5.3.html +++ b/dev/changelog/v1.5.3.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -114,9 +114,9 @@

                                      -

                                      1.5.3

                                      +

                                      1.5.3

                                      -

                                      Fixes

                                      +

                                      Fixes

                                      • Fixed not processing multiple PDUs received when acting as the association requestor with SSL/TLS (#528)

                                      • diff --git a/dev/changelog/v1.5.4.html b/dev/changelog/v1.5.4.html index bfe35b692..a34f840fd 100644 --- a/dev/changelog/v1.5.4.html +++ b/dev/changelog/v1.5.4.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -114,9 +114,9 @@
                                        -

                                        1.5.4

                                        +

                                        1.5.4

                                        -

                                        Fixes

                                        +

                                        Fixes

                                        • Fixed not handling an A-ABORT with a reserved (0x01) ‘source’ value (#561)

                                        • diff --git a/dev/changelog/v1.5.5.html b/dev/changelog/v1.5.5.html index 7421d10ee..b24f5ba29 100644 --- a/dev/changelog/v1.5.5.html +++ b/dev/changelog/v1.5.5.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -114,9 +114,9 @@
                                          -

                                          1.5.5

                                          +

                                          1.5.5

                                          -

                                          Fixes

                                          +

                                          Fixes

                                          • Fixed C-FIND SCPs sending the previous pending Identifier with the final success response (#571)

                                          • diff --git a/dev/changelog/v1.5.6.html b/dev/changelog/v1.5.6.html index bed0d5203..7f801f975 100644 --- a/dev/changelog/v1.5.6.html +++ b/dev/changelog/v1.5.6.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -114,9 +114,9 @@
                                            -

                                            1.5.6

                                            +

                                            1.5.6

                                            -

                                            Fixes

                                            +

                                            Fixes

                                            • Fixes for the C-STORE handler used by the storescp, qrscp and movescu apps (#579, #581)

                                            • diff --git a/dev/changelog/v1.5.7.html b/dev/changelog/v1.5.7.html index 429d91541..a7dd310a1 100644 --- a/dev/changelog/v1.5.7.html +++ b/dev/changelog/v1.5.7.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -115,9 +115,9 @@
                                              -

                                              1.5.7

                                              +

                                              1.5.7

                                              -

                                              Fixes

                                              +

                                              Fixes

                                              • Fixed not sending a failure response if all C-GET or C-MOVE sub-operations failed when acting as an Query/Retrieve SCP (#577)

                                              • @@ -126,7 +126,7 @@

                                                Fixes

                                              -

                                              Changes

                                              +

                                              Changes

                                              • The Failed SOP Instance UID List sent with the final C-GET/C-MOVE SCP failure or warning responses no longer includes the SOP Instances for diff --git a/dev/changelog/v2.0.0.html b/dev/changelog/v2.0.0.html index fb3636faa..59711f2bc 100644 --- a/dev/changelog/v2.0.0.html +++ b/dev/changelog/v2.0.0.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -116,19 +116,19 @@

                                                -

                                                2.0.0

                                                +

                                                2.0.0

                                                The major breaking changes with the version 2.0 release are:

                                                • Python 2 is no longer supported

                                                • SOP class variable names now use their new DICOM UID keywords (for example, VerificationSOPClass becomes simply Verification)

                                                • -
                                                • AE title values should be str rather than bytes and trailing +

                                                • AE title values should be str rather than bytes and trailing padding spaces are stripped from the raw value during decoding.

                                                -

                                                Fixes

                                                +

                                                Fixes

                                                • Fixed not processing multiple PDUs received when acting as the association requestor with SSL/TLS (#528)

                                                • @@ -154,7 +154,7 @@

                                                  Fixes

                                                -

                                                Enhancements

                                                +

                                                Enhancements

                                                • Added the ability to pass a file path to a dataset to send_c_store() (#517)

                                                • @@ -198,7 +198,7 @@

                                                  Enhancements -

                                                  Changes

                                                  +

                                                  Changes

                                                  • Removed support for Python 2.7, 3.5 and 3.6, added it for Python 3.9 and 3.10

                                                  • Minimum pydicom version is 2.2

                                                  • @@ -209,7 +209,7 @@

                                                    ChangesVerificationSOPClass is now simply Verification

                                                  • All AE titles and DIMSE elements with a VR of AE should be set using an -ASCII str rather than bytes

                                                  • +ASCII str rather than bytes

                                                  • The default bind address used when making association requests has been changed to ("127.0.0.1", 0) (#680)

                                                  • DULServiceProvider.primitive and DULServiceProvider.pdu have been removed

                                                  • diff --git a/dev/changelog/v2.0.1.html b/dev/changelog/v2.0.1.html index 5d4c3202a..fb490b875 100644 --- a/dev/changelog/v2.0.1.html +++ b/dev/changelog/v2.0.1.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -114,9 +114,9 @@
                                                    -

                                                    2.0.1

                                                    +

                                                    2.0.1

                                                    -

                                                    Changes

                                                    +

                                                    Changes

                                                    • Revert change to default bind address

                                                    • Don’t allow passing an address tuple to T_CONNECT initialisation

                                                    • diff --git a/dev/changelog/v2.1.0.html b/dev/changelog/v2.1.0.html index 3e811723c..97b9117ae 100644 --- a/dev/changelog/v2.1.0.html +++ b/dev/changelog/v2.1.0.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -116,9 +116,9 @@
                                                      -

                                                      2.1.0

                                                      +

                                                      2.1.0

                                                      -

                                                      Fixes

                                                      +

                                                      Fixes

                                                      • Fixed reserved A-ASSOCIATE-AC parameters being tested (#746)

                                                      • Fixed datasets not transferring correctly when using @@ -129,10 +129,10 @@

                                                        Fixes

                                                      -

                                                      Enhancements

                                                      +

                                                      Enhancements

                                                      -

                                                      Changes

                                                      +

                                                      Changes

                                                      • Add preliminary support for Python 3.12

                                                      diff --git a/dev/examples/basic_worklist.html b/dev/examples/basic_worklist.html index daa3e1a36..a4eef64a3 100644 --- a/dev/examples/basic_worklist.html +++ b/dev/examples/basic_worklist.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -107,13 +107,13 @@
                                                      -

                                                      Basic Worklist Management Service Examples

                                                      +

                                                      Basic Worklist Management Service Examples

                                                      The DICOM Basic Worklist Management Service provides a mechanism for a service user to access worklists on another AE. Querying of the SCP for worklists is accomplished by utilising the DIMSE C-FIND service.

                                                      -

                                                      Basic Worklist Management SCU

                                                      +

                                                      Basic Worklist Management SCU

                                                      Associate with a peer DICOM Application Entity and request the worklist for the application with AE title CTSCANNER for the 5th October 2018. You may need to change the Identifier to meet the requirements of the @@ -163,7 +163,7 @@

                                                      Basic Worklist Management SCU -

                                                      Basic Worklist Management SCP

                                                      +

                                                      Basic Worklist Management SCP

                                                      The approach will be similar to the Query/Retrieve (Find) SCP example.

                                                      diff --git a/dev/examples/display.html b/dev/examples/display.html index 125d88044..b7afd9bfd 100644 --- a/dev/examples/display.html +++ b/dev/examples/display.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -107,13 +107,13 @@
                                                      -

                                                      Display System Management Service Examples

                                                      +

                                                      Display System Management Service Examples

                                                      The DICOM Display System Management Service allows an Application Entity to retrieve Display Subsystem parameters from a peer by using the N-GET service. It only has a single supported SOP Class.

                                                      -

                                                      Display System Management SCU

                                                      +

                                                      Display System Management SCU

                                                      Associate with a peer DICOM Application Entity and request the use of the Display System Management Service.

                                                      from pynetdicom import AE, debug_logger
                                                      @@ -163,7 +163,7 @@ 

                                                      Display System Management SCU -

                                                      Display System Management SCP

                                                      +

                                                      Display System Management SCP

                                                      The following represents a toy implementation of a Display System Management SCP, where the SCU has sent a request with an Attribute Identifier List containing the single tag (0008,0070).

                                                      diff --git a/dev/examples/index.html b/dev/examples/index.html index 7274d0c6c..a0eddb5f9 100644 --- a/dev/examples/index.html +++ b/dev/examples/index.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -102,7 +102,7 @@
                                                      -

                                                      Code Examples

                                                      +

                                                      Code Examples

                                                      • Basic Worklist Management Service Examples
                                                      • diff --git a/dev/examples/mpps.html b/dev/examples/mpps.html index ad2c08d3b..a1eafc21e 100644 --- a/dev/examples/mpps.html +++ b/dev/examples/mpps.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -108,7 +108,7 @@
                                                        -

                                                        Modality Performed Procedure Step Management Service Examples

                                                        +

                                                        Modality Performed Procedure Step Management Service Examples

                                                        The DICOM Modality Performed Procedure Step Management (MPPS) service allows an Application Entity to log or track procedures performed by a modality through the N-CREATE, N-SET, N-EVENT-REPORT and N-GET services. It @@ -126,7 +126,7 @@

                                                        Modality Performed Procedure Step Management Service Examples -

                                                        MPPS - Create SCU

                                                        +

                                                        MPPS - Create SCU

                                                        Associate with a peer and request the use of the MPPS Service to create a new SOP Instance.

                                                        from pydicom.dataset import Dataset
                                                        @@ -223,7 +223,7 @@ 

                                                        MPPS - Create SCU -

                                                        MPPS - Set SCU

                                                        +

                                                        MPPS - Set SCU

                                                        Once the MPPS SOP Instance has successfully been created, the modality can send one or more N-SET requests to the MPPS SCP in order to update the attributes of the SOP Instance. When the procedure has been completed a final N-SET @@ -298,7 +298,7 @@

                                                        MPPS - Set SCU -

                                                        MPPS SCP

                                                        +

                                                        MPPS SCP

                                                        The following represents a toy implementation of an MPPS SCP (Modality Performed Procedure Step SOP Class only).

                                                        Check the diff --git a/dev/examples/print.html b/dev/examples/print.html index a20ea8c96..9bfb1e4fe 100644 --- a/dev/examples/print.html +++ b/dev/examples/print.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -111,7 +111,7 @@

@@ -264,7 +264,7 @@

DIMSE Services Available -

Example

+

Example

Print the image data from a SOP Instance onto a single A4 page. For a real-life Print SCP you would need to check its conformance statement to see what print options (medium types, page sizes, layouts, etc) are supported. This diff --git a/dev/examples/qr_find.html b/dev/examples/qr_find.html index afab4a7d3..f95725cfc 100644 --- a/dev/examples/qr_find.html +++ b/dev/examples/qr_find.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -107,14 +107,14 @@

-

Query/Retrieve (Find) Service Examples

+

Query/Retrieve (Find) Service Examples

The DICOM Query/Retrieve Service provides a mechanism for a service user to query the SOP Instances managed by a QR SCP. The QR (Find) SOP classes allow an SCU to receive a list of attributes matching the requested query. This is accomplished through the DIMSE C-FIND service.

-

Query/Retrieve (Find) SCU

+

Query/Retrieve (Find) SCU

Associate with a peer DICOM Application Entity and request the SCP search for SOP Instances with a Patient Name matching CITIZEN^Jan using Patient Root Query/Retrieve Information Model - Find at the 'PATIENT' level.

@@ -194,7 +194,7 @@

Query/Retrieve (Find) SCU -

Query/Retrieve (Find) SCP

+

Query/Retrieve (Find) SCP

The following represents a toy implementation of a Query/Retrieve (Find) SCP where the SCU has sent the following Identifier dataset under the Patient Root Query Retrieve Information Model - Find context.

diff --git a/dev/examples/qr_get.html b/dev/examples/qr_get.html index 8a22bfbf4..9760e149c 100644 --- a/dev/examples/qr_get.html +++ b/dev/examples/qr_get.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -107,7 +107,7 @@
-

Query/Retrieve (Get) Service Examples

+

Query/Retrieve (Get) Service Examples

The DICOM Query/Retrieve Service provides a mechanism for a service user to query and retrieve the SOP Instances managed by a QR SCP. The QR (Get) SOP classes allow an SCU to receive SOP @@ -116,7 +116,7 @@

Query/Retrieve (Get) Service Examples -

Query/Retrieve (Get) SCU

+

Query/Retrieve (Get) SCU

Associate with a peer DICOM Application Entity and request the retrieval of all CT datasets for the patient with Patient ID 1234567 belonging to the series with Study Instance UID 1.2.3 and Series Instance UID @@ -230,7 +230,7 @@

Query/Retrieve (Get) SCU

-

Query/Retrieve (Get) SCP

+

Query/Retrieve (Get) SCP

The following represents a toy implementation of a Query/Retrieve (Get) SCP where the SCU has sent the following Identifier dataset under the Patient Root Query Retrieve Information Model - Get context.

diff --git a/dev/examples/qr_move.html b/dev/examples/qr_move.html index 6dd3886e1..9236d5d76 100644 --- a/dev/examples/qr_move.html +++ b/dev/examples/qr_move.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -107,7 +107,7 @@
-

Query/Retrieve (Move) Service Examples

+

Query/Retrieve (Move) Service Examples

The DICOM Query/Retrieve Service provides a mechanism for a service user to query and retrieve the SOP Instances managed by a QR SCP. The QR (Move) SOP classes allow an SCU to request an SCP @@ -118,7 +118,7 @@

Query/Retrieve (Move) Service Examples0xA801 status code.

-

Query/Retrieve (Move) SCU

+

Query/Retrieve (Move) SCU

Associate with a peer DICOM Application Entity and request it send all SOP Instances for the patient with Patient ID 1234567 belonging to the series with Study Instance UID 1.2.3 and Series Instance UID @@ -232,7 +232,7 @@

Query/Retrieve (Move) SCU -

Query/Retrieve (Move) SCP

+

Query/Retrieve (Move) SCP

The following represents a toy implementation of a Query/Retrieve (Move) SCP where the SCU has sent the following Identifier dataset under the Patient Root Query Retrieve Information Model - Move context and the move destination @@ -327,7 +327,7 @@

Query/Retrieve (Move) SCU(addr, port, -kwargs) instead of (addr, port), where kwargs is a dict +kwargs) instead of (addr, port), where kwargs is a dict containing keyword parameters that’ll be passed to AE.associate(). In particular, this allows you to tailor the presentation contexts that will be diff --git a/dev/examples/relevant_patient.html b/dev/examples/relevant_patient.html index 0e6cc5d54..53c662b0d 100644 --- a/dev/examples/relevant_patient.html +++ b/dev/examples/relevant_patient.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -107,12 +107,12 @@
-

Relevant Patient Information Query Service Examples

+

Relevant Patient Information Query Service Examples

The DICOM Relevant Patient Information Query Service provides a mechanism for an SCU to access relevant patient information managed by an SCP. This is accomplished through the DIMSE C-FIND service.

-

Relevant Patient Information SCU

+

Relevant Patient Information SCU

Associate with a peer DICOM Application Entity and request information on a single patient with ID 1234567.

from pydicom.dataset import Dataset
@@ -158,7 +158,7 @@ 

Relevant Patient Information SCU -

Relevant Patient Information SCP

+

Relevant Patient Information SCP

The following represents a toy implementation of a Relevant Patient Information Query SCP where the SCU has sent the following Identifier dataset under the General Relevant Patient Information Model Query context. diff --git a/dev/examples/storage.html b/dev/examples/storage.html index a6dae40fe..7cd14fb88 100644 --- a/dev/examples/storage.html +++ b/dev/examples/storage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -107,7 +107,7 @@

-

Storage Service Examples

+

Storage Service Examples

The DICOM Storage Service provides a mechanism for an SCU to request the transfer of supported Storage SOP Class instances to @@ -117,7 +117,7 @@

Storage Service Examples -

Storage SCU

+

Storage SCU

Associate with a peer DICOM Application Entity and request the transfer of a single CT dataset.

from pydicom import dcmread
@@ -190,7 +190,7 @@ 

Storage SCU -

Storage SCP

+

Storage SCP

Create an AE that supports the Storage Service and then listen for association requests on port 11112. When a storage request is diff --git a/dev/examples/verification.html b/dev/examples/verification.html index cf2f5f27b..8f5c36d86 100644 --- a/dev/examples/verification.html +++ b/dev/examples/verification.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -107,7 +107,7 @@

-

Verification Service Examples

+

Verification Service Examples

The DICOM Verification Service allows an Application Entity to verify application level communication between itself and another AE by using the DIMSE C-ECHO service. It only has a single @@ -123,7 +123,7 @@

Verification Service Examples -

Verification SCU

+

Verification SCU

Associate with a peer DICOM Application Entity and request the use of the Verification Service.

from pynetdicom import AE
@@ -167,7 +167,7 @@ 

Verification SCU -

Verification SCP

+

Verification SCP

Create an AE that supports the Verification Service and then listen for association requests on port 11112. When a verification request is received diff --git a/dev/genindex.html b/dev/genindex.html index 4b73c0ef9..9faa192b7 100644 --- a/dev/genindex.html +++ b/dev/genindex.html @@ -13,11 +13,11 @@ - - - - - + + + + + diff --git a/dev/index.html b/dev/index.html index 7bd3dcd14..e20859fb3 100644 --- a/dev/index.html +++ b/dev/index.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -89,7 +89,7 @@

-

pynetdicom

+

pynetdicom

pynetdicom is a pure Python package that implements the DICOM networking protocol. Working with @@ -98,7 +98,7 @@

pynetdicom -

Getting started

+

Getting started

If you’re new to pynetdicom then start here:

  • Basics: Installation | @@ -107,7 +107,7 @@

    Getting started -

    User Guide

    +

    User Guide

    The User Guide is intended as an overview for using pynetdcom and the concepts relevant to DICOM networking. It covers UIDs, presentation contexts, event handling, AEs and associating.

    @@ -115,7 +115,7 @@

    Getting startedAPI reference.

-

Code Examples

+

Code Examples

-

Supported Service Classes

+

Supported Service Classes

pynetdicom currently supports the following DICOM service classes:

  • Application Event Logging

  • @@ -186,7 +186,7 @@

    Supported Service Classes -

    Applications

    +

    Applications

    pynetdicom also includes some bundled applications

    • echoscp

    • @@ -200,7 +200,7 @@

      Supported Service Classes -

      Release Notes

      +

      Release Notes

      • v2.1.0

      • v2.0.1

      • diff --git a/dev/objects.inv b/dev/objects.inv index 971c3c49c..95885b9aa 100644 Binary files a/dev/objects.inv and b/dev/objects.inv differ diff --git a/dev/py-modindex.html b/dev/py-modindex.html index 0dee53516..09bd46a20 100644 --- a/dev/py-modindex.html +++ b/dev/py-modindex.html @@ -13,11 +13,11 @@ - - - - - + + + + + diff --git a/dev/reference/acse.html b/dev/reference/acse.html index 2e7c656d2..961788ba5 100644 --- a/dev/reference/acse.html +++ b/dev/reference/acse.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -112,8 +112,8 @@
        -
        -

        ACSE Service (pynetdicom.acse)

        +
        +

        ACSE Service (pynetdicom.acse)

        The Association Control Service Element (ACSE) handles association-related tasks, such as the processing of A-ASSOCIATE, A-RELEASE and A-ABORT primitives in response to service requests made by the user or a diff --git a/dev/reference/acse.provider.html b/dev/reference/acse.provider.html index 4c6f1bdc0..adeb9856e 100644 --- a/dev/reference/acse.provider.html +++ b/dev/reference/acse.provider.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -117,7 +117,7 @@

        -

        ACSE Service Provider (pynetdicom.acse)

        +

        ACSE Service Provider (pynetdicom.acse)

DIMSE-N Service

diff --git a/dev/reference/ae.html b/dev/reference/ae.html index f7e65a9af..fe2e8c815 100644 --- a/dev/reference/ae.html +++ b/dev/reference/ae.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -112,8 +112,8 @@
-
-

Application Entity (pynetdicom.ae)

+
+

Application Entity (pynetdicom.ae)

A representation of a DICOM Application Entity and one of pynetdicom’s two main user classes.

ACSE(assoc)

diff --git a/dev/reference/association.html b/dev/reference/association.html index c4a686394..2fcfd1ced 100644 --- a/dev/reference/association.html +++ b/dev/reference/association.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -113,8 +113,8 @@
-
-

Association (pynetdicom.association)

+
+

Association (pynetdicom.association)

Representation of a DICOM Association between two Application Entities and one of pynetdicom’s two main user classes.

diff --git a/dev/reference/config.html b/dev/reference/config.html index ec995eb53..d351003e3 100644 --- a/dev/reference/config.html +++ b/dev/reference/config.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -123,8 +123,8 @@
-
-

Configuration Options (pynetdicom._config)

+
+

Configuration Options (pynetdicom._config)

diff --git a/dev/reference/dimse.html b/dev/reference/dimse.html index 39e99c320..6d1f43acb 100644 --- a/dev/reference/dimse.html +++ b/dev/reference/dimse.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -115,7 +115,7 @@
-

DIMSE Service

+

DIMSE Service

The DICOM Message Service Element (DIMSE) provides the mechanism for message exchange between peer Application Entities once an Association between them has been established.

diff --git a/dev/reference/dimse.messages.html b/dev/reference/dimse.messages.html index 3357cdd47..55f83f1e3 100644 --- a/dev/reference/dimse.messages.html +++ b/dev/reference/dimse.messages.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -119,10 +119,10 @@
-
-

Messages (pynetdicom.dimse_messages)

+
+

Messages (pynetdicom.dimse_messages)

-

DIMSE-C Messages

+

DIMSE-C Messages

CODECS

@@ -162,7 +162,7 @@

DIMSE-C Messages -

DIMSE-N Messages

+

DIMSE-N Messages

C_CANCEL_RQ()

diff --git a/dev/reference/dimse.primitives.html b/dev/reference/dimse.primitives.html index 06a762455..6c70f510d 100644 --- a/dev/reference/dimse.primitives.html +++ b/dev/reference/dimse.primitives.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -119,10 +119,10 @@
-
-

Service Primitives (pynetdicom.dimse_primitives)

+
+

Service Primitives (pynetdicom.dimse_primitives)

-

DIMSE-C Primitives

+

DIMSE-C Primitives

N_ACTION_RQ()

@@ -147,7 +147,7 @@

DIMSE-C Primitives -

DIMSE-N Primitives

+

DIMSE-N Primitives

C_CANCEL()

diff --git a/dev/reference/dimse.provider.html b/dev/reference/dimse.provider.html index 311586ca3..a63440b0b 100644 --- a/dev/reference/dimse.provider.html +++ b/dev/reference/dimse.provider.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -118,8 +118,8 @@
-
-

Service Provider (pynetdicom.dimse)

+
+

Service Provider (pynetdicom.dimse)

The DIMSE Service Provider provides methods for sending and receiving messages to and from a peer AE.

N_ACTION()

diff --git a/dev/reference/dsutils.html b/dev/reference/dsutils.html index ceb9f2c4f..6125ed256 100644 --- a/dev/reference/dsutils.html +++ b/dev/reference/dsutils.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,24 +121,24 @@
-
-

Dataset Utilities (pynetdicom.dsutils)

+
+

Dataset Utilities (pynetdicom.dsutils)

This module provides DICOM Dataset related utilities.

-

Encoding and Decoding

+

Encoding and Decoding

- + - +

encode(ds, is_implicit_vr, is_little_endian)

Encode a pydicom Dataset ds.

Encode a pydicom Dataset ds.

decode(bytestring, is_implicit_vr, ...[, ...])

Decode bytestring to a pydicom Dataset.

Decode bytestring to a pydicom Dataset.

-

Miscellaneous

+

Miscellaneous

diff --git a/dev/reference/dul.html b/dev/reference/dul.html index 6836fff1f..14b5dc546 100644 --- a/dev/reference/dul.html +++ b/dev/reference/dul.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -116,7 +116,7 @@
-

DICOM Upper Layer

+

DICOM Upper Layer

The DICOM Upper Layer (DUL) service provides coordinates interaction between the ACSE, DIMSE and transport service providers.

diff --git a/dev/reference/dul.pdu.a_abort_rq.html b/dev/reference/dul.pdu.a_abort_rq.html index a38312290..febf73054 100644 --- a/dev/reference/dul.pdu.a_abort_rq.html +++ b/dev/reference/dul.pdu.a_abort_rq.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -127,12 +127,12 @@
-

A-ABORT-RQ PDU

+

A-ABORT-RQ PDU

An A-ABORT-RQ PDU is made of a sequence of mandatory fields and supports both the A-ABORT Service (user initiated) and the A-P-ABORT Service (provider initiated).

-

PDU

+

PDU

pretty_dataset(ds[, indent, indent_char])

diff --git a/dev/reference/dul.pdu.a_associate_ac.html b/dev/reference/dul.pdu.a_associate_ac.html index 64c84e1f5..652c50750 100644 --- a/dev/reference/dul.pdu.a_associate_ac.html +++ b/dev/reference/dul.pdu.a_associate_ac.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -127,13 +127,13 @@
-

A-ASSOCIATE-AC PDU

+

A-ASSOCIATE-AC PDU

An A-ASSOCIATE-AC PDU is made of a sequence of mandatory fields followed by a variable length field that must contain one Application Context item, one or more Presentation Context items and one User Information item. Sub-items shall exist for the Presentation Context and User Information items.

-

PDU

+

PDU

A_ABORT_RQ([primitive])

@@ -143,7 +143,7 @@

PDU
-

Variable Items

+

Variable Items

A_ASSOCIATE_AC([primitive])

@@ -159,7 +159,7 @@

Variable Items -

Presentation Context Sub-items

+

Presentation Context Sub-items

ApplicationContextItem()

@@ -172,7 +172,7 @@

Presentation Context Sub-items -

User Information Sub-items

+

User Information Sub-items

AbstractSyntaxSubItem()

diff --git a/dev/reference/dul.pdu.a_associate_rj.html b/dev/reference/dul.pdu.a_associate_rj.html index 51fe60dcf..75c6dd721 100644 --- a/dev/reference/dul.pdu.a_associate_rj.html +++ b/dev/reference/dul.pdu.a_associate_rj.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -127,10 +127,10 @@
-

A-ASSOCIATE-RJ PDU

+

A-ASSOCIATE-RJ PDU

An A-ASSOCIATE-RJ PDU is made of a sequence of mandatory fields.

-

PDU

+

PDU

MaximumLengthSubItem()

diff --git a/dev/reference/dul.pdu.a_associate_rq.html b/dev/reference/dul.pdu.a_associate_rq.html index a0e270026..9be6d13d8 100644 --- a/dev/reference/dul.pdu.a_associate_rq.html +++ b/dev/reference/dul.pdu.a_associate_rq.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -127,13 +127,13 @@
-

A-ASSOCIATE-RQ PDU

+

A-ASSOCIATE-RQ PDU

An A-ASSOCIATE-RQ PDU is made of a sequence of mandatory fields followed by a variable length field that must contain one Application Context item, one or more Presentation Context items and one User Information item. Sub-items shall exist for the Presentation Context and User Information items.

-

PDU

+

PDU

A_ASSOCIATE_RJ([primitive])

@@ -143,7 +143,7 @@

PDU
-

Variable Items

+

Variable Items

A_ASSOCIATE_RQ([primitive])

@@ -159,7 +159,7 @@

Variable Items -

Presentation Context Sub-items

+

Presentation Context Sub-items

ApplicationContextItem()

@@ -172,7 +172,7 @@

Presentation Context Sub-items -

User Information Sub-items

+

User Information Sub-items

AbstractSyntaxSubItem()

diff --git a/dev/reference/dul.pdu.a_release_rp.html b/dev/reference/dul.pdu.a_release_rp.html index e8d6613de..eca4cc5fb 100644 --- a/dev/reference/dul.pdu.a_release_rp.html +++ b/dev/reference/dul.pdu.a_release_rp.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -127,10 +127,10 @@
-

A-RELEASE-RP PDU

+

A-RELEASE-RP PDU

An A-RELEASE-RP PDU is made of a sequence of mandatory fields.

-

PDU

+

PDU

MaximumLengthSubItem()

diff --git a/dev/reference/dul.pdu.a_release_rq.html b/dev/reference/dul.pdu.a_release_rq.html index 8e8bb56c2..6463d5cd0 100644 --- a/dev/reference/dul.pdu.a_release_rq.html +++ b/dev/reference/dul.pdu.a_release_rq.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -127,10 +127,10 @@
-

A-RELEASE-RQ PDU

+

A-RELEASE-RQ PDU

An A-RELEASE-RQ PDU is made of a sequence of mandatory fields.

-

PDU

+

PDU

A_RELEASE_RP([primitive])

diff --git a/dev/reference/dul.pdu.html b/dev/reference/dul.pdu.html index d5f2d81c3..f63e3c5dc 100644 --- a/dev/reference/dul.pdu.html +++ b/dev/reference/dul.pdu.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -125,8 +125,8 @@
-
-

PDUs (pynetdicom.pdu)

+
+

PDUs (pynetdicom.pdu)

Protocol Data Units (PDUs) are the message formats exchanged between peer application entities within a layer. A PDU consists of protocol control information and user data and are constructed using mandatory fixed fields diff --git a/dev/reference/dul.pdu.p_data_tf.html b/dev/reference/dul.pdu.p_data_tf.html index 7cc75d0ab..89520805f 100644 --- a/dev/reference/dul.pdu.p_data_tf.html +++ b/dev/reference/dul.pdu.p_data_tf.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -127,12 +127,12 @@

-

P-DATA-TF PDU

+

P-DATA-TF PDU

A P-DATA-TF PDU is made of a sequence of mandatory fields followed by a variable length field. The variable data field shall contain one or more Presentation Data Value items.

-

PDU

+

PDU

A_RELEASE_RQ([primitive])

@@ -142,7 +142,7 @@

PDU
-

Variable Items

+

Variable Items

P_DATA_TF([primitive])

diff --git a/dev/reference/dul.pdu_items.html b/dev/reference/dul.pdu_items.html index ba27ad6be..661aa7bbc 100644 --- a/dev/reference/dul.pdu_items.html +++ b/dev/reference/dul.pdu_items.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -134,8 +134,8 @@
-
-

PDU Items and Sub-items (pynetdicom.pdu_items)

+
+

PDU Items and Sub-items (pynetdicom.pdu_items)

PresentationDataValueItem()

diff --git a/dev/reference/dul.pdu_primitives.a_abort.html b/dev/reference/dul.pdu_primitives.a_abort.html index eeb6fe526..5f0406d18 100644 --- a/dev/reference/dul.pdu_primitives.a_abort.html +++ b/dev/reference/dul.pdu_primitives.a_abort.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -125,7 +125,7 @@
-

A-ABORT

+

A-ABORT

The ACSE A-ABORT service shall be used by either of the Application Entities to cause the abnormal release of the association.

ApplicationContextItem

diff --git a/dev/reference/dul.pdu_primitives.a_associate.html b/dev/reference/dul.pdu_primitives.a_associate.html index aaff736ad..e6d77adb1 100644 --- a/dev/reference/dul.pdu_primitives.a_associate.html +++ b/dev/reference/dul.pdu_primitives.a_associate.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -125,7 +125,7 @@
-

A-ASSOCIATE

+

A-ASSOCIATE

The establishment of an association between two Application Entities shall be performed through ACSE A-ASSOCIATE request, indication, response and confirmation primitives.

diff --git a/dev/reference/dul.pdu_primitives.a_p_abort.html b/dev/reference/dul.pdu_primitives.a_p_abort.html index e9a1f3809..5817001a8 100644 --- a/dev/reference/dul.pdu_primitives.a_p_abort.html +++ b/dev/reference/dul.pdu_primitives.a_p_abort.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -125,7 +125,7 @@
-

A-P-ABORT

+

A-P-ABORT

The ACSE A-P-ABORT service shall be used by the Upper Layer service provider to signal the abnormal release of the association due to problems in services at the Presentation Layer and below.

diff --git a/dev/reference/dul.pdu_primitives.a_release.html b/dev/reference/dul.pdu_primitives.a_release.html index c9605afe1..04b384c90 100644 --- a/dev/reference/dul.pdu_primitives.a_release.html +++ b/dev/reference/dul.pdu_primitives.a_release.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -125,7 +125,7 @@
-

A-RELEASE

+

A-RELEASE

The graceful release of an association between two Application Entities is performed through ACSE A-RELEASE request, indication, response and confirmation primitives.

diff --git a/dev/reference/dul.pdu_primitives.html b/dev/reference/dul.pdu_primitives.html index 8a08b0c55..8cbff5b8b 100644 --- a/dev/reference/dul.pdu_primitives.html +++ b/dev/reference/dul.pdu_primitives.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -123,8 +123,8 @@
-
-

Service Primitives (pynetdicom.pdu_primitives)

+
+

Service Primitives (pynetdicom.pdu_primitives)

Protocol Data Units (PDUs) are the message formats exchanged between peer application entities within a layer. A PDU consists of protocol control information and user data and is constructed using mandatory fixed fields diff --git a/dev/reference/dul.pdu_primitives.p_data.html b/dev/reference/dul.pdu_primitives.p_data.html index 2e7a10ab8..505166e5f 100644 --- a/dev/reference/dul.pdu_primitives.p_data.html +++ b/dev/reference/dul.pdu_primitives.p_data.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -125,7 +125,7 @@

-

P-DATA

+

P-DATA

The P-DATA service is used by either Application Entity to cause the exchange of application information (i.e. DICOM Messages).

diff --git a/dev/reference/dul.provider.html b/dev/reference/dul.provider.html index e1e7569d9..8c6b261eb 100644 --- a/dev/reference/dul.provider.html +++ b/dev/reference/dul.provider.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -119,8 +119,8 @@
-
-

DUL Service Provider (pynetdicom.dul)

+
+

DUL Service Provider (pynetdicom.dul)

diff --git a/dev/reference/events.html b/dev/reference/events.html index cbe2f8db3..15fdcf33e 100644 --- a/dev/reference/events.html +++ b/dev/reference/events.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -143,8 +143,8 @@
-
-

Events and Handlers (pynetdicom.events)

+
+

Events and Handlers (pynetdicom.events)

DULServiceProvider(assoc)

@@ -162,7 +162,7 @@

Events and Handlers ( -

Documentation for Intervention Event Handlers

+

Documentation for Intervention Event Handlers

Event(assoc, event[, attrs])

@@ -214,7 +214,7 @@

Documentation for Intervention Event Handlers -

Documentation for Notification Event Handlers

+

Documentation for Notification Event Handlers

doc_handle_echo(event, *args)

diff --git a/dev/reference/fsm.html b/dev/reference/fsm.html index fd539b7c5..4813b1ac2 100644 --- a/dev/reference/fsm.html +++ b/dev/reference/fsm.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -122,11 +122,11 @@
-
-

State Machine (pynetdicom.fsm)

+
+

State Machine (pynetdicom.fsm)

The Finite State Machine

-

State Machine

+

State Machine

doc_handle_acse(event, *args)

@@ -136,9 +136,9 @@

State Machine -

Actions

+

Actions

-

Association Establishment

+

Association Establishment

StateMachine(dul)

@@ -169,7 +169,7 @@

Association Establishment -

Data Transfer

+

Data Transfer

AE_1(dul)

@@ -182,7 +182,7 @@

Data Transfer -

Association Release

+

Association Release

DT_1(dul)

@@ -219,7 +219,7 @@

Association Release -

Association Abort

+

Association Abort

AR_1(dul)

diff --git a/dev/reference/generated/pynetdicom.PYNETDICOM_IMPLEMENTATION_UID.html b/dev/reference/generated/pynetdicom.PYNETDICOM_IMPLEMENTATION_UID.html index d24a471f4..4accd5247 100644 --- a/dev/reference/generated/pynetdicom.PYNETDICOM_IMPLEMENTATION_UID.html +++ b/dev/reference/generated/pynetdicom.PYNETDICOM_IMPLEMENTATION_UID.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,10 +121,10 @@
-

pynetdicom.PYNETDICOM_IMPLEMENTATION_UID

+

pynetdicom.PYNETDICOM_IMPLEMENTATION_UID

-pynetdicom.PYNETDICOM_IMPLEMENTATION_UID: UID = '1.2.826.0.1.3680043.9.3811.2.1.0'[source]
+pynetdicom.PYNETDICOM_IMPLEMENTATION_UID: UID = '1.2.826.0.1.3680043.9.3811.2.1.0'[source]

The (0002,0012) Implementation Class UID used by pynetdicom

diff --git a/dev/reference/generated/pynetdicom.PYNETDICOM_IMPLEMENTATION_VERSION.html b/dev/reference/generated/pynetdicom.PYNETDICOM_IMPLEMENTATION_VERSION.html index 46ae249d2..114d599d7 100644 --- a/dev/reference/generated/pynetdicom.PYNETDICOM_IMPLEMENTATION_VERSION.html +++ b/dev/reference/generated/pynetdicom.PYNETDICOM_IMPLEMENTATION_VERSION.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,10 +121,10 @@
-

pynetdicom.PYNETDICOM_IMPLEMENTATION_VERSION

+

pynetdicom.PYNETDICOM_IMPLEMENTATION_VERSION

-pynetdicom.PYNETDICOM_IMPLEMENTATION_VERSION: str = 'PYNETDICOM_210'
+pynetdicom.PYNETDICOM_IMPLEMENTATION_VERSION: str = 'PYNETDICOM_210'

The (0002,0013) Implementation Version Name used by pynetdicom

diff --git a/dev/reference/generated/pynetdicom.PYNETDICOM_UID_PREFIX.html b/dev/reference/generated/pynetdicom.PYNETDICOM_UID_PREFIX.html index 6594ea9fe..9894ea093 100644 --- a/dev/reference/generated/pynetdicom.PYNETDICOM_UID_PREFIX.html +++ b/dev/reference/generated/pynetdicom.PYNETDICOM_UID_PREFIX.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,10 +121,10 @@
-

pynetdicom.PYNETDICOM_UID_PREFIX

+

pynetdicom.PYNETDICOM_UID_PREFIX

-pynetdicom.PYNETDICOM_UID_PREFIX = '1.2.826.0.1.3680043.9.3811.'
+pynetdicom.PYNETDICOM_UID_PREFIX = '1.2.826.0.1.3680043.9.3811.'

1.2.826.0.1.3680043.9.3811.

The UID root used by pynetdicom.

diff --git a/dev/reference/generated/pynetdicom._config.CODECS.html b/dev/reference/generated/pynetdicom._config.CODECS.html index 18627da86..74dc21bed 100644 --- a/dev/reference/generated/pynetdicom._config.CODECS.html +++ b/dev/reference/generated/pynetdicom._config.CODECS.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -128,10 +128,10 @@
-

pynetdicom._config.CODECS

+

pynetdicom._config.CODECS

-pynetdicom._config.CODECS: Tuple[str, ...] = ('ascii',)
+pynetdicom._config.CODECS: Tuple[str, ...] = ('ascii',)

Customise the codecs used to decode text values.

New in version 2.0.

@@ -189,7 +189,7 @@

pynetdicom._config.CODECSCODECS and any fallback codecs should be added after "ascii".

If a fallback successfully decodes an encoded value the string will be -converted to ASCII using str.encode() with the errors parameter set +converted to ASCII using str.encode() with the errors parameter set to "ignore".

Default: ("ascii",)

Examples

diff --git a/dev/reference/generated/pynetdicom._config.ENFORCE_UID_CONFORMANCE.html b/dev/reference/generated/pynetdicom._config.ENFORCE_UID_CONFORMANCE.html index 74ac22c56..f0466fd51 100644 --- a/dev/reference/generated/pynetdicom._config.ENFORCE_UID_CONFORMANCE.html +++ b/dev/reference/generated/pynetdicom._config.ENFORCE_UID_CONFORMANCE.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -128,10 +128,10 @@
-

pynetdicom._config.ENFORCE_UID_CONFORMANCE

+

pynetdicom._config.ENFORCE_UID_CONFORMANCE

-pynetdicom._config.ENFORCE_UID_CONFORMANCE: bool = False
+pynetdicom._config.ENFORCE_UID_CONFORMANCE: bool = False

Enforce UID conformance

New in version 1.3.

diff --git a/dev/reference/generated/pynetdicom._config.LOG_HANDLER_LEVEL.html b/dev/reference/generated/pynetdicom._config.LOG_HANDLER_LEVEL.html index 57f9e2bb6..e5313018a 100644 --- a/dev/reference/generated/pynetdicom._config.LOG_HANDLER_LEVEL.html +++ b/dev/reference/generated/pynetdicom._config.LOG_HANDLER_LEVEL.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -128,10 +128,10 @@
-

pynetdicom._config.LOG_HANDLER_LEVEL

+

pynetdicom._config.LOG_HANDLER_LEVEL

-pynetdicom._config.LOG_HANDLER_LEVEL: str = 'standard'
+pynetdicom._config.LOG_HANDLER_LEVEL: str = 'standard'

Default (non-user) event logging

  • If "none" then events will not be logged at all, however there will still diff --git a/dev/reference/generated/pynetdicom._config.LOG_REQUEST_IDENTIFIERS.html b/dev/reference/generated/pynetdicom._config.LOG_REQUEST_IDENTIFIERS.html index 73e0e7489..fcedb1794 100644 --- a/dev/reference/generated/pynetdicom._config.LOG_REQUEST_IDENTIFIERS.html +++ b/dev/reference/generated/pynetdicom._config.LOG_REQUEST_IDENTIFIERS.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -128,10 +128,10 @@

    -

    pynetdicom._config.LOG_REQUEST_IDENTIFIERS

    +

    pynetdicom._config.LOG_REQUEST_IDENTIFIERS

    -pynetdicom._config.LOG_REQUEST_IDENTIFIERS: bool = True
    +pynetdicom._config.LOG_REQUEST_IDENTIFIERS: bool = True

    Log incoming C-FIND, C-GET and C-MOVE request Identifier datasets.

    New in version 1.5.

    diff --git a/dev/reference/generated/pynetdicom._config.LOG_RESPONSE_IDENTIFIERS.html b/dev/reference/generated/pynetdicom._config.LOG_RESPONSE_IDENTIFIERS.html index 0e7e29938..05dd0fcd4 100644 --- a/dev/reference/generated/pynetdicom._config.LOG_RESPONSE_IDENTIFIERS.html +++ b/dev/reference/generated/pynetdicom._config.LOG_RESPONSE_IDENTIFIERS.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -128,10 +128,10 @@
    -

    pynetdicom._config.LOG_RESPONSE_IDENTIFIERS

    +

    pynetdicom._config.LOG_RESPONSE_IDENTIFIERS

    -pynetdicom._config.LOG_RESPONSE_IDENTIFIERS: bool = True
    +pynetdicom._config.LOG_RESPONSE_IDENTIFIERS: bool = True

    Log incoming C-FIND, C-GET and C-MOVE response Identifier datasets.

    New in version 1.5.

    diff --git a/dev/reference/generated/pynetdicom._config.PASS_CONTEXTVARS.html b/dev/reference/generated/pynetdicom._config.PASS_CONTEXTVARS.html index 7820cda20..4e61b7cc4 100644 --- a/dev/reference/generated/pynetdicom._config.PASS_CONTEXTVARS.html +++ b/dev/reference/generated/pynetdicom._config.PASS_CONTEXTVARS.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -128,10 +128,10 @@
    -

    pynetdicom._config.PASS_CONTEXTVARS

    +

    pynetdicom._config.PASS_CONTEXTVARS

    -pynetdicom._config.PASS_CONTEXTVARS: bool = False
    +pynetdicom._config.PASS_CONTEXTVARS: bool = False

    Pass context-local state to concurrent pynetdicom code.

    New in version 2.0.

    diff --git a/dev/reference/generated/pynetdicom._config.STORE_RECV_CHUNKED_DATASET.html b/dev/reference/generated/pynetdicom._config.STORE_RECV_CHUNKED_DATASET.html index a05952c87..5bd3d50d5 100644 --- a/dev/reference/generated/pynetdicom._config.STORE_RECV_CHUNKED_DATASET.html +++ b/dev/reference/generated/pynetdicom._config.STORE_RECV_CHUNKED_DATASET.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -128,10 +128,10 @@
    -

    pynetdicom._config.STORE_RECV_CHUNKED_DATASET

    +

    pynetdicom._config.STORE_RECV_CHUNKED_DATASET

    -pynetdicom._config.STORE_RECV_CHUNKED_DATASET: bool = False
    +pynetdicom._config.STORE_RECV_CHUNKED_DATASET: bool = False

    Chunk a dataset file when receiving it to minimise memory usage.

    New in version 2.0.

    diff --git a/dev/reference/generated/pynetdicom._config.STORE_SEND_CHUNKED_DATASET.html b/dev/reference/generated/pynetdicom._config.STORE_SEND_CHUNKED_DATASET.html index c3ad73e71..100d3861a 100644 --- a/dev/reference/generated/pynetdicom._config.STORE_SEND_CHUNKED_DATASET.html +++ b/dev/reference/generated/pynetdicom._config.STORE_SEND_CHUNKED_DATASET.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -128,10 +128,10 @@
    -

    pynetdicom._config.STORE_SEND_CHUNKED_DATASET

    +

    pynetdicom._config.STORE_SEND_CHUNKED_DATASET

    -pynetdicom._config.STORE_SEND_CHUNKED_DATASET: bool = False
    +pynetdicom._config.STORE_SEND_CHUNKED_DATASET: bool = False

    Chunk a dataset file when sending it to minimise memory usage.

    New in version 2.0.

    diff --git a/dev/reference/generated/pynetdicom._config.UNRESTRICTED_STORAGE_SERVICE.html b/dev/reference/generated/pynetdicom._config.UNRESTRICTED_STORAGE_SERVICE.html index b120f19f1..e5f573516 100644 --- a/dev/reference/generated/pynetdicom._config.UNRESTRICTED_STORAGE_SERVICE.html +++ b/dev/reference/generated/pynetdicom._config.UNRESTRICTED_STORAGE_SERVICE.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -128,10 +128,10 @@
    -

    pynetdicom._config.UNRESTRICTED_STORAGE_SERVICE

    +

    pynetdicom._config.UNRESTRICTED_STORAGE_SERVICE

    -pynetdicom._config.UNRESTRICTED_STORAGE_SERVICE: bool = False
    +pynetdicom._config.UNRESTRICTED_STORAGE_SERVICE: bool = False

    When acting as an SCP assume all presentation contexts with private or unknown public abstract syntaxes belong to the storage service and accept all storage service requests.

    diff --git a/dev/reference/generated/pynetdicom._config.USE_SHORT_DIMSE_AET.html b/dev/reference/generated/pynetdicom._config.USE_SHORT_DIMSE_AET.html index 9e5322170..f31b4285c 100644 --- a/dev/reference/generated/pynetdicom._config.USE_SHORT_DIMSE_AET.html +++ b/dev/reference/generated/pynetdicom._config.USE_SHORT_DIMSE_AET.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -128,10 +128,10 @@
    -

    pynetdicom._config.USE_SHORT_DIMSE_AET

    +

    pynetdicom._config.USE_SHORT_DIMSE_AET

    -pynetdicom._config.USE_SHORT_DIMSE_AET: bool = True
    +pynetdicom._config.USE_SHORT_DIMSE_AET: bool = True

    Use short AE titles in DIMSE messages.

    New in version 1.5.

    diff --git a/dev/reference/generated/pynetdicom._config.VALIDATORS.html b/dev/reference/generated/pynetdicom._config.VALIDATORS.html index 80186268c..f973434c1 100644 --- a/dev/reference/generated/pynetdicom._config.VALIDATORS.html +++ b/dev/reference/generated/pynetdicom._config.VALIDATORS.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -128,26 +128,26 @@
    -

    pynetdicom._config.VALIDATORS

    +

    pynetdicom._config.VALIDATORS

    -pynetdicom._config.VALIDATORS: Dict[str, Callable[[Any], Tuple[bool, str]]] = {'AE': <function validate_ae>, 'UI': <function validate_ui>}
    +pynetdicom._config.VALIDATORS: Dict[str, Callable[[Any], Tuple[bool, str]]] = {'AE': <function validate_ae>, 'UI': <function validate_ui>}

    Customise the validation performed on DIMSE elements and PDU parameters.

    New in version 2.0.

    AE

    Function signature: def func(value: str) -> Tuple[bool, str]

    -

    Where value is the AE title to be validated as a str.

    -

    The function should return a tuple of (bool, -str) as the (result, msg). If the result is True +

    Where value is the AE title to be validated as a str.

    +

    The function should return a tuple of (bool, +str) as the (result, msg). If the result is True then msg is ignored, otherwise msg will be used to provide feedback about why validation has failed.

    UI

    Function signature: def func(value: pydicom.uid.UID) -> Tuple[bool, str]

    -

    Where value is the UID to be validated.

    -

    The function should return a tuple of (bool, -str) as the (result, msg). If the result is True +

    Where value is the UID to be validated.

    +

    The function should return a tuple of (bool, +str) as the (result, msg). If the result is True then msg is ignored, otherwise msg will be used to provide feedback about why validation has failed.

    diff --git a/dev/reference/generated/pynetdicom._config.WINDOWS_TIMER_RESOLUTION.html b/dev/reference/generated/pynetdicom._config.WINDOWS_TIMER_RESOLUTION.html index e10e3daaf..e89d47870 100644 --- a/dev/reference/generated/pynetdicom._config.WINDOWS_TIMER_RESOLUTION.html +++ b/dev/reference/generated/pynetdicom._config.WINDOWS_TIMER_RESOLUTION.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -128,10 +128,10 @@
    -

    pynetdicom._config.WINDOWS_TIMER_RESOLUTION

    +

    pynetdicom._config.WINDOWS_TIMER_RESOLUTION

    -pynetdicom._config.WINDOWS_TIMER_RESOLUTION: float | None = 1
    +pynetdicom._config.WINDOWS_TIMER_RESOLUTION: float | None = 1

    Set the minimum timer resolution for Microsoft Windows.

    New in version 2.0.

    @@ -139,7 +139,7 @@

    pynetdicom._config.WINDOWS_TIMER_RESOLUTIONctypes module +than expected. To counteract this, pynetdicom uses the ctypes module to set the timer resolution to WINDOWS_TIMER_RESOLUTION while the Association is active.

    If WINDOWS_TIMER_RESOLUTION is set to None then no changes to the diff --git a/dev/reference/generated/pynetdicom._globals.ALL_TRANSFER_SYNTAXES.html b/dev/reference/generated/pynetdicom._globals.ALL_TRANSFER_SYNTAXES.html index 91e5dbb84..8fd1c432e 100644 --- a/dev/reference/generated/pynetdicom._globals.ALL_TRANSFER_SYNTAXES.html +++ b/dev/reference/generated/pynetdicom._globals.ALL_TRANSFER_SYNTAXES.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -120,10 +120,10 @@

    -

    pynetdicom._globals.ALL_TRANSFER_SYNTAXES

    +

    pynetdicom._globals.ALL_TRANSFER_SYNTAXES

    -pynetdicom._globals.ALL_TRANSFER_SYNTAXES: List[str] = ['1.2.840.10008.1.2', '1.2.840.10008.1.2.1', '1.2.840.10008.1.2.1.99', '1.2.840.10008.1.2.2', '1.2.840.10008.1.2.4.50', '1.2.840.10008.1.2.4.51', '1.2.840.10008.1.2.4.57', '1.2.840.10008.1.2.4.70', '1.2.840.10008.1.2.4.80', '1.2.840.10008.1.2.4.81', '1.2.840.10008.1.2.4.90', '1.2.840.10008.1.2.4.91', '1.2.840.10008.1.2.4.92', '1.2.840.10008.1.2.4.93', '1.2.840.10008.1.2.4.94', '1.2.840.10008.1.2.4.95', '1.2.840.10008.1.2.4.100', '1.2.840.10008.1.2.4.101', '1.2.840.10008.1.2.4.102', '1.2.840.10008.1.2.4.103', '1.2.840.10008.1.2.4.104', '1.2.840.10008.1.2.4.105', '1.2.840.10008.1.2.4.106', '1.2.840.10008.1.2.4.107', '1.2.840.10008.1.2.4.108', '1.2.840.10008.1.2.5']
    +pynetdicom._globals.ALL_TRANSFER_SYNTAXES: List[str] = ['1.2.840.10008.1.2', '1.2.840.10008.1.2.1', '1.2.840.10008.1.2.1.99', '1.2.840.10008.1.2.2', '1.2.840.10008.1.2.4.50', '1.2.840.10008.1.2.4.51', '1.2.840.10008.1.2.4.57', '1.2.840.10008.1.2.4.70', '1.2.840.10008.1.2.4.80', '1.2.840.10008.1.2.4.81', '1.2.840.10008.1.2.4.90', '1.2.840.10008.1.2.4.91', '1.2.840.10008.1.2.4.92', '1.2.840.10008.1.2.4.93', '1.2.840.10008.1.2.4.94', '1.2.840.10008.1.2.4.95', '1.2.840.10008.1.2.4.100', '1.2.840.10008.1.2.4.101', '1.2.840.10008.1.2.4.102', '1.2.840.10008.1.2.4.103', '1.2.840.10008.1.2.4.104', '1.2.840.10008.1.2.4.105', '1.2.840.10008.1.2.4.106', '1.2.840.10008.1.2.4.107', '1.2.840.10008.1.2.4.108', '1.2.840.10008.1.2.5']

    All current transfer syntaxes and explicit VR big endian.

    • Implicit VR Little Endian

    • diff --git a/dev/reference/generated/pynetdicom._globals.DEFAULT_TRANSFER_SYNTAXES.html b/dev/reference/generated/pynetdicom._globals.DEFAULT_TRANSFER_SYNTAXES.html index a4cdce50c..8fd8256ea 100644 --- a/dev/reference/generated/pynetdicom._globals.DEFAULT_TRANSFER_SYNTAXES.html +++ b/dev/reference/generated/pynetdicom._globals.DEFAULT_TRANSFER_SYNTAXES.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -120,10 +120,10 @@
      -

      pynetdicom._globals.DEFAULT_TRANSFER_SYNTAXES

      +

      pynetdicom._globals.DEFAULT_TRANSFER_SYNTAXES

      -pynetdicom._globals.DEFAULT_TRANSFER_SYNTAXES: List[str] = ['1.2.840.10008.1.2', '1.2.840.10008.1.2.1', '1.2.840.10008.1.2.1.99', '1.2.840.10008.1.2.2']
      +pynetdicom._globals.DEFAULT_TRANSFER_SYNTAXES: List[str] = ['1.2.840.10008.1.2', '1.2.840.10008.1.2.1', '1.2.840.10008.1.2.1.99', '1.2.840.10008.1.2.2']

      Default transfer syntaxes used when creating presentation contexts.

      • Implicit VR Little Endian

      • diff --git a/dev/reference/generated/pynetdicom._handlers.doc_handle_acse.html b/dev/reference/generated/pynetdicom._handlers.doc_handle_acse.html index 3a5415d54..9b8ff823b 100644 --- a/dev/reference/generated/pynetdicom._handlers.doc_handle_acse.html +++ b/dev/reference/generated/pynetdicom._handlers.doc_handle_acse.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -128,10 +128,10 @@
        -

        pynetdicom._handlers.doc_handle_acse

        +

        pynetdicom._handlers.doc_handle_acse

        -pynetdicom._handlers.doc_handle_acse(event: Event, *args: Sequence[Any]) None[source]
        +pynetdicom._handlers.doc_handle_acse(event: Event, *args: Sequence[Any]) None[source]

        Documentation for handlers bound to evt.EVT_ACSE_RECV or evt.EVT_ACSE_SENT.

        @@ -154,13 +154,13 @@

        pynetdicom._handlers.doc_handle_acseA_P_ABORT.

      • timestamp: the date and time that the negotiation item was processed as -datetime.datetime.

      • +datetime.datetime.

    • args – If the handler was bound to the event using bind(event, handler, args) or by passing evt_handlers=[(event, handler, args), ...], where args is a -list then there will be one or more optional extra parameters +list then there will be one or more optional extra parameters matching the contents of args.

    diff --git a/dev/reference/generated/pynetdicom._handlers.doc_handle_action.html b/dev/reference/generated/pynetdicom._handlers.doc_handle_action.html index 8990a8cc2..1e6aab612 100644 --- a/dev/reference/generated/pynetdicom._handlers.doc_handle_action.html +++ b/dev/reference/generated/pynetdicom._handlers.doc_handle_action.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -136,10 +136,10 @@
    -

    pynetdicom._handlers.doc_handle_action

    +

    pynetdicom._handlers.doc_handle_action

    -pynetdicom._handlers.doc_handle_action(event: Event, *args: Sequence[Any]) Tuple[Dataset | int, Dataset | None][source]
    +pynetdicom._handlers.doc_handle_action(event: Event, *args: Sequence[Any]) Tuple[Dataset | int, Dataset | None][source]

    Documentation for handlers bound to evt.EVT_N_ACTION.

    User implementation of this event handler is required if one or more services that use N-ACTION are to be supported. If a handler is @@ -256,26 +256,26 @@

    pynetdicom._handlers.doc_handle_actionN-ACTION request

  • timestamp: the date and time that the N-ACTION request was processed by the service as -datetime.datetime.

  • +datetime.datetime.

Event properties are:

  • action_information: the decoded -Dataset contained within the +Dataset contained within the N-ACTION request’s Action Information parameter. Because pydicom uses a deferred read when decoding data, if the decode fails the -returned Dataset will only raise an +returned Dataset will only raise an exception at the time of use.

  • action_type: the N-ACTION request’s -Action Type ID as int.

  • +Action Type ID as int.

  • message_id: the N-ACTION request’s -Message ID as int.

  • +Message ID as int.

  • args – If the handler was bound to the event using bind(event, handler, args) or by passing evt_handlers=[(event, handler, args), ...], where args is a -list then there will be one or more optional extra parameters +list then there will be one or more optional extra parameters matching the contents of args.

  • @@ -283,13 +283,13 @@

    pynetdicom._handlers.doc_handle_action

    diff --git a/dev/reference/generated/pynetdicom._handlers.doc_handle_assoc.html b/dev/reference/generated/pynetdicom._handlers.doc_handle_assoc.html index 706689671..ad2d18a9a 100644 --- a/dev/reference/generated/pynetdicom._handlers.doc_handle_assoc.html +++ b/dev/reference/generated/pynetdicom._handlers.doc_handle_assoc.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -128,10 +128,10 @@
    -

    pynetdicom._handlers.doc_handle_assoc

    +

    pynetdicom._handlers.doc_handle_assoc

    -pynetdicom._handlers.doc_handle_assoc(event: Event, *args: Sequence[Any]) None[source]
    +pynetdicom._handlers.doc_handle_assoc(event: Event, *args: Sequence[Any]) None[source]

    Documentation for handlers bound to evt.EVT_ACCEPTED, evt.EVT_ESTABLISHED, evt.EVT_REJECTED, evt.EVT_REQUESTED, evt.EVT_RELEASED or evt.EVT_ABORTED.

    @@ -147,13 +147,13 @@

    pynetdicom._handlers.doc_handle_assocevent: the event that occurred as NotificationEvent.

  • timestamp: the date and time -that the association status changed as datetime.datetime.

  • +that the association status changed as datetime.datetime.

  • args – If the handler was bound to the event using bind(event, handler, args) or by passing evt_handlers=[(event, handler, args), ...], where args is a -list then there will be one or more optional extra parameters +list then there will be one or more optional extra parameters matching the contents of args.

  • diff --git a/dev/reference/generated/pynetdicom._handlers.doc_handle_async.html b/dev/reference/generated/pynetdicom._handlers.doc_handle_async.html index f00ec2db0..05862092b 100644 --- a/dev/reference/generated/pynetdicom._handlers.doc_handle_async.html +++ b/dev/reference/generated/pynetdicom._handlers.doc_handle_async.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -136,10 +136,10 @@
    -

    pynetdicom._handlers.doc_handle_async

    +

    pynetdicom._handlers.doc_handle_async

    -pynetdicom._handlers.doc_handle_async(event: Event, *args: Sequence[Any]) Tuple[int, int][source]
    +pynetdicom._handlers.doc_handle_async(event: Event, *args: Sequence[Any]) Tuple[int, int][source]

    Documentation for handlers bound to evt.EVT_ASYNC_OPS.

    User implementation of this event handler is optional. If a handler is not implemented and bound to evt.EVT_ASYNC_OPS then no response to the @@ -166,21 +166,21 @@

    pynetdicom._handlers.doc_handle_asyncInterventionEvent.

  • invoked: the Maximum Number Operations Invoked parameter value of the Asynchronous Operations Window Negotiation item as -an int. If the value is 0 then an unlimited number of +an int. If the value is 0 then an unlimited number of invocations are requested.

  • performed: the Maximum Number Operations Performed parameter value of the Asynchronous Operations Window Negotiation -item as an int. If the value is 0 then an unlimited +item as an int. If the value is 0 then an unlimited number of performances are requested.

  • timestamp: the date and time that the negotiation request was processed as -datetime.datetime.

  • +datetime.datetime.

  • args – If the handler was bound to the event using bind(event, handler, args) or by passing evt_handlers=[(event, handler, args), ...], where args is a -list then there will be one or more optional extra parameters +list then there will be one or more optional extra parameters matching the contents of args.

  • @@ -192,7 +192,7 @@

    pynetdicom._handlers.doc_handle_asyncReturn type: -

    int, int

    +

    int, int

    References

    diff --git a/dev/reference/generated/pynetdicom._handlers.doc_handle_c_get.html b/dev/reference/generated/pynetdicom._handlers.doc_handle_c_get.html index 2b7a0c6dc..04b32ae4e 100644 --- a/dev/reference/generated/pynetdicom._handlers.doc_handle_c_get.html +++ b/dev/reference/generated/pynetdicom._handlers.doc_handle_c_get.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -136,16 +136,16 @@
    -

    pynetdicom._handlers.doc_handle_c_get

    +

    pynetdicom._handlers.doc_handle_c_get

    -pynetdicom._handlers.doc_handle_c_get(event: Event, *args: Sequence[Any]) Iterator[int | Dataset | None][source]
    +pynetdicom._handlers.doc_handle_c_get(event: Event, *args: Sequence[Any]) Iterator[int | Dataset | None][source]

    Documentation for handlers bound to evt.EVT_C_GET.

    User implementation of this event handler is required if one or more services that use C-GET are to be supported. If a handler is not implemented and bound to evt.EVT_C_GET then the C-GET request will be responded to using a Status value of 0xC411 - Failure.

    -

    Yields an int containing the total number of C-STORE +

    Yields an int containing the total number of C-STORE sub-operations, then yields (status, dataset) pairs.

    Event

    evt.EVT_C_GET

    @@ -213,28 +213,28 @@

    pynetdicom._handlers.doc_handle_c_getC-GET request

  • timestamp: the date and time that the C-GET request was processed by the service as -datetime.datetime.

  • +datetime.datetime.

    Event properties are:

    • identifier: the decoded -Dataset contained within the +Dataset contained within the C-GET request’s Identifier parameter. Because pydicom uses a deferred read when decoding data, if the decode fails the returned -Dataset will only raise an exception at the +Dataset will only raise an exception at the time of use.

    • is_cancelled: returns True if a C-CANCEL request has been received, False otherwise. If a C-CANCEL is received then the handler should yield (0xFE00, None) and return.

    • message_id: the C-GET request’s -Message ID as int.

    • +Message ID as int.

  • args – If the handler was bound to the event using bind(event, handler, args) or by passing evt_handlers=[(event, handler, args), ...], where args is a -list then there will be one or more optional extra parameters +list then there will be one or more optional extra parameters matching the contents of args.

  • @@ -246,16 +246,16 @@

    pynetdicom._handlers.doc_handle_c_getint or a Dataset object +an int or a Dataset object containing (at a minimum) a (0000,0900) Status element. If returning -a Dataset object then +a Dataset object then it may also contain optional elements related to the Status (as in DICOM Standard, Part 7, Annex C).

  • dataset (pydicom.dataset.Dataset or None) – If the status category is ‘Pending’ then yield the -Dataset to send to the peer via a C-STORE +Dataset to send to the peer via a C-STORE sub-operation over the current association.

    If the status category is ‘Failed’, ‘Warning’ or ‘Cancel’ then yield a -Dataset with a (0008,0058) Failed SOP +Dataset with a (0008,0058) Failed SOP Instance UID List element containing a list of the C-STORE sub-operation SOP Instance UIDs for which the C-GET operation has failed.

    diff --git a/dev/reference/generated/pynetdicom._handlers.doc_handle_create.html b/dev/reference/generated/pynetdicom._handlers.doc_handle_create.html index 0f4fbfeab..fc7dbc5a6 100644 --- a/dev/reference/generated/pynetdicom._handlers.doc_handle_create.html +++ b/dev/reference/generated/pynetdicom._handlers.doc_handle_create.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -136,10 +136,10 @@
    -

    pynetdicom._handlers.doc_handle_create

    +

    pynetdicom._handlers.doc_handle_create

    -pynetdicom._handlers.doc_handle_create(event: Event, *args: Sequence[Any]) Tuple[Dataset | int, Dataset | None][source]
    +pynetdicom._handlers.doc_handle_create(event: Event, *args: Sequence[Any]) Tuple[Dataset | int, Dataset | None][source]

    Documentation for handlers bound to evt.EVT_N_CREATE.

    User implementation of this event handler is required if one or more services that use N-CREATE are to be supported. If a handler is @@ -223,24 +223,24 @@

    pynetdicom._handlers.doc_handle_createN-CREATE request

  • timestamp: the date and time that the N-CREATE request was processed by the service as -datetime.datetime.

  • +datetime.datetime.

    Event properties are:

    • attribute_list: the decoded -Dataset contained within the +Dataset contained within the N-CREATE request’s Attribute List parameter. Because pydicom uses a deferred read when decoding data, if the decode fails the -returned Dataset will only raise an +returned Dataset will only raise an exception at the time of use.

    • message_id: the N-CREATE request’s -Message ID as int.

    • +Message ID as int.

  • args – If the handler was bound to the event using bind(event, handler, args) or by passing evt_handlers=[(event, handler, args), ...], where args is a -list then there will be one or more optional extra parameters +list then there will be one or more optional extra parameters matching the contents of args.

  • @@ -248,13 +248,13 @@

    pynetdicom._handlers.doc_handle_create

    diff --git a/dev/reference/generated/pynetdicom._handlers.doc_handle_data.html b/dev/reference/generated/pynetdicom._handlers.doc_handle_data.html index c354a8db7..9166d627e 100644 --- a/dev/reference/generated/pynetdicom._handlers.doc_handle_data.html +++ b/dev/reference/generated/pynetdicom._handlers.doc_handle_data.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -128,10 +128,10 @@
    -

    pynetdicom._handlers.doc_handle_data

    +

    pynetdicom._handlers.doc_handle_data

    -pynetdicom._handlers.doc_handle_data(event: Event, *args: Sequence[Any]) None[source]
    +pynetdicom._handlers.doc_handle_data(event: Event, *args: Sequence[Any]) None[source]

    Documentation for handlers bound to evt.EVT_DATA_RECV or evt.EVT_DATA_SENT.

    @@ -144,17 +144,17 @@

    pynetdicom._handlers.doc_handle_dataAssociation that triggered the event.

  • data: the data sent to/received from the remote, as -bytes.

  • +bytes.

  • event: the event that occurred as NotificationEvent.

  • timestamp: the date and time -that the data was sent/received as datetime.datetime.

  • +that the data was sent/received as datetime.datetime.

  • args – If the handler was bound to the event using bind(event, handler, args) or by passing evt_handlers=[(event, handler, args), ...], where args is a -list then there will be one or more optional extra parameters +list then there will be one or more optional extra parameters matching the contents of args.

  • diff --git a/dev/reference/generated/pynetdicom._handlers.doc_handle_delete.html b/dev/reference/generated/pynetdicom._handlers.doc_handle_delete.html index fd9557700..03f012ed7 100644 --- a/dev/reference/generated/pynetdicom._handlers.doc_handle_delete.html +++ b/dev/reference/generated/pynetdicom._handlers.doc_handle_delete.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -136,10 +136,10 @@
    -

    pynetdicom._handlers.doc_handle_delete

    +

    pynetdicom._handlers.doc_handle_delete

    -pynetdicom._handlers.doc_handle_delete(event: Event, *args: Sequence[Any]) int | Dataset[source]
    +pynetdicom._handlers.doc_handle_delete(event: Event, *args: Sequence[Any]) int | Dataset[source]

    Documentation for handlers bound to evt.EVT_N_DELETE.

    User implementation of this event handler is required if one or more services that use N-DELETE are to be supported. If a handler is @@ -191,35 +191,35 @@

    pynetdicom._handlers.doc_handle_deleteN-DELETE request

  • timestamp: the date and time that the N-DELETE request was processed by the service as -datetime.datetime.

  • +datetime.datetime.

    Event properties are:

  • args – If the handler was bound to the event using bind(event, handler, args) or by passing evt_handlers=[(event, handler, args), ...], where args is a -list then there will be one or more optional extra parameters +list then there will be one or more optional extra parameters matching the contents of args.

  • Returns:

    status – The status returned to the peer AE in the N-DELETE response. Must be a valid N-DELETE status value for the applicable Service Class as either -an int or a Dataset object +an int or a Dataset object containing (at a minimum) a (0000,0900) Status element. If returning -a Dataset object then +a Dataset object then it may also contain optional elements related to the Status (as in DICOM Standard, Part 7, Annex C).

    Return type:
    -

    pydicom.dataset.Dataset or int

    +

    pydicom.dataset.Dataset or int

    Raises:
    -

    NotImplementedError – If the handler has not been implemented and bound to +

    NotImplementedError – If the handler has not been implemented and bound to evt.EVT_N_DELETE by the user.

    diff --git a/dev/reference/generated/pynetdicom._handlers.doc_handle_dimse.html b/dev/reference/generated/pynetdicom._handlers.doc_handle_dimse.html index 3387c2afe..28b5d22c1 100644 --- a/dev/reference/generated/pynetdicom._handlers.doc_handle_dimse.html +++ b/dev/reference/generated/pynetdicom._handlers.doc_handle_dimse.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -128,10 +128,10 @@
    -

    pynetdicom._handlers.doc_handle_dimse

    +

    pynetdicom._handlers.doc_handle_dimse

    -pynetdicom._handlers.doc_handle_dimse(event: Event, *args: Sequence[Any]) None[source]
    +pynetdicom._handlers.doc_handle_dimse(event: Event, *args: Sequence[Any]) None[source]

    Documentation for handlers bound to evt.EVT_DIMSE_RECV or evt.EVT_DIMSE_SENT.

    @@ -172,13 +172,13 @@

    pynetdicom._handlers.doc_handle_dimseN_SET_RQ or N_SET_RSP

  • timestamp: the date and time -that the message was processed as datetime.datetime.

  • +that the message was processed as datetime.datetime.

  • args – If the handler was bound to the event using bind(event, handler, args) or by passing evt_handlers=[(event, handler, args), ...], where args is a -list then there will be one or more optional extra parameters +list then there will be one or more optional extra parameters matching the contents of args.

  • diff --git a/dev/reference/generated/pynetdicom._handlers.doc_handle_echo.html b/dev/reference/generated/pynetdicom._handlers.doc_handle_echo.html index bb1296ec3..de96d42a5 100644 --- a/dev/reference/generated/pynetdicom._handlers.doc_handle_echo.html +++ b/dev/reference/generated/pynetdicom._handlers.doc_handle_echo.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -136,10 +136,10 @@
    -

    pynetdicom._handlers.doc_handle_echo

    +

    pynetdicom._handlers.doc_handle_echo

    -pynetdicom._handlers.doc_handle_echo(event: Event, *args: Sequence[Any]) int | Dataset[source]
    +pynetdicom._handlers.doc_handle_echo(event: Event, *args: Sequence[Any]) int | Dataset[source]

    Documentation for handlers bound to evt.EVT_C_ECHO.

    User implementation of this event handler is optional. If a handler is not implemented and bound to evt.EVT_C_ECHO then the C-ECHO request @@ -182,33 +182,33 @@

    pynetdicom._handlers.doc_handle_echoC-ECHO request

  • timestamp: the date and time that the C-ECHO request was processed by the service as -datetime.datetime.

  • +datetime.datetime.

    Event properties are:

  • args – If the handler was bound to the event using bind(event, handler, args) or by passing evt_handlers=[(event, handler, args), ...], where args is a -list then there will be one or more optional extra parameters +list then there will be one or more optional extra parameters matching the contents of args.

  • Returns:

    status – The status returned to the peer AE in the C-ECHO response. Must be a valid C-ECHO status value for the applicable Service Class as -either an int or a Dataset object +either an int or a Dataset object containing (at a minimum) a (0000,0900) Status element. If returning -a Dataset object +a Dataset object then it may also contain optional elements related to the Status (as in the DICOM Standard, Part 7, Annex C).

    Return type:
    -

    pydicom.dataset.Dataset or int

    +

    pydicom.dataset.Dataset or int

    diff --git a/dev/reference/generated/pynetdicom._handlers.doc_handle_event_report.html b/dev/reference/generated/pynetdicom._handlers.doc_handle_event_report.html index a8d34fe27..6a7822ec6 100644 --- a/dev/reference/generated/pynetdicom._handlers.doc_handle_event_report.html +++ b/dev/reference/generated/pynetdicom._handlers.doc_handle_event_report.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -136,10 +136,10 @@
    -

    pynetdicom._handlers.doc_handle_event_report

    +

    pynetdicom._handlers.doc_handle_event_report

    -pynetdicom._handlers.doc_handle_event_report(event: Event, *args: Sequence[Any]) Tuple[Dataset | int, Dataset | None][source]
    +pynetdicom._handlers.doc_handle_event_report(event: Event, *args: Sequence[Any]) Tuple[Dataset | int, Dataset | None][source]

    Documentation for handlers bound to evt.EVT_N_EVENT_REPORT.

    User implementation of this event handler is required if one or more services that use N-EVENT-REPORT are to be supported. If a handler is @@ -198,26 +198,26 @@

    pynetdicom._handlers.doc_handle_event_reportN-EVENT-REPORT request

  • timestamp: the date and time that the N-EVENT-REPORT request was processed by the service as -datetime.datetime.

  • +datetime.datetime.

    Event properties are:

    • event_information: the decoded -Dataset contained within the +Dataset contained within the N-EVENT-REPORT request’s Event Information parameter. Because pydicom uses a deferred read when decoding data, if the decode -fails the returned Dataset will only raise +fails the returned Dataset will only raise an exception at the time of use.

    • event_type: the N-EVENT-REPORT -request’s Event Type ID parameter value as int.

    • +request’s Event Type ID parameter value as int.

    • message_id: the N-EVENT-REPORT -request’s Message ID as int.

    • +request’s Message ID as int.

  • args – If the handler was bound to the event using bind(event, handler, args) or by passing evt_handlers=[(event, handler, args), ...], where args is a -list then there will be one or more optional extra parameters +list then there will be one or more optional extra parameters matching the contents of args.

  • @@ -225,13 +225,13 @@

    pynetdicom._handlers.doc_handle_event_report

    diff --git a/dev/reference/generated/pynetdicom._handlers.doc_handle_find.html b/dev/reference/generated/pynetdicom._handlers.doc_handle_find.html index f6fcd6c70..dc42800ee 100644 --- a/dev/reference/generated/pynetdicom._handlers.doc_handle_find.html +++ b/dev/reference/generated/pynetdicom._handlers.doc_handle_find.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -136,19 +136,19 @@
    -

    pynetdicom._handlers.doc_handle_find

    +

    pynetdicom._handlers.doc_handle_find

    -pynetdicom._handlers.doc_handle_find(event: Event, *args: Sequence[Any]) Iterator[Tuple[Dataset | int, Dataset | None]][source]
    +pynetdicom._handlers.doc_handle_find(event: Event, *args: Sequence[Any]) Iterator[Tuple[Dataset | int, Dataset | None]][source]

    Documentation for handlers bound to evt.EVT_C_FIND.

    User implementation of this event handler is required if one or more services that use C-FIND are to be supported. If a handler is not implemented and bound to evt.EVT_C_FIND then the C-FIND request will be responded to using a Status value of 0xC311 - Failure.

    Yields (status, identifier) pairs, where status is either an -int or pydicom Dataset containing a +int or pydicom Dataset containing a (0000,0900) Status element and identifier is a C-FIND Identifier -Dataset.

    +Dataset.

    Event

    evt.EVT_C_FIND

    Supported Service Classes

    @@ -208,28 +208,28 @@

    pynetdicom._handlers.doc_handle_findC-FIND request

  • timestamp: the date and time that the C-FIND request was processed by the service as -datetime.datetime.

  • +datetime.datetime.

    Event properties are:

    • identifier: the decoded -Dataset contained within the +Dataset contained within the C-FIND request’s Identifier parameter. Because pydicom uses a deferred read when decoding data, if the decode fails the returned -Dataset will only raise an exception at +Dataset will only raise an exception at the time of use.

    • is_cancelled: returns True if a C-CANCEL request has been received, False otherwise. If a C-CANCEL is received then the handler should yield (0xFE00, None) and return.

    • message_id: the C-FIND request’s -Message ID as int.

    • +Message ID as int.

  • args – If the handler was bound to the event using bind(event, handler, args) or by passing evt_handlers=[(event, handler, args), ...], where args is a -list then there will be one or more optional extra parameters +list then there will be one or more optional extra parameters matching the contents of args.

  • @@ -237,13 +237,13 @@

    pynetdicom._handlers.doc_handle_find
    • status (pydicom.dataset.Dataset or int) – The status returned to the peer AE in the C-FIND response. Must be a valid C-FIND status vuale for the applicable Service Class as -either an int or a Dataset object +either an int or a Dataset object containing (at a minimum) a (0000,0900) Status element. If returning -a Dataset object then +a Dataset object then it may also contain optional elements related to the Status (as in DICOM Standard, Part 7, Annex C).

    • identifier (pydicom.dataset.Dataset or None) – If the status category is ‘Pending’ then the Identifier -Dataset for a matching SOP Instance. The +Dataset for a matching SOP Instance. The exact requirements for the C-FIND response Identifier are Service Class specific (see the DICOM Standard, Part 4).

      If the status category is ‘Failure’ or ‘Cancel’ then yield None.

      diff --git a/dev/reference/generated/pynetdicom._handlers.doc_handle_fsm.html b/dev/reference/generated/pynetdicom._handlers.doc_handle_fsm.html index d34485831..b10cce019 100644 --- a/dev/reference/generated/pynetdicom._handlers.doc_handle_fsm.html +++ b/dev/reference/generated/pynetdicom._handlers.doc_handle_fsm.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -128,10 +128,10 @@
      -

      pynetdicom._handlers.doc_handle_fsm

      +

      pynetdicom._handlers.doc_handle_fsm

      -pynetdicom._handlers.doc_handle_fsm(event: Event, *args: Sequence[Any]) None[source]
      +pynetdicom._handlers.doc_handle_fsm(event: Event, *args: Sequence[Any]) None[source]

      Documentation for handlers bound to evt.EVT_FSM_TRANSITION.

      Parameters:
      @@ -141,26 +141,26 @@

      pynetdicom._handlers.doc_handle_fsmEvent attributes are:

      • action: the name of the action that’s to be performed as -str.

      • +str.

      • assoc: the Association that triggered the event.

      • current_state: the current state of the state machine as -str.

      • +str.

      • event: the event that occurred as NotificationEvent.

      • fsm_event: the name of the state machine event that occurred, -triggering the transition as str.

      • +triggering the transition as str.

      • next_state: the state the state machine will be in after the -action has been performed as str.

      • +action has been performed as str.

      • timestamp: the date and time -that the FSM transition occurred as datetime.datetime.

      • +that the FSM transition occurred as datetime.datetime.

    • args – If the handler was bound to the event using bind(event, handler, args) or by passing evt_handlers=[(event, handler, args), ...], where args is a -list then there will be one or more optional extra parameters +list then there will be one or more optional extra parameters matching the contents of args.

    diff --git a/dev/reference/generated/pynetdicom._handlers.doc_handle_move.html b/dev/reference/generated/pynetdicom._handlers.doc_handle_move.html index fefbc6487..cbe04aeb3 100644 --- a/dev/reference/generated/pynetdicom._handlers.doc_handle_move.html +++ b/dev/reference/generated/pynetdicom._handlers.doc_handle_move.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -136,10 +136,10 @@
    -

    pynetdicom._handlers.doc_handle_move

    +

    pynetdicom._handlers.doc_handle_move

    -pynetdicom._handlers.doc_handle_move(event: Event, *args: Sequence[Any]) Iterator[Tuple[str, int] | Tuple[str, int, Dict[str, Any]] | int | Dataset | None][source]
    +pynetdicom._handlers.doc_handle_move(event: Event, *args: Sequence[Any]) Iterator[Tuple[str, int] | Tuple[str, int, Dict[str, Any]] | int | Dataset | None][source]

    Documentation for handlers bound to evt.EVT_C_MOVE.

    User implementation of this event handler is required if one or more services that use C-MOVE are to be supported. If a handler is @@ -147,12 +147,12 @@

    pynetdicom._handlers.doc_handle_move0xC511 - Failure.

    The first yield should be the (addr, port) of the move destination, however you may instead yield (addr, port, kwargs), where kwargs -is a dict containing keyword parameters that will be passed +is a dict containing keyword parameters that will be passed to AE.associate(). This allows you to customise the presentation contexts requested by the association with the Storage SCP via the contexts keyword parameter.

    The second yield should be the number of required C-STORE sub-operations -as an int, and the remaining yields the (status, dataset) +as an int, and the remaining yields the (status, dataset) pairs.

    Matching SOP Instances will be sent to the move destination Storage SCP over a new association. If the move destination is unknown then the @@ -226,30 +226,30 @@

    pynetdicom._handlers.doc_handle_moveC-MOVE request

  • timestamp: the date and time that the C-MOVE request was processed by the service as -datetime.datetime.

  • +datetime.datetime.

    Event properties are:

    • identifier: the decoded -Dataset contained within the +Dataset contained within the C-MOVE request’s Identifier parameter. Because pydicom uses a deferred read when decoding data, if the decode fails the returned -Dataset will only raise an exception at the +Dataset will only raise an exception at the time of use.

    • is_cancelled: returns True if a C-CANCEL request has been received, False otherwise. If a C-CANCEL is received then the handler should yield a (0xFE00, None) status/dataset pair and return.

    • message_id: the C-MOVE request’s -Message ID as int.

    • +Message ID as int.

    • move_destination: the C-MOVE -request’s Move Destination value as str.

    • +request’s Move Destination value as str.

  • args – If the handler was bound to the event using bind(event, handler, args) or by passing evt_handlers=[(event, handler, args), ...], where args is a -list then there will be one or more optional extra parameters +list then there will be one or more optional extra parameters matching the contents of args.

  • @@ -261,7 +261,7 @@

    pynetdicom._handlers.doc_handle_move0xA801 (move destination unknown), in which case nothing more needs to be yielded. You may instead yield (addr, port, kwargs), where kwargs is -a dict containing keyword parameters to pass to +a dict containing keyword parameters to pass to AE.associate() when the new association with the Storage SCP is initiated.

  • int – The second yield should be the number of C-STORE sub-operations @@ -269,16 +269,16 @@

    pynetdicom._handlers.doc_handle_moveint or a Dataset +either an int or a Dataset containing (at a minimum) a (0000,0900) Status element. If returning -a Dataset then it may also contain optional +a Dataset then it may also contain optional elements related to the Status (as in DICOM Standard, Part 7, Annex C).

  • dataset (pydicom.dataset.Dataset or None) – If the status is ‘Pending’ then yield the -Dataset to send to the peer via a C-STORE +Dataset to send to the peer via a C-STORE sub-operation over a new association.

    If the status is ‘Failed’, ‘Warning’ or ‘Cancel’ then yield a -Dataset with a (0008,0058) Failed SOP +Dataset with a (0008,0058) Failed SOP Instance UID List element containing the list of the C-STORE sub-operation SOP Instance UIDs for which the C-MOVE operation has failed.

    diff --git a/dev/reference/generated/pynetdicom._handlers.doc_handle_n_get.html b/dev/reference/generated/pynetdicom._handlers.doc_handle_n_get.html index b4a2fc42a..5342b352d 100644 --- a/dev/reference/generated/pynetdicom._handlers.doc_handle_n_get.html +++ b/dev/reference/generated/pynetdicom._handlers.doc_handle_n_get.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -136,10 +136,10 @@
    -

    pynetdicom._handlers.doc_handle_n_get

    +

    pynetdicom._handlers.doc_handle_n_get

    -pynetdicom._handlers.doc_handle_n_get(event: Event, *args: Sequence[Any]) Tuple[Dataset | int, Dataset | None][source]
    +pynetdicom._handlers.doc_handle_n_get(event: Event, *args: Sequence[Any]) Tuple[Dataset | int, Dataset | None][source]

    Documentation for handlers bound to evt.EVT_N_GET.

    User implementation of this event handler is required if one or more services that use N-GET are to be supported. If a handler is @@ -155,7 +155,7 @@

    pynetdicom._handlers.doc_handle_n_getMedia Creation Management

  • Unified Procedure Step

  • RT Machine Verification

  • -
  • Dispaly System Management

  • +
  • Display System Management

  • Status

    @@ -204,21 +204,21 @@

    pynetdicom._handlers.doc_handle_n_getN-GET request

  • timestamp: the date and time that the N-GET request was processed by the service as -datetime.datetime.

  • +datetime.datetime.

    Event properties are:

  • args – If the handler was bound to the event using bind(event, handler, args) or by passing evt_handlers=[(event, handler, args), ...], where args is a -list then there will be one or more optional extra parameters +list then there will be one or more optional extra parameters matching the contents of args.

  • @@ -226,13 +226,13 @@

    pynetdicom._handlers.doc_handle_n_get

  • args – If the handler was bound to the event using bind(event, handler, args) or by passing evt_handlers=[(event, handler, args), ...], where args is a -list then there will be one or more optional extra parameters +list then there will be one or more optional extra parameters matching the contents of args.

  • diff --git a/dev/reference/generated/pynetdicom._handlers.doc_handle_set.html b/dev/reference/generated/pynetdicom._handlers.doc_handle_set.html index 281df3d6c..7ec6a1ab3 100644 --- a/dev/reference/generated/pynetdicom._handlers.doc_handle_set.html +++ b/dev/reference/generated/pynetdicom._handlers.doc_handle_set.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -136,10 +136,10 @@
    -

    pynetdicom._handlers.doc_handle_set

    +

    pynetdicom._handlers.doc_handle_set

    -pynetdicom._handlers.doc_handle_set(event: Event, *args: Sequence[Any]) Tuple[Dataset | int, Dataset | None][source]
    +pynetdicom._handlers.doc_handle_set(event: Event, *args: Sequence[Any]) Tuple[Dataset | int, Dataset | None][source]

    Documentation for handlers bound to evt.EVT_N_SET.

    User implementation of this event handler is required if one or more services that use N-SET are to be supported. If a handler is @@ -232,24 +232,24 @@

    pynetdicom._handlers.doc_handle_setN-SET request

  • timestamp: the date and time that the N-SET request was processed by the service as -datetime.datetime.

  • +datetime.datetime.

    Event properties are:

    • message_id: the N-SET request’s -Message ID as int.

    • +Message ID as int.

    • modification_list: the decoded -Dataset contained within the +Dataset contained within the N-SET request’s Modification List parameter. Because pydicom uses a deferred read when decoding data, if the decode fails the -returned Dataset will only raise an +returned Dataset will only raise an exception at the time of use.

  • args – If the handler was bound to the event using bind(event, handler, args) or by passing evt_handlers=[(event, handler, args), ...], where args is a -list then there will be one or more optional extra parameters +list then there will be one or more optional extra parameters matching the contents of args.

  • @@ -257,13 +257,13 @@

    pynetdicom._handlers.doc_handle_set

    diff --git a/dev/reference/generated/pynetdicom._handlers.doc_handle_sop_common.html b/dev/reference/generated/pynetdicom._handlers.doc_handle_sop_common.html index c2493273e..62cd55f02 100644 --- a/dev/reference/generated/pynetdicom._handlers.doc_handle_sop_common.html +++ b/dev/reference/generated/pynetdicom._handlers.doc_handle_sop_common.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -136,10 +136,10 @@
    -

    pynetdicom._handlers.doc_handle_sop_common

    +

    pynetdicom._handlers.doc_handle_sop_common

    -pynetdicom._handlers.doc_handle_sop_common(event: Event, *args: Sequence[Any]) Dict[UID, SOPClassCommonExtendedNegotiation][source]
    +pynetdicom._handlers.doc_handle_sop_common(event: Event, *args: Sequence[Any]) Dict[UID, SOPClassCommonExtendedNegotiation][source]

    Documentation for handlers bound to evt.EVT_SOP_COMMON.

    User implementation of this event handler is required only if SOP Class Common Extended Negotiation @@ -163,13 +163,13 @@

    pynetdicom._handlers.doc_handle_sop_commontimestamp: the date and time that the negotiation request was processed as -datetime.datetime.

    +datetime.datetime.

  • args – If the handler was bound to the event using bind(event, handler, args) or by passing evt_handlers=[(event, handler, args), ...], where args is a -list then there will be one or more optional extra parameters +list then there will be one or more optional extra parameters matching the contents of args.

  • @@ -181,7 +181,7 @@

    pynetdicom._handlers.doc_handle_sop_commonReturn type: -

    dict

    +

    dict

    References

    diff --git a/dev/reference/generated/pynetdicom._handlers.doc_handle_sop_extended.html b/dev/reference/generated/pynetdicom._handlers.doc_handle_sop_extended.html index 1ee47c307..327581a2b 100644 --- a/dev/reference/generated/pynetdicom._handlers.doc_handle_sop_extended.html +++ b/dev/reference/generated/pynetdicom._handlers.doc_handle_sop_extended.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -136,10 +136,10 @@
    -

    pynetdicom._handlers.doc_handle_sop_extended

    +

    pynetdicom._handlers.doc_handle_sop_extended

    -pynetdicom._handlers.doc_handle_sop_extended(event: Event, *args: Sequence[Any]) Dict[UID, bytes][source]
    +pynetdicom._handlers.doc_handle_sop_extended(event: Event, *args: Sequence[Any]) Dict[UID, bytes][source]

    Documentation for handlers bound to evt.EVT_SOP_EXTENDED.

    User implementation of this event handler is required only if SOP Class Extended Negotiation @@ -158,7 +158,7 @@

    pynetdicom._handlers.doc_handle_sop_extendedapp_info: the {SOP Class UID : Service Class Application Information} parameter values for the included items, with the service class application information being the raw encoded data sent -by the requestor (as bytes).

    +by the requestor (as bytes).

  • assoc: the Association that is running the service that received the user identity @@ -167,13 +167,13 @@

    pynetdicom._handlers.doc_handle_sop_extendedInterventionEvent.

  • timestamp: the date and time that the negotiation request was processed as -datetime.datetime.

  • +datetime.datetime.

  • args – If the handler was bound to the event using bind(event, handler, args) or by passing evt_handlers=[(event, handler, args), ...], where args is a -list then there will be one or more optional extra parameters +list then there will be one or more optional extra parameters matching the contents of args.

  • @@ -181,11 +181,11 @@

    pynetdicom._handlers.doc_handle_sop_extended

    The {SOP Class UID : Service Class Application Information} parameter values to be sent in response to the request, with the service class application information being the encoded data that -will be sent to the peer as-is. Return an empty dict if no +will be sent to the peer as-is. Return an empty dict if no response is to be sent.

    Return type:
    -

    dict of pydicom.uid.UID, bytes

    +

    dict of pydicom.uid.UID, bytes

    References

    diff --git a/dev/reference/generated/pynetdicom._handlers.doc_handle_store.html b/dev/reference/generated/pynetdicom._handlers.doc_handle_store.html index 0972e00a7..5272fefae 100644 --- a/dev/reference/generated/pynetdicom._handlers.doc_handle_store.html +++ b/dev/reference/generated/pynetdicom._handlers.doc_handle_store.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -136,10 +136,10 @@
    -

    pynetdicom._handlers.doc_handle_store

    +

    pynetdicom._handlers.doc_handle_store

    -pynetdicom._handlers.doc_handle_store(event: Event, *args: Sequence[Any]) int | Dataset[source]
    +pynetdicom._handlers.doc_handle_store(event: Event, *args: Sequence[Any]) int | Dataset[source]

    Documentation for handlers bound to evt.EVT_C_STORE.

    User implementation of this event handler is required if one or more services that use C-STORE are to be supported. If a handler is @@ -199,49 +199,49 @@

    pynetdicom._handlers.doc_handle_storeC-STORE request

  • timestamp: the date and time that the C-STORE request was processed by the service as -datetime.datetime.

  • +datetime.datetime.

    Event properties are:

    • dataset: the decoded -Dataset contained within the +Dataset contained within the C-STORE request’s Data Set parameter. Because pydicom uses a deferred read when decoding data, if the decode fails the returned -Dataset will only raise an exception at the +Dataset will only raise an exception at the time of use.

    • dataset_path: when STORE_RECV_CHUNKED_DATASET is True, -this is the path to the received dataset as pathlib.Path.

    • +this is the path to the received dataset as pathlib.Path.

    • file_meta: a -Dataset containing DICOM +Dataset containing DICOM conformant File Meta Information that can be used with the decoded dataset when saving to file: event.dataset.file_meta = event.file_meta.

    • message_id: the C-STORE request’s -Message ID as int.

    • +Message ID as int.

  • args – If the handler was bound to the event using bind(event, handler, args) or by passing evt_handlers=[(event, handler, args), ...], where args is a -list then there will be one or more optional extra parameters +list then there will be one or more optional extra parameters matching the contents of args.

  • Returns:

    status – The status returned to the requesting AE in the C-STORE response. Must be a valid C-STORE status value for the applicable Service Class as -either an int or a Dataset object +either an int or a Dataset object containing (at a minimum) a (0000,0900) Status element. If returning -a Dataset object then it may also contain +a Dataset object then it may also contain optional elements related to the Status (as in the DICOM Standard, Part 7, Annex C).

    Return type:
    -

    pydicom.dataset.Dataset or int

    +

    pydicom.dataset.Dataset or int

    Raises:
    -

    NotImplementedError – If the handler has not been implemented and bound to +

    NotImplementedError – If the handler has not been implemented and bound to evt.EVT_C_STORE by the user.

    diff --git a/dev/reference/generated/pynetdicom._handlers.doc_handle_transport.html b/dev/reference/generated/pynetdicom._handlers.doc_handle_transport.html index 1a3eb4ac1..1a1651492 100644 --- a/dev/reference/generated/pynetdicom._handlers.doc_handle_transport.html +++ b/dev/reference/generated/pynetdicom._handlers.doc_handle_transport.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -128,10 +128,10 @@
    -

    pynetdicom._handlers.doc_handle_transport

    +

    pynetdicom._handlers.doc_handle_transport

    -pynetdicom._handlers.doc_handle_transport(event: Event, *args: Sequence[Any]) None[source]
    +pynetdicom._handlers.doc_handle_transport(event: Event, *args: Sequence[Any]) None[source]

    Documentation for handlers bound to evt.EVT_CONN_OPEN or evt.EVT_CONN_CLOSE.

    @@ -140,8 +140,8 @@

    pynetdicom._handlers.doc_handle_transportevents.Event) –

    Represents opening or closing a transport connection. Event attributes are:

  • args – If the handler was bound to the event using bind(event, handler, args) or by passing evt_handlers=[(event, handler, args), ...], where args is a -list then there will be one or more optional extra parameters +list then there will be one or more optional extra parameters matching the contents of args.

  • diff --git a/dev/reference/generated/pynetdicom._handlers.doc_handle_userid.html b/dev/reference/generated/pynetdicom._handlers.doc_handle_userid.html index d104ced0c..4f0c21459 100644 --- a/dev/reference/generated/pynetdicom._handlers.doc_handle_userid.html +++ b/dev/reference/generated/pynetdicom._handlers.doc_handle_userid.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -136,10 +136,10 @@
    -

    pynetdicom._handlers.doc_handle_userid

    +

    pynetdicom._handlers.doc_handle_userid

    -pynetdicom._handlers.doc_handle_userid(event: Event, *args: Sequence[Any]) Tuple[bool, bytes | None][source]
    +pynetdicom._handlers.doc_handle_userid(event: Event, *args: Sequence[Any]) Tuple[bool, bytes | None][source]

    Documentation for handlers bound to evt.EVT_USER_ID.

    User implementation of this handler is required if User Identity Negotiation @@ -163,17 +163,17 @@

    pynetdicom._handlers.doc_handle_useridevent: the event that occurred as InterventionEvent.

    -
  • primary_field: the Primary Field value (as bytes), +

  • primary_field: the Primary Field value (as bytes), contains the username, the encoded Kerberos ticket or the JSON web token, depending on the value of user_id_type.

  • secondary_field: the Secondary Field value. Will be None unless the user_id_type is 2 in which case it will be -bytes.

  • +bytes.

  • timestamp: the date and time that the negotiation request was processed as -datetime.datetime.

  • +datetime.datetime.

  • user_id_type: the User Identity Type value (as an -int), which indicates the form of user identity being +int), which indicates the form of user identity being provided:

  • @@ -199,9 +199,9 @@

    pynetdicom._handlers.doc_handle_userid1 or 2, then return None

    -
  • 3 then return the Kerberos Server ticket as bytes

  • -
  • 4 then return the SAML response as bytes

  • -
  • 5 then return the JSON web token as bytes

  • +
  • 3 then return the Kerberos Server ticket as bytes

  • +
  • 4 then return the SAML response as bytes

  • +
  • 5 then return the JSON web token as bytes

  • diff --git a/dev/reference/generated/pynetdicom.acse.ACSE.html b/dev/reference/generated/pynetdicom.acse.ACSE.html index 547c93014..d2efd5866 100644 --- a/dev/reference/generated/pynetdicom.acse.ACSE.html +++ b/dev/reference/generated/pynetdicom.acse.ACSE.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -118,16 +118,16 @@
    -

    pynetdicom.acse.ACSE

    +

    pynetdicom.acse.ACSE

    -class pynetdicom.acse.ACSE(assoc: Association)[source]
    +class pynetdicom.acse.ACSE(assoc: Association)[source]

    The Association Control Service Element (ACSE) service provider.

    The ACSE protocol handles association negotiation and establishment, and normal and abnormal release of an association.

    -__init__(assoc: Association) None[source]
    +__init__(assoc: Association) None[source]

    Create the ACSE service provider.

    Parameters:
    @@ -199,19 +199,19 @@

    pynetdicom.acse.ACSE
    -property acceptor: ServiceUser
    +property acceptor: ServiceUser

    Return the acceptor ServiceUser.

    -property acse_timeout: float | None
    +property acse_timeout: float | None

    Return the ACSE timeout (in seconds).

    -property assoc: Association
    +property assoc: Association

    Return the parent Association.

    New in version 1.3.

    @@ -220,13 +220,13 @@

    pynetdicom.acse.ACSE
    -property dul: DULServiceProvider
    +property dul: DULServiceProvider

    Return the DULServiceProvider.

    -is_aborted(abort_type: str = 'both') bool[source]
    +is_aborted(abort_type: str = 'both') bool[source]

    Return True if an A-ABORT and/or A-P-ABORT request has been received.

    @@ -234,7 +234,7 @@

    pynetdicom.acse.ACSE
    Parameters:
    -

    abort_type (str, optional) – The type of abort to check for. If 'both' then will return +

    abort_type (str, optional) – The type of abort to check for. If 'both' then will return True if an A-ABORT or A-P-ABORT is received (default). If 'a-abort' then will return True if an A-ABORT is received, if 'a-p-abort' then will return True if an A-P-ABORT is @@ -244,14 +244,14 @@

    pynetdicom.acse.ACSE

    True if an abort is received, False otherwise.

    Return type:
    -

    bool

    +

    bool

    -is_release_requested() bool[source]
    +is_release_requested() bool[source]

    Return True if an A-RELEASE request has been received.

    New in version 1.1.

    @@ -260,14 +260,14 @@

    pynetdicom.acse.ACSE
    -negotiate_association() None[source]
    +negotiate_association() None[source]

    Perform an association negotiation as either the requestor or acceptor.

    -negotiate_release() None[source]
    +negotiate_release() None[source]

    Negotiate association release.

    New in version 1.1.

    @@ -278,17 +278,17 @@

    pynetdicom.acse.ACSE
    -property requestor: ServiceUser
    +property requestor: ServiceUser

    Return the requestor ServiceUser.

    -send_abort(source: int) None[source]
    +send_abort(source: int) None[source]

    Send an A-ABORT request to the peer.

    Parameters:
    -

    source (int) –

    The source of the abort request

    +

    source (int) –

    The source of the abort request

    • 0x00 - the DUL service user

    • 0x02 - the DUL service provider

    • @@ -296,24 +296,24 @@

      pynetdicom.acse.ACSE

    Raises:
    -

    ValueError – If the source value is invalid.

    +

    ValueError – If the source value is invalid.

    -send_accept() None[source]
    +send_accept() None[source]

    Send an A-ASSOCIATE (accept) to the peer.

    -send_ap_abort(reason: int) None[source]
    +send_ap_abort(reason: int) None[source]

    Send an A-P-ABORT to the peer.

    Parameters:
    -

    reason (int) –

    The reason for aborting the association, one of the following:

    +

    reason (int) –

    The reason for aborting the association, one of the following:

    • 0x00 - reason not specified

    • 0x01 - unrecognised PDU

    • @@ -325,32 +325,32 @@

      pynetdicom.acse.ACSE

    Raises:
    -

    ValueError – If the reason value is invalid.

    +

    ValueError – If the reason value is invalid.

    -send_reject(result: int, source: int, diagnostic: int) None[source]
    +send_reject(result: int, source: int, diagnostic: int) None[source]

    Send an A-ASSOCIATE (reject) to the peer.

    Parameters:
      -
    • result (int) –

      The association rejection:

      +
    • result (int) –

      The association rejection:

      • 0x01 - rejected permanent

      • 0x02 - rejected transient

    • -
    • source (int) –

      The source of the rejection:

      +
    • source (int) –

      The source of the rejection:

      • 0x01 - DUL service user

      • 0x02 - DUL service provider (ACSE related)

      • 0x03 - DUL service provider (presentation related)

    • -
    • diagnostic (int) –

      The reason for the rejection, if the source is 0x01:

      +
    • diagnostic (int) –

      The reason for the rejection, if the source is 0x01:

      • 0x01 - no reason given

      • 0x02 - application context name not supported

      • @@ -375,11 +375,11 @@

        pynetdicom.acse.ACSE
        -send_release(is_response: bool = False) None[source]
        +send_release(is_response: bool = False) None[source]

        Send an A-RELEASE (request or response) to the peer.

        Parameters:
        -

        is_response (bool, optional) – True to send an A-RELEASE (response) to the peer, False +

        is_response (bool, optional) – True to send an A-RELEASE (response) to the peer, False to send an A-RELEASE (request) to the peer (default).

        @@ -387,13 +387,13 @@

        pynetdicom.acse.ACSE
        -send_request() None[source]
        +send_request() None[source]

        Send an A-ASSOCIATE (request) to the peer.

    -property socket: AssociationSocket | None
    +property socket: AssociationSocket | None

    Return the AssociationSocket.

    diff --git a/dev/reference/generated/pynetdicom.ae.ApplicationEntity.html b/dev/reference/generated/pynetdicom.ae.ApplicationEntity.html index 1a3ecb9da..ac831648a 100644 --- a/dev/reference/generated/pynetdicom.ae.ApplicationEntity.html +++ b/dev/reference/generated/pynetdicom.ae.ApplicationEntity.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -117,23 +117,23 @@
    -

    pynetdicom.ae.ApplicationEntity

    +

    pynetdicom.ae.ApplicationEntity

    -class pynetdicom.ae.ApplicationEntity(ae_title: str = 'PYNETDICOM')[source]
    +class pynetdicom.ae.ApplicationEntity(ae_title: str = 'PYNETDICOM')[source]

    Represents a DICOM Application Entity (AE).

    An AE may be a Service Class Provider (SCP), a Service Class User (SCU) or both.

    -__init__(ae_title: str = 'PYNETDICOM') None[source]
    +__init__(ae_title: str = 'PYNETDICOM') None[source]

    Create a new Application Entity.

    -

    Changed in version 2.0: ae_title should be str

    +

    Changed in version 2.0: ae_title should be str

    Parameters:
    -

    ae_title (str, optional) – The AE title of the Application Entity as an ASCII string +

    ae_title (str, optional) – The AE title of the Application Entity as an ASCII string (default: 'PYNETDICOM').

    @@ -181,7 +181,7 @@

    pynetdicom.ae.ApplicationEntityAssociation threads.

    - + @@ -190,16 +190,16 @@

    pynetdicom.ae.ApplicationEntity

    - + - + - + - + @@ -211,7 +211,7 @@

    pynetdicom.ae.ApplicationEntity

    - + @@ -220,11 +220,11 @@

    pynetdicom.ae.ApplicationEntity
    -property acse_timeout: float | None
    +property acse_timeout: float | None

    Get or set the ACSE timeout value (in seconds).

    Parameters:
    -

    value (Union[int, float, None]) – The maximum amount of time (in seconds) to wait for association +

    value (Union[int, float, None]) – The maximum amount of time (in seconds) to wait for association related messages. A value of None means no timeout. (default: 30)

    @@ -233,7 +233,7 @@

    pynetdicom.ae.ApplicationEntity
    -property active_associations: List[Association]
    +property active_associations: List[Association]

    Return a list of the AE’s active Association threads.

    @@ -242,14 +242,14 @@

    pynetdicom.ae.ApplicationEntityReturn type: -

    list of Association

    +

    list of Association

    -add_requested_context(abstract_syntax: str | UID, transfer_syntax: str | UID | Sequence[str | UID] | None = None) None[source]
    +add_requested_context(abstract_syntax: str | UID, transfer_syntax: str | UID | Sequence[str | UID] | None = None) None[source]

    Add a presentation context to be proposed when requesting an association.

    When an SCU sends an association request to a peer it includes a list @@ -265,13 +265,13 @@

    pynetdicom.ae.ApplicationEntity
    Parameters:
      -
    • abstract_syntax (str or pydicom.uid.UID) – The abstract syntax of the presentation context to request.

    • -
    • transfer_syntax (str/pydicom.uid.UID or list of str/pydicom.uid.UID) – The transfer syntax(es) to request (default: +

    • abstract_syntax (str or pydicom.uid.UID) – The abstract syntax of the presentation context to request.

    • +
    • transfer_syntax (str/pydicom.uid.UID or list of str/pydicom.uid.UID) – The transfer syntax(es) to request (default: DEFAULT_TRANSFER_SYNTAXES).

    Raises:
    -

    ValueError – If 128 requested presentation contexts have already been added.

    +

    ValueError – If 128 requested presentation contexts have already been added.

    Examples

    @@ -346,7 +346,7 @@

    pynetdicom.ae.ApplicationEntity
    -add_supported_context(abstract_syntax: str | UID, transfer_syntax: str | UID | Sequence[str | UID] | None = None, scu_role: bool | None = None, scp_role: bool | None = None) None[source]
    +add_supported_context(abstract_syntax: str | UID, transfer_syntax: str | UID | Sequence[str | UID] | None = None, scu_role: bool | None = None, scp_role: bool | None = None) None[source]

    Add a presentation context to be supported when accepting association requests.

    When an association request is received from a peer it supplies a list @@ -360,10 +360,10 @@

    pynetdicom.ae.ApplicationEntity
    Parameters:

    - + @@ -354,7 +354,7 @@

    pynetdicom.association.Association

    - + @@ -378,13 +378,13 @@

    pynetdicom.association.AssociationTrue if the local AE is the association requestor.

    - + - + - + @@ -396,42 +396,42 @@

    pynetdicom.association.Association

    - + - +

    AA_1(dul)

    ae_title

    Get or set the AE title as str.

    Get or set the AE title as str.

    connection_timeout

    Get or set the connection timeout (in seconds).

    implementation_class_uid

    Get or set the Implementation Class UID as UID.

    Get or set the Implementation Class UID as UID.

    implementation_version_name

    Get or set the Implementation Version Name as str.

    Get or set the Implementation Version Name as str.

    maximum_associations

    Get or set the number of maximum simultaneous associations as int.

    Get or set the number of maximum simultaneous associations as int.

    maximum_pdu_size

    Get or set the maximum PDU size accepted by the AE as int.

    Get or set the maximum PDU size accepted by the AE as int.

    network_timeout

    Get or set the network timeout (in seconds).

    require_calling_aet

    Get or set the required calling AE title as a list of str.

    Get or set the required calling AE title as a list of str.

    supported_contexts

    Get or set a list of the supported PresentationContext items.

    get_events()

    Return a list of currently bound events.

    Return a list of currently bound events.

    get_handlers(event)

    Return the handlers bound to a specific event.

    accepted_contexts

    Return a list of accepted PresentationContext items.

    Return a list of accepted PresentationContext items.

    acse_timeout

    The ACSE timeout (in seconds).

    local

    Return a dict with information about the local AE.

    Return a dict with information about the local AE.

    lock

    Return the AE's threading.Lock.

    Return the AE's threading.Lock.

    mode

    The Association's mode as a str.

    The Association's mode as a str.

    name

    A string used for identification purposes only.

    rejected_contexts

    Return a list of rejected PresentationContext.

    Return a list of rejected PresentationContext.

    remote

    Return a dict with information about the peer AE.

    Return a dict with information about the peer AE.

    -abort() None[source]
    +abort() None[source]

    Abort the Association by sending an A-ABORT to the remote AE.

    -property accepted_contexts: List[PresentationContext]
    -

    Return a list of accepted +property accepted_contexts: List[PresentationContext] +

    Return a list of accepted PresentationContext items.

    -property acse_timeout: float | None
    +property acse_timeout: float | None

    The ACSE timeout (in seconds).

    -property ae: ApplicationEntity
    +property ae: ApplicationEntity

    Return the parent ApplicationEntity.

    -bind(event: NotificationEvent | InterventionEvent, handler: Callable, args: List[Any] | None = None) None[source]
    +bind(event: NotificationEvent | InterventionEvent, handler: Callable, args: List[Any] | None = None) None[source]

    Bind a callable handler to an event.

    New in version 1.3.

    @@ -444,7 +444,7 @@

    pynetdicom.association.Association

    @@ -453,14 +453,14 @@

    pynetdicom.association.Association
    -property dimse_timeout: int | float | None
    +property dimse_timeout: int | float | None

    The DIMSE timeout (in seconds).

    -get_events() List[NotificationEvent | InterventionEvent][source]
    -

    Return a list of currently bound events.

    +get_events() List[NotificationEvent | InterventionEvent][source] +

    Return a list of currently bound events.

    New in version 1.3.

    @@ -468,7 +468,7 @@

    pynetdicom.association.Association
    -get_handlers(event: NotificationEvent | InterventionEvent) List[Tuple[Callable, List[Any] | None]] | Tuple[Callable, List[Any] | None][source]
    +get_handlers(event: NotificationEvent | InterventionEvent) List[Tuple[Callable, List[Any] | None]] | Tuple[Callable, List[Any] | None][source]

    Return the handlers bound to a specific event.

    New in version 1.3.

    @@ -489,48 +489,48 @@

    pynetdicom.association.Association(None, None) if no handler has been bound.

    Return type:
    -

    2-tuple of (callable, args), list of 2-tuple

    +

    2-tuple of (callable, args), list of 2-tuple

    -property is_acceptor: bool
    +property is_acceptor: bool

    Return True if the local AE is the association acceptor.

    -property is_requestor: bool
    +property is_requestor: bool

    Return True if the local AE is the association requestor.

    -kill() None[source]
    +kill() None[source]

    Kill the Association thread.

    -property local: Dict[str, Any]
    -

    Return a dict with information about the local AE.

    +property local: Dict[str, Any] +

    Return a dict with information about the local AE.

    -property lock: allocate_lock
    -

    Return the AE’s threading.Lock.

    +property lock: allocate_lock +

    Return the AE’s threading.Lock.

    -property mode: str
    -

    The Association’s mode as a str.

    +property mode: str +

    The Association’s mode as a str.

    Parameters:
    -

    mode (str) – The mode of the Association, must be either 'requestor' or +

    mode (str) – The mode of the Association, must be either 'requestor' or 'acceptor'. If 'requestor' then its assumed that the local AE requests an association with peers and (by default) acts as the SCU. If 'acceptor' then its assumed that the local AE is @@ -542,32 +542,32 @@

    pynetdicom.association.Association
    -property network_timeout: int | float | None
    +property network_timeout: int | float | None

    The network timeout (in seconds).

    -property rejected_contexts: List[PresentationContext]
    -

    Return a list of rejected +property rejected_contexts: List[PresentationContext] +

    Return a list of rejected PresentationContext.

    -release() None[source]
    +release() None[source]

    Initiate association release by send an A-RELEASE request.

    -property remote: Dict[str, Any]
    -

    Return a dict with information about the peer AE.

    +property remote: Dict[str, Any] +

    Return a dict with information about the peer AE.

    -request() None[source]
    +request() None[source]

    Request an association with a peer.

    A request can only be made once the Association instance has been configured for requestor mode and been assigned an @@ -576,13 +576,13 @@

    pynetdicom.association.Association
    -run_reactor() None[source]
    +run_reactor() None[source]

    The main Association reactor.

    -send_c_cancel(msg_id: int, context_id: int | None = None, query_model: str | UID | None = None) None[source]
    +send_c_cancel(msg_id: int, context_id: int | None = None, query_model: str | UID | None = None) None[source]

    Send a C-CANCEL request to the peer AE.

    Changed in version 2.0: Added query_model and made context_id optional

    @@ -590,11 +590,11 @@

    pynetdicom.association.Association
    Parameters:
      -
    • msg_id (int) – The Message ID of the C-GET/C-MOVE/C-FIND operation to be +

    • msg_id (int) – The Message ID of the C-GET/C-MOVE/C-FIND operation to be cancelled. Must be between 0 and 65535, inclusive.

    • -
    • context_id (int, optional) – The presentation context ID of the original C-GET/C-MOVE/C-FIND +

    • context_id (int, optional) – The presentation context ID of the original C-GET/C-MOVE/C-FIND service request. Required if query_model is not used.

    • -
    • query_model (str or pydicom.uid.UID, optional) – The query model used with the original C-GET/C-MOVE/C-FIND service +

    • query_model (str or pydicom.uid.UID, optional) – The query model used with the original C-GET/C-MOVE/C-FIND service request. Required if context_id is not used.

    @@ -603,18 +603,18 @@

    pynetdicom.association.Association
    -send_c_echo(msg_id: int = 1) Dataset[source]
    +send_c_echo(msg_id: int = 1) Dataset[source]

    Send a C-ECHO request to the peer AE.

    Parameters:
    -

    msg_id (int, optional) – The C-ECHO request’s Message ID, must be between 0 and 65535, +

    msg_id (int, optional) – The C-ECHO request’s Message ID, must be between 0 and 65535, inclusive, (default 1).

    Returns:

    status – If the peer timed out, aborted or sent an invalid response then -returns an empty Dataset. If a valid +returns an empty Dataset. If a valid response was received from the peer then returns a -Dataset containing at least a +Dataset containing at least a (0000,0900) Status element, and, depending on the returned Status value, may optionally contain additional elements (see DICOM Standard, Part 7, Annex C).

    @@ -641,12 +641,12 @@

    pynetdicom.association.AssociationReturn type: -

    pydicom.dataset.Dataset

    +

    pydicom.dataset.Dataset

    Raises:
      -
    • RuntimeError – If called without an association to a peer SCP.

    • -
    • ValueError – If the association has no accepted presentation context for +

    • RuntimeError – If called without an association to a peer SCP.

    • +
    • ValueError – If the association has no accepted presentation context for Verification SOP Class.

    @@ -667,7 +667,7 @@

    pynetdicom.association.Association
    -send_c_find(dataset: Dataset, query_model: str | UID, msg_id: int = 1, priority: int = 2) Iterator[Tuple[Dataset, Dataset | None]][source]
    +send_c_find(dataset: Dataset, query_model: str | UID, msg_id: int = 1, priority: int = 2) Iterator[Tuple[Dataset, Dataset | None]][source]

    Send a C-FIND request to the peer AE.

    Yields (status, identifier) pairs for each response from the peer.

    @@ -676,15 +676,15 @@

    pynetdicom.association.Association
    Parameters:

    -

    Changed in version 2.0: move_aet should be str

    +

    Changed in version 2.0: move_aet should be str

    Parameters:
      -
    • dataset (pydicom.dataset.Dataset) – The C-MOVE request’s Identifier dataset. The exact +

    • dataset (pydicom.dataset.Dataset) – The C-MOVE request’s Identifier dataset. The exact requirements for the Identifier are Service Class specific (see the DICOM Standard, Part 4).

    • -
    • move_aet (str) – The value of the Move Destination parameter for the C-MOVE +

    • move_aet (str) – The value of the Move Destination parameter for the C-MOVE request, should be the AE title of the Storage SCP for the C-STORE sub-operations performed by the peer.

    • -
    • query_model (pydicom.uid.UID or str) – The value to use for the C-MOVE request’s (0000,0002) Affected +

    • query_model (pydicom.uid.UID or str) – The value to use for the C-MOVE request’s (0000,0002) Affected SOP Class UID parameter, which usually corresponds to the Information Model that is to be used when querying.

    • -
    • msg_id (int, optional) – The C-MOVE request’s Message ID, must be between 0 and 65535, +

    • msg_id (int, optional) – The C-MOVE request’s Message ID, must be between 0 and 65535, inclusive, (default 1).

    • -
    • priority (int, optional) –

      The value of the C-MOVE request’s Priority parameter (may not be +

    • priority (int, optional) –

      The value of the C-MOVE request’s Priority parameter (may not be supported by the peer), one of:

      • 0 - Medium

      • @@ -985,9 +985,9 @@

        pynetdicom.association.AssociationYields:
        Raises:
        @@ -1080,25 +1080,25 @@

        pynetdicom.association.Association
        -send_c_store(dataset: str | Path | Dataset, msg_id: int = 1, priority: int = 2, originator_aet: str | None = None, originator_id: int | None = None) Dataset[source]
        +send_c_store(dataset: str | Path | Dataset, msg_id: int = 1, priority: int = 2, originator_aet: str | None = None, originator_id: int | None = None) Dataset[source]

        Send a C-STORE request to the peer AE.

        Changed in version 2.0:

        • Changed dataset parameter to either be a dataset or the path to a dataset.

        • -
        • originator_aet should now be str

        • +
        • originator_aet should now be str

        Parameters:
          -
        • dataset (pydicom.dataset.Dataset, str or pathlib.Path) – The DICOM dataset to send to the peer or the file path to the +

        • dataset (pydicom.dataset.Dataset, str or pathlib.Path) – The DICOM dataset to send to the peer or the file path to the dataset to be sent. If a file path then the dataset will be read -and decoded using dcmread().

        • -
        • msg_id (int, optional) – The C-STORE request’s Message ID, must be between 0 and 65535, +and decoded using dcmread().

        • +
        • msg_id (int, optional) – The C-STORE request’s Message ID, must be between 0 and 65535, inclusive, (default 1).

        • -
        • priority (int, optional) –

          The value of the C-STORE request’s Priority parameter (may not be +

        • priority (int, optional) –

          The value of the C-STORE request’s Priority parameter (may not be supported by the peer), one of:

        • -
        • originator_aet (str, optional) – The value of the Move Originator Application Entity Title +

        • originator_aet (str, optional) – The value of the Move Originator Application Entity Title parameter for the C-STORE request. This is the AE title of the peer that invoked the C-MOVE operation for which this C-STORE sub-operation is being performed (default None).

        • -
        • originator_id (int, optional) – The value of the Move Originator Message ID parameter for the +

        • originator_id (int, optional) – The value of the Move Originator Message ID parameter for the C-STORE request. This is the original Message ID parameter value for the C-MOVE request primitive for which the C-STORE sub-operation is being performed (default None).

        • @@ -1118,9 +1118,9 @@

          pynetdicom.association.AssociationReturns:

          status – If the peer timed out, aborted or sent an invalid response then -returns an empty Dataset. If a valid +returns an empty Dataset. If a valid response was received from the peer then returns a -Dataset containing at least a +Dataset containing at least a (0000,0900) Status element, and, depending on the returned value, may optionally contain additional elements (see DICOM Standard, Part 7, Annex C).

          @@ -1172,15 +1172,15 @@

          pynetdicom.association.AssociationReturn type: -

          pydicom.dataset.Dataset

          +

          pydicom.dataset.Dataset

          Raises:
            -
          • RuntimeError – If send_c_store() is called with no established association.

          • -
          • AttributeError – If dataset is missing (0008,0016) SOP Class UID, +

          • RuntimeError – If send_c_store() is called with no established association.

          • +
          • AttributeError – If dataset is missing (0008,0016) SOP Class UID, (0008,0018) SOP Instance UID elements or the (0002,0010) Transfer Syntax UID file meta information element.

          • -
          • ValueError – If no accepted Presentation Context for dataset exists or if +

          • ValueError – If no accepted Presentation Context for dataset exists or if unable to encode the dataset.

          @@ -1202,7 +1202,7 @@

          pynetdicom.association.Association
          -send_n_action(dataset: Dataset, action_type: int, class_uid: str | UID, instance_uid: str | UID, msg_id: int = 1, meta_uid: str | UID | None = None) Tuple[Dataset, Dataset | None][source]
          +send_n_action(dataset: Dataset, action_type: int, class_uid: str | UID, instance_uid: str | UID, msg_id: int = 1, meta_uid: str | UID | None = None) Tuple[Dataset, Dataset | None][source]

          Send an N-ACTION request to the peer AE.

          Changed in version 1.4: Added meta_uid keyword parameter

          @@ -1210,17 +1210,17 @@

          pynetdicom.association.Association
          Parameters:
            -
          • dataset (pydicom.dataset.Dataset or None) – The dataset that will be sent as the Action Information +

          • dataset (pydicom.dataset.Dataset or None) – The dataset that will be sent as the Action Information parameter in the request, or None if not required.

          • -
          • action_type (int) – The value of the request’s (0000,1008) Action Type ID +

          • action_type (int) – The value of the request’s (0000,1008) Action Type ID parameter.

          • -
          • class_uid (pydicom.uid.UID) – The UID to be sent for the request’s (0000,0003) +

          • class_uid (pydicom.uid.UID) – The UID to be sent for the request’s (0000,0003) Requested SOP Class UID parameter.

          • -
          • instance_uid (pydicom.uid.UID) – The UID to be sent for the request’s (0000,1001) +

          • instance_uid (pydicom.uid.UID) – The UID to be sent for the request’s (0000,1001) Requested SOP Instance UID parameter.

          • -
          • msg_id (int, optional) – The request’s Message ID parameter value, must be +

          • msg_id (int, optional) – The request’s Message ID parameter value, must be between 0 and 65535, inclusive, (default 1).

          • -
          • meta_uid (pydicom.uid.UID, optional) – If the service class operates under a presentation context +

          • meta_uid (pydicom.uid.UID, optional) – If the service class operates under a presentation context negotiated using a Meta SOP Class rather than a standard SOP Class (such as with Print Management service class and its Basic Grayscale Print Management Meta SOP Class) then this @@ -1231,9 +1231,9 @@

            pynetdicom.association.AssociationReturns:

            • status (pydicom.dataset.Dataset) – If the peer timed out, aborted or sent an invalid response then -returns an empty Dataset. If a response +returns an empty Dataset. If a response was received from the peer then returns a -Dataset containing at least a (0000,0900) +Dataset containing at least a (0000,0900) Status element, and depending on the returned value, may optionally contain additional elements (see the DICOM Standard, Part 7, Section 10.1.4.1.10 and @@ -1264,10 +1264,10 @@

              pynetdicom.association.AssociationDataset containing attributes +Dataset containing attributes corresponding to those supplied in the Action Reply. Because Action Reply is optional the returned -Dataset may be empty.

              +Dataset may be empty.

              If the status category is ‘Failure’ or if the peer timed-out, aborted, or sent an invalid response then returns None.

            • @@ -1296,7 +1296,7 @@

              pynetdicom.association.Association
              -send_n_create(dataset: Dataset, class_uid: str | UID, instance_uid: str | UID | None = None, msg_id: int = 1, meta_uid: str | UID | None = None) Tuple[Dataset, Dataset | None][source]
              +send_n_create(dataset: Dataset, class_uid: str | UID, instance_uid: str | UID | None = None, msg_id: int = 1, meta_uid: str | UID | None = None) Tuple[Dataset, Dataset | None][source]

              Send an N-CREATE request to the peer AE.

              Changed in version 1.4: Added meta_uid keyword parameter

              @@ -1304,15 +1304,15 @@

              pynetdicom.association.Association
              Parameters:
                -
              • dataset (pydicom.dataset.Dataset or None) – The dataset that will be sent as the Attribute List +

              • dataset (pydicom.dataset.Dataset or None) – The dataset that will be sent as the Attribute List parameter in the N-CREATE request, or None if not required.

              • -
              • class_uid (pydicom.uid.UID) – The UID to be sent for the request’s (0000,0002) Affected SOP +

              • class_uid (pydicom.uid.UID) – The UID to be sent for the request’s (0000,0002) Affected SOP Class UID parameter.

              • -
              • instance_uid (pydicom.uid.UID, optional) – The UID to be sent for the request’s (0000,1000) Affected SOP +

              • instance_uid (pydicom.uid.UID, optional) – The UID to be sent for the request’s (0000,1000) Affected SOP Instance UID parameter.

              • -
              • msg_id (int, optional) – The request’s Message ID parameter value, must be between 0 and +

              • msg_id (int, optional) – The request’s Message ID parameter value, must be between 0 and 65535, inclusive, (default 1).

              • -
              • meta_uid (pydicom.uid.UID, optional) – If the service class operates under a presentation context +

              • meta_uid (pydicom.uid.UID, optional) – If the service class operates under a presentation context negotiated using a Meta SOP Class rather than a standard SOP Class (such as with Print Management service class and its Basic Grayscale Print Management Meta SOP Class) then this @@ -1323,9 +1323,9 @@

                pynetdicom.association.AssociationReturns:

        @@ -1520,7 +1520,7 @@

        pynetdicom.association.Association
        -send_n_event_report(dataset: Dataset, event_type: int, class_uid: str | UID, instance_uid: str | UID, msg_id: int = 1, meta_uid: str | UID | None = None) Tuple[Dataset, Dataset | None][source]
        +send_n_event_report(dataset: Dataset, event_type: int, class_uid: str | UID, instance_uid: str | UID, msg_id: int = 1, meta_uid: str | UID | None = None) Tuple[Dataset, Dataset | None][source]

        Send an N-EVENT-REPORT request to the peer AE.

        Changed in version 1.4: Added meta_uid keyword parameter

        @@ -1528,18 +1528,18 @@

        pynetdicom.association.Association
        Parameters:
          -
        • dataset (pydicom.dataset.Dataset or None) – The dataset that will be sent as the Event Information parameter +

        • dataset (pydicom.dataset.Dataset or None) – The dataset that will be sent as the Event Information parameter in the N-EVENT-REPORT request, if no Event Information parameter is needed then None.

        • -
        • event_type (int) – The value to be sent for the request’s (0000,1002) Event Type ID +

        • event_type (int) – The value to be sent for the request’s (0000,1002) Event Type ID parameter.

        • -
        • class_uid (pydicom.uid.UID) – The UID to be sent for the request’s (0000,0003) Affected SOP +

        • class_uid (pydicom.uid.UID) – The UID to be sent for the request’s (0000,0003) Affected SOP Class UID parameter.

        • -
        • instance_uid (pydicom.uid.UID) – The UID to be sent for the request’s (0000,1000) Affected SOP +

        • instance_uid (pydicom.uid.UID) – The UID to be sent for the request’s (0000,1000) Affected SOP Instance UID parameter.

        • -
        • msg_id (int, optional) – The request’s Message ID parameter value, must be between 0 and +

        • msg_id (int, optional) – The request’s Message ID parameter value, must be between 0 and 65535, inclusive, (default 1).

        • -
        • meta_uid (pydicom.uid.UID, optional) – If the service class operates under a presentation context +

        • meta_uid (pydicom.uid.UID, optional) – If the service class operates under a presentation context negotiated using a Meta SOP Class rather than a standard SOP Class (such as with Print Management service class and its Basic Grayscale Print Management Meta SOP Class) then this @@ -1550,9 +1550,9 @@

          pynetdicom.association.AssociationReturns:

          • status (pydicom.dataset.Dataset) – If the peer timed out, aborted or sent an invalid response then -returns an empty Dataset. If a response +returns an empty Dataset. If a response was received from the peer then returns a -Dataset containing at least a (0000,0900) +Dataset containing at least a (0000,0900) Status element, and depending on the returned value, may optionally contain additional elements (see the DICOM Standard, Part 7, @@ -1583,10 +1583,10 @@

            pynetdicom.association.AssociationDataset +Dataset containing attributes corresponding to those supplied in the Event Reply. Because Event Reply is optional the returned -Dataset may be empty.

            +Dataset may be empty.

            If the status category is ‘Failure’ or if the peer timed-out, aborted, or sent an invalid response then returns None.

          • @@ -1614,7 +1614,7 @@

            pynetdicom.association.Association
            -send_n_get(identifier_list: List[BaseTag], class_uid: str | UID, instance_uid: str | UID, msg_id: int = 1, meta_uid: str | UID | None = None) Tuple[Dataset, Dataset | None][source]
            +send_n_get(identifier_list: List[BaseTag], class_uid: str | UID, instance_uid: str | UID, msg_id: int = 1, meta_uid: str | UID | None = None) Tuple[Dataset, Dataset | None][source]

            Send an N-GET request to the peer AE.

            Changed in version 1.4: Added meta_uid keyword parameter

            @@ -1622,17 +1622,17 @@

            pynetdicom.association.Association
            Parameters:
              -
            • identifier_list (list of pydicom.tag.BaseTag) – A list of DICOM Data Element tags to be sent for the request’s +

            • identifier_list (list of pydicom.tag.BaseTag) – A list of DICOM Data Element tags to be sent for the request’s (0000,1005) Attribute Identifier List parameter. Should either be -a list of pydicom BaseTag objects or a +a list of pydicom BaseTag objects or a list of values that is acceptable for creating them.

            • -
            • class_uid (pydicom.uid.UID) – The UID to be sent for the request’s (0000,0003) Requested SOP +

            • class_uid (pydicom.uid.UID) – The UID to be sent for the request’s (0000,0003) Requested SOP Class UID parameter.

            • -
            • instance_uid (pydicom.uid.UID) – The UID to be sent for the request’s (0000,1001) Requested SOP +

            • instance_uid (pydicom.uid.UID) – The UID to be sent for the request’s (0000,1001) Requested SOP Instance UID parameter.

            • -
            • msg_id (int, optional) – The request’s Message ID parameter value, must be between 0 and +

            • msg_id (int, optional) – The request’s Message ID parameter value, must be between 0 and 65535, inclusive, (default 1).

            • -
            • meta_uid (pydicom.uid.UID, optional) – If the service class operates under a presentation context +

            • meta_uid (pydicom.uid.UID, optional) – If the service class operates under a presentation context negotiated using a Meta SOP Class rather than a standard SOP Class (such as with Print Management service class and its Basic Grayscale Print Management Meta SOP Class) then this @@ -1643,9 +1643,9 @@

              pynetdicom.association.AssociationReturns:

    -unbind(event: NotificationEvent | InterventionEvent, handler: Callable) None[source]
    +unbind(event: NotificationEvent | InterventionEvent, handler: Callable) None[source]

    Unbind a callable handler from an event.

    New in version 1.3.

    diff --git a/dev/reference/generated/pynetdicom.association.ServiceUser.html b/dev/reference/generated/pynetdicom.association.ServiceUser.html index 10513c614..363e7c4cc 100644 --- a/dev/reference/generated/pynetdicom.association.ServiceUser.html +++ b/dev/reference/generated/pynetdicom.association.ServiceUser.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -118,10 +118,10 @@
    -

    pynetdicom.association.ServiceUser

    +

    pynetdicom.association.ServiceUser

    -class pynetdicom.association.ServiceUser(assoc: Association, mode: str)[source]
    +class pynetdicom.association.ServiceUser(assoc: Association, mode: str)[source]

    Convenience class for the Association service user.

    An Association object has two ServiceUser attributes, one representing the association requestor and the other the association @@ -173,29 +173,29 @@

    pynetdicom.association.ServiceUser
    -address
    +address

    The TCP/IP address of the AE.

    Type:
    -

    str

    +

    str

    -port
    +port

    The port number of the AE.

    Type:
    -

    int

    +

    int

    -primitive
    +primitive

    The A-ASSOCIATE primitive (request if mode is 'requestor', accept/reject if mode is 'acceptor') sent or received by the AE during association negotiation.

    @@ -208,13 +208,13 @@

    pynetdicom.association.ServiceUser
    -__init__(assoc: Association, mode: str) None[source]
    +__init__(assoc: Association, mode: str) None[source]

    Create a new ServiceUser.

    Parameters:
    -add_negotiation_item(item: MaximumLengthNotification | ImplementationClassUIDNotification | ImplementationVersionNameNotification | AsynchronousOperationsWindowNegotiation | SCP_SCU_RoleSelectionNegotiation | SOPClassExtendedNegotiation | SOPClassCommonExtendedNegotiation | UserIdentityNegotiation) None[source]
    +add_negotiation_item(item: MaximumLengthNotification | ImplementationClassUIDNotification | ImplementationVersionNameNotification | AsynchronousOperationsWindowNegotiation | SCP_SCU_RoleSelectionNegotiation | SOPClassExtendedNegotiation | SOPClassCommonExtendedNegotiation | UserIdentityNegotiation) None[source]

    Add an extended negotiation item to the user information.

    Items can only be added prior to starting the association negotiation.

    @@ -344,9 +344,9 @@

    pynetdicom.association.ServiceUserRaises:
      -
    • RuntimeError – If attempting to add an item after association negotiation has +

    • RuntimeError – If attempting to add an item after association negotiation has started.

    • -
    • TypeError – If item it not an extended negotiation item.

    • +
    • TypeError – If item it not an extended negotiation item.

    @@ -354,24 +354,24 @@

    pynetdicom.association.ServiceUser
    -property ae_title: str
    +property ae_title: str

    Get or set the AE title.

    Parameters:
    -

    value (str) – The AE title as an ASCII string.

    +

    value (str) – The AE title as an ASCII string.

    Returns:

    The AE title as an ASCII string.

    Return type:
    -

    str

    +

    str

    -property asynchronous_operations: Tuple[int, int]
    +property asynchronous_operations: Tuple[int, int]

    Return the Asynchronous Operations Window operations numbers.

    Returns:
    @@ -380,15 +380,15 @@

    pynetdicom.association.ServiceUserReturn type: -

    2-tuple of int

    +

    2-tuple of int

    -property extended_negotiation: List[MaximumLengthNotification | ImplementationClassUIDNotification | ImplementationVersionNameNotification | AsynchronousOperationsWindowNegotiation | SCP_SCU_RoleSelectionNegotiation | SOPClassExtendedNegotiation | UserIdentityNegotiation | SOPClassCommonExtendedNegotiation]
    -

    Return a list of Extended Negotiation items.

    +property extended_negotiation: List[MaximumLengthNotification | ImplementationClassUIDNotification | ImplementationVersionNameNotification | AsynchronousOperationsWindowNegotiation | SCP_SCU_RoleSelectionNegotiation | SOPClassExtendedNegotiation | UserIdentityNegotiation | SOPClassCommonExtendedNegotiation] +

    Return a list of Extended Negotiation items.

    Extended Negotiation items are:

    • SCP/SCU Role Selection Negotiation (0 or more)

    • @@ -400,25 +400,25 @@

      pynetdicom.association.ServiceUser
      Returns:

      If mode() is 'requestor' then returns a -list of the proposed extended negotiation items, +list of the proposed extended negotiation items, otherwise returns a list of the extended negotiation item responses.

      Return type:
      -

      list

      +

      list

    -get_contexts(cx_type: str) List[PresentationContext][source]
    -

    Return a list of +get_contexts(cx_type: str) List[PresentationContext][source] +

    Return a list of PresentationContext items corresponding to cx_type.

    Parameters:
    -

    cx_type (str) –

    The type of contexts to return, if mode is 'requestor':

    +

    cx_type (str) –

    The type of contexts to return, if mode is 'requestor':

    -property implementation_class_uid: UID | None
    -

    The Implementation Class UID as a UID.

    +property implementation_class_uid: UID | None +

    The Implementation Class UID as a UID.

    Returns:

    Returns the Implementation Class UID if the requestor or if @@ -460,18 +460,18 @@

    pynetdicom.association.ServiceUserNone if the acceptor and they have rejected the negotiation.

    Return type:
    -

    pydicom.uid.UID or None

    +

    pydicom.uid.UID or None

    -property implementation_version_name: str | None
    +property implementation_version_name: str | None

    Get or set the Implementation Version Name.

    Parameters:
    -

    value (str or None) – The value to use for the Implementation Version Name, or None +

    value (str or None) – The value to use for the Implementation Version Name, or None if no Implementation Version Name Notification item is to be included in the association negotiation. Can only be set prior to association negotiation.

    @@ -483,36 +483,36 @@

    pynetdicom.association.ServiceUserReturn type: -

    str or None

    +

    str or None

    -property info: Dict[str, Any]
    -

    Return a dict with information about the +property info: Dict[str, Any] +

    Return a dict with information about the ServiceUser.

    -property is_acceptor: bool
    +property is_acceptor: bool

    Return True if the ServiceUser is the association acceptor.

    -property is_requestor: bool
    +property is_requestor: bool

    Return True if the ServiceUser is the association requestor.

    -property maximum_length: int | None
    -

    The maximum PDV size as int.

    +property maximum_length: int | None +

    The maximum PDV size as int.

    Returns:

    Returns the Maximum Received Length if the requestor or if @@ -520,21 +520,21 @@

    pynetdicom.association.ServiceUserNone if the acceptor and they have rejected the negotiation.

    Return type:
    -

    int or None

    +

    int or None

    -property mode: str
    -

    Return the mode as str, either 'requestor' or +property mode: str +

    Return the mode as str, either 'requestor' or 'acceptor'.

    -remove_negotiation_item(item: MaximumLengthNotification | ImplementationClassUIDNotification | ImplementationVersionNameNotification | AsynchronousOperationsWindowNegotiation | SCP_SCU_RoleSelectionNegotiation | SOPClassExtendedNegotiation | SOPClassCommonExtendedNegotiation | UserIdentityNegotiation) None[source]
    +remove_negotiation_item(item: MaximumLengthNotification | ImplementationClassUIDNotification | ImplementationVersionNameNotification | AsynchronousOperationsWindowNegotiation | SCP_SCU_RoleSelectionNegotiation | SOPClassExtendedNegotiation | SOPClassCommonExtendedNegotiation | UserIdentityNegotiation) None[source]

    Remove an extended negotiation item from the user information.

    Items can only be removed prior to starting the association negotiation.

    @@ -552,9 +552,9 @@

    pynetdicom.association.ServiceUserRaises:
      -
    • RuntimeError – If attempting to remove an item after association negotiation has +

    • RuntimeError – If attempting to remove an item after association negotiation has started.

    • -
    • TypeError – If item it not an extended negotiation item.

    • +
    • TypeError – If item it not an extended negotiation item.

    @@ -562,20 +562,20 @@

    pynetdicom.association.ServiceUser
    -property requested_contexts: List[PresentationContext]
    -

    A list of the requestor’s requested presentation +property requested_contexts: List[PresentationContext] +

    A list of the requestor’s requested presentation contexts.

    -reset_negotiation_items() None[source]
    +reset_negotiation_items() None[source]

    Remove all extended negotiation items.

    Items can only be removed prior to starting the association negotiation.

    Raises:
    -

    RuntimeError – If attempting to clear the extended negotiation items after +

    RuntimeError – If attempting to clear the extended negotiation items after association negotiation has started.

    @@ -583,7 +583,7 @@

    pynetdicom.association.ServiceUser
    -property role_selection: Dict[UID, SCP_SCU_RoleSelectionNegotiation]
    +property role_selection: Dict[UID, SCP_SCU_RoleSelectionNegotiation]

    Return any SCP/SCU Role Selection items.

    Returns:
    @@ -591,14 +591,14 @@

    pynetdicom.association.ServiceUserSCP_SCU_RoleSelectionNegotiation}.

    Return type:
    -

    dict

    +

    dict

    -property sop_class_common_extended: Dict[UID, SOPClassCommonExtendedNegotiation]
    +property sop_class_common_extended: Dict[UID, SOPClassCommonExtendedNegotiation]

    Return the SOP Class Common Extended items.

    If the ServiceUser is the association acceptor then no SOP Class Common Extended items will be present in the User Information.

    @@ -608,14 +608,14 @@

    pynetdicom.association.ServiceUser{'SOP Class UID' : item}.

    Return type:
    -

    dict

    +

    dict

    -property sop_class_extended: Dict[UID, bytes]
    +property sop_class_extended: Dict[UID, bytes]

    Return any SOP Class Extended items.

    Returns:
    @@ -623,28 +623,28 @@

    pynetdicom.association.ServiceUserApplication Information}.

    Return type:
    -

    dict

    +

    dict

    -property supported_contexts: List[PresentationContext]
    +property supported_contexts: List[PresentationContext]

    The supported presentation contexts.

    Returns:

    The supported presentation contexts when acting as an acceptor.

    Return type:
    -

    list of presentation.PresentationContext

    +

    list of presentation.PresentationContext

    -property user_identity: UserIdentityNegotiation | None
    +property user_identity: UserIdentityNegotiation | None

    Return the User Identity Negotiation Item (if available).

    Returns:
    @@ -659,13 +659,13 @@

    pynetdicom.association.ServiceUser
    -property user_information: List[MaximumLengthNotification | ImplementationClassUIDNotification | ImplementationVersionNameNotification | AsynchronousOperationsWindowNegotiation | SCP_SCU_RoleSelectionNegotiation | SOPClassExtendedNegotiation | UserIdentityNegotiation | SOPClassCommonExtendedNegotiation]
    -

    Returns a list of the User Information items.

    +property user_information: List[MaximumLengthNotification | ImplementationClassUIDNotification | ImplementationVersionNameNotification | AsynchronousOperationsWindowNegotiation | SCP_SCU_RoleSelectionNegotiation | SOPClassExtendedNegotiation | UserIdentityNegotiation | SOPClassCommonExtendedNegotiation] +

    Returns a list of the User Information items.

    -property writeable: bool
    +property writeable: bool

    Return True if the current object can be changed.

    diff --git a/dev/reference/generated/pynetdicom.debug_logger.html b/dev/reference/generated/pynetdicom.debug_logger.html index 373be9408..b1b1e1a05 100644 --- a/dev/reference/generated/pynetdicom.debug_logger.html +++ b/dev/reference/generated/pynetdicom.debug_logger.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -119,10 +119,10 @@
    -

    pynetdicom.debug_logger

    +

    pynetdicom.debug_logger

    -pynetdicom.debug_logger() None[source]
    +pynetdicom.debug_logger() None[source]

    Setup the logging for debugging.

    diff --git a/dev/reference/generated/pynetdicom.dimse.DIMSEServiceProvider.html b/dev/reference/generated/pynetdicom.dimse.DIMSEServiceProvider.html index d64cf5368..352e76e37 100644 --- a/dev/reference/generated/pynetdicom.dimse.DIMSEServiceProvider.html +++ b/dev/reference/generated/pynetdicom.dimse.DIMSEServiceProvider.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -120,10 +120,10 @@
    -

    pynetdicom.dimse.DIMSEServiceProvider

    +

    pynetdicom.dimse.DIMSEServiceProvider

    -class pynetdicom.dimse.DIMSEServiceProvider(assoc: Association)[source]
    +class pynetdicom.dimse.DIMSEServiceProvider(assoc: Association)[source]

    The DIMSE service provider.

    Changed in version 1.2: Added msg_queue attribute

    @@ -222,20 +222,20 @@

    pynetdicom.dimse.DIMSEServiceProvider
    -cancel_rq
    +cancel_rq

    A dict of {MessageIDBeingRespondedTo : C_CANCEL} messages received. The dict is cleared out at the start and end of Service Class operations and is limited to a maximum of 10 messages.

    Type:
    -

    dict

    +

    dict

    -message
    +message

    The DIMSE message currently being received.

    Type:
    @@ -246,7 +246,7 @@

    pynetdicom.dimse.DIMSEServiceProvider
    -msg_queue
    +msg_queue

    A queue holding decoded DIMSE Message primitives received from the peer, except for C-CANCEL requests.

    @@ -262,7 +262,7 @@

    pynetdicom.dimse.DIMSEServiceProvider
    -__init__(assoc: Association) None[source]
    +__init__(assoc: Association) None[source]

    Initialise the DIMSE service provider.

    Changed in version 1.3: Class initialisation now only takes assoc parameter.

    @@ -307,13 +307,13 @@

    pynetdicom.dimse.DIMSEServiceProviderDULServiceProvider.

    maximum_pdu_size

    -

    Return the peer's maximum PDU length as int.

    +

    Return the peer's maximum PDU length as int.

    -property assoc: Association
    +property assoc: Association

    Return the parent Association.

    New in version 1.3.

    @@ -322,19 +322,19 @@

    pynetdicom.dimse.DIMSEServiceProvider
    -property dimse_timeout: float | None
    +property dimse_timeout: float | None

    Return the DIMSE timeout as numeric or None.

    -property dul: DULServiceProvider
    +property dul: DULServiceProvider

    Return the DULServiceProvider.

    -get_msg(block: bool = False) Tuple[None, None] | Tuple[int, C_ECHO | C_FIND | C_GET | C_MOVE | C_STORE | N_ACTION | N_CREATE | N_DELETE | N_EVENT_REPORT | N_GET | N_SET][source]
    +get_msg(block: bool = False) Tuple[None, None] | Tuple[int, C_ECHO | C_FIND | C_GET | C_MOVE | C_STORE | N_ACTION | N_CREATE | N_DELETE | N_EVENT_REPORT | N_GET | N_SET][source]

    Get the next available DIMSE message.

    New in version 1.2.

    @@ -345,7 +345,7 @@

    pynetdicom.dimse.DIMSEServiceProvider
    Parameters:
    -

    block (bool) – If True then the function will block until either a message is +

    block (bool) – If True then the function will block until either a message is available or dimse_timeout expires, otherwise non-blocking.

    @@ -357,20 +357,20 @@

    pynetdicom.dimse.DIMSEServiceProviderReturn type: -

    (int, dimse_messages.DIMSEMessage) or (None, None)

    +

    (int, dimse_messages.DIMSEMessage) or (None, None)

    -property maximum_pdu_size: int
    -

    Return the peer’s maximum PDU length as int.

    +property maximum_pdu_size: int +

    Return the peer’s maximum PDU length as int.

    -peek_msg() Tuple[None, None] | Tuple[int, C_ECHO | C_FIND | C_GET | C_MOVE | C_STORE | N_ACTION | N_CREATE | N_DELETE | N_EVENT_REPORT | N_GET | N_SET][source]
    +peek_msg() Tuple[None, None] | Tuple[int, C_ECHO | C_FIND | C_GET | C_MOVE | C_STORE | N_ACTION | N_CREATE | N_DELETE | N_EVENT_REPORT | N_GET | N_SET][source]

    Return the first message in the message queue or None.

    New in version 1.2.

    @@ -382,14 +382,14 @@

    pynetdicom.dimse.DIMSEServiceProviderReturn type: -

    (int, dimse_messages.DIMSEMessage) or (None, None)

    +

    (int, dimse_messages.DIMSEMessage) or (None, None)

    -receive_primitive(primitive: P_DATA) None[source]
    +receive_primitive(primitive: P_DATA) None[source]

    Process a P-DATA primitive received from the remote.

    New in version 1.2.

    @@ -411,13 +411,13 @@

    pynetdicom.dimse.DIMSEServiceProvider
    -send_msg(primitive: C_CANCEL | C_ECHO | C_FIND | C_GET | C_MOVE | C_STORE | N_ACTION | N_CREATE | N_DELETE | N_EVENT_REPORT | N_GET | N_SET, context_id: int) None[source]
    +send_msg(primitive: C_CANCEL | C_ECHO | C_FIND | C_GET | C_MOVE | C_STORE | N_ACTION | N_CREATE | N_DELETE | N_EVENT_REPORT | N_GET | N_SET, context_id: int) None[source]

    Encode and send a DIMSE-C or DIMSE-N message to the peer AE.

    Parameters:
    • primitive (dimse_primitives DIMSE Primitive class) – The DIMSE message primitive to send to the peer.

    • -
    • context_id (int) – The ID of the presentation context that the message is to be +

    • context_id (int) – The ID of the presentation context that the message is to be sent under.

    diff --git a/dev/reference/generated/pynetdicom.dimse_messages.C_CANCEL_RQ.html b/dev/reference/generated/pynetdicom.dimse_messages.C_CANCEL_RQ.html index e2647e84d..a5fe541ab 100644 --- a/dev/reference/generated/pynetdicom.dimse_messages.C_CANCEL_RQ.html +++ b/dev/reference/generated/pynetdicom.dimse_messages.C_CANCEL_RQ.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,13 +121,13 @@
    -

    pynetdicom.dimse_messages.C_CANCEL_RQ

    +

    pynetdicom.dimse_messages.C_CANCEL_RQ

    -class pynetdicom.dimse_messages.C_CANCEL_RQ[source]
    +class pynetdicom.dimse_messages.C_CANCEL_RQ[source]
    -__init__() None[source]
    +__init__() None[source]

    Create a new DIMSE Message.

    diff --git a/dev/reference/generated/pynetdicom.dimse_messages.C_ECHO_RQ.html b/dev/reference/generated/pynetdicom.dimse_messages.C_ECHO_RQ.html index 786a19a8e..6c93764f7 100644 --- a/dev/reference/generated/pynetdicom.dimse_messages.C_ECHO_RQ.html +++ b/dev/reference/generated/pynetdicom.dimse_messages.C_ECHO_RQ.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,13 +121,13 @@
    -

    pynetdicom.dimse_messages.C_ECHO_RQ

    +

    pynetdicom.dimse_messages.C_ECHO_RQ

    -class pynetdicom.dimse_messages.C_ECHO_RQ[source]
    +class pynetdicom.dimse_messages.C_ECHO_RQ[source]
    -__init__() None[source]
    +__init__() None[source]

    Create a new DIMSE Message.

    diff --git a/dev/reference/generated/pynetdicom.dimse_messages.C_ECHO_RSP.html b/dev/reference/generated/pynetdicom.dimse_messages.C_ECHO_RSP.html index 115dd5745..92ff02fc2 100644 --- a/dev/reference/generated/pynetdicom.dimse_messages.C_ECHO_RSP.html +++ b/dev/reference/generated/pynetdicom.dimse_messages.C_ECHO_RSP.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,13 +121,13 @@
    -

    pynetdicom.dimse_messages.C_ECHO_RSP

    +

    pynetdicom.dimse_messages.C_ECHO_RSP

    -class pynetdicom.dimse_messages.C_ECHO_RSP[source]
    +class pynetdicom.dimse_messages.C_ECHO_RSP[source]
    -__init__() None[source]
    +__init__() None[source]

    Create a new DIMSE Message.

    diff --git a/dev/reference/generated/pynetdicom.dimse_messages.C_FIND_RQ.html b/dev/reference/generated/pynetdicom.dimse_messages.C_FIND_RQ.html index 97eef8554..f406a34a7 100644 --- a/dev/reference/generated/pynetdicom.dimse_messages.C_FIND_RQ.html +++ b/dev/reference/generated/pynetdicom.dimse_messages.C_FIND_RQ.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,13 +121,13 @@
    -

    pynetdicom.dimse_messages.C_FIND_RQ

    +

    pynetdicom.dimse_messages.C_FIND_RQ

    -class pynetdicom.dimse_messages.C_FIND_RQ[source]
    +class pynetdicom.dimse_messages.C_FIND_RQ[source]
    -__init__() None[source]
    +__init__() None[source]

    Create a new DIMSE Message.

    diff --git a/dev/reference/generated/pynetdicom.dimse_messages.C_FIND_RSP.html b/dev/reference/generated/pynetdicom.dimse_messages.C_FIND_RSP.html index c915055a4..7f10dc2cc 100644 --- a/dev/reference/generated/pynetdicom.dimse_messages.C_FIND_RSP.html +++ b/dev/reference/generated/pynetdicom.dimse_messages.C_FIND_RSP.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,13 +121,13 @@
    -

    pynetdicom.dimse_messages.C_FIND_RSP

    +

    pynetdicom.dimse_messages.C_FIND_RSP

    -class pynetdicom.dimse_messages.C_FIND_RSP[source]
    +class pynetdicom.dimse_messages.C_FIND_RSP[source]
    -__init__() None[source]
    +__init__() None[source]

    Create a new DIMSE Message.

    diff --git a/dev/reference/generated/pynetdicom.dimse_messages.C_GET_RQ.html b/dev/reference/generated/pynetdicom.dimse_messages.C_GET_RQ.html index 5973e1406..e72adb3f5 100644 --- a/dev/reference/generated/pynetdicom.dimse_messages.C_GET_RQ.html +++ b/dev/reference/generated/pynetdicom.dimse_messages.C_GET_RQ.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,13 +121,13 @@
    -

    pynetdicom.dimse_messages.C_GET_RQ

    +

    pynetdicom.dimse_messages.C_GET_RQ

    -class pynetdicom.dimse_messages.C_GET_RQ[source]
    +class pynetdicom.dimse_messages.C_GET_RQ[source]
    -__init__() None[source]
    +__init__() None[source]

    Create a new DIMSE Message.

    diff --git a/dev/reference/generated/pynetdicom.dimse_messages.C_GET_RSP.html b/dev/reference/generated/pynetdicom.dimse_messages.C_GET_RSP.html index 1f2c9ab8e..247607524 100644 --- a/dev/reference/generated/pynetdicom.dimse_messages.C_GET_RSP.html +++ b/dev/reference/generated/pynetdicom.dimse_messages.C_GET_RSP.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,13 +121,13 @@
    -

    pynetdicom.dimse_messages.C_GET_RSP

    +

    pynetdicom.dimse_messages.C_GET_RSP

    -class pynetdicom.dimse_messages.C_GET_RSP[source]
    +class pynetdicom.dimse_messages.C_GET_RSP[source]
    -__init__() None[source]
    +__init__() None[source]

    Create a new DIMSE Message.

    diff --git a/dev/reference/generated/pynetdicom.dimse_messages.C_MOVE_RQ.html b/dev/reference/generated/pynetdicom.dimse_messages.C_MOVE_RQ.html index ca462dbde..1571920d8 100644 --- a/dev/reference/generated/pynetdicom.dimse_messages.C_MOVE_RQ.html +++ b/dev/reference/generated/pynetdicom.dimse_messages.C_MOVE_RQ.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,13 +121,13 @@
    -

    pynetdicom.dimse_messages.C_MOVE_RQ

    +

    pynetdicom.dimse_messages.C_MOVE_RQ

    -class pynetdicom.dimse_messages.C_MOVE_RQ[source]
    +class pynetdicom.dimse_messages.C_MOVE_RQ[source]
    -__init__() None[source]
    +__init__() None[source]

    Create a new DIMSE Message.

    diff --git a/dev/reference/generated/pynetdicom.dimse_messages.C_MOVE_RSP.html b/dev/reference/generated/pynetdicom.dimse_messages.C_MOVE_RSP.html index 750f38ca4..683e4bcdb 100644 --- a/dev/reference/generated/pynetdicom.dimse_messages.C_MOVE_RSP.html +++ b/dev/reference/generated/pynetdicom.dimse_messages.C_MOVE_RSP.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,13 +121,13 @@
    -

    pynetdicom.dimse_messages.C_MOVE_RSP

    +

    pynetdicom.dimse_messages.C_MOVE_RSP

    -class pynetdicom.dimse_messages.C_MOVE_RSP[source]
    +class pynetdicom.dimse_messages.C_MOVE_RSP[source]
    -__init__() None[source]
    +__init__() None[source]

    Create a new DIMSE Message.

    diff --git a/dev/reference/generated/pynetdicom.dimse_messages.C_STORE_RQ.html b/dev/reference/generated/pynetdicom.dimse_messages.C_STORE_RQ.html index 42c46d6bc..9cab1b679 100644 --- a/dev/reference/generated/pynetdicom.dimse_messages.C_STORE_RQ.html +++ b/dev/reference/generated/pynetdicom.dimse_messages.C_STORE_RQ.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,13 +121,13 @@
    -

    pynetdicom.dimse_messages.C_STORE_RQ

    +

    pynetdicom.dimse_messages.C_STORE_RQ

    -class pynetdicom.dimse_messages.C_STORE_RQ[source]
    +class pynetdicom.dimse_messages.C_STORE_RQ[source]
    -__init__() None[source]
    +__init__() None[source]

    Create a new DIMSE Message.

    diff --git a/dev/reference/generated/pynetdicom.dimse_messages.C_STORE_RSP.html b/dev/reference/generated/pynetdicom.dimse_messages.C_STORE_RSP.html index d0b6b55b1..b2c7e2773 100644 --- a/dev/reference/generated/pynetdicom.dimse_messages.C_STORE_RSP.html +++ b/dev/reference/generated/pynetdicom.dimse_messages.C_STORE_RSP.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,13 +121,13 @@
    -

    pynetdicom.dimse_messages.C_STORE_RSP

    +

    pynetdicom.dimse_messages.C_STORE_RSP

    -class pynetdicom.dimse_messages.C_STORE_RSP[source]
    +class pynetdicom.dimse_messages.C_STORE_RSP[source]
    -__init__() None[source]
    +__init__() None[source]

    Create a new DIMSE Message.

    diff --git a/dev/reference/generated/pynetdicom.dimse_messages.N_ACTION_RQ.html b/dev/reference/generated/pynetdicom.dimse_messages.N_ACTION_RQ.html index d74f11f4f..d18ca0226 100644 --- a/dev/reference/generated/pynetdicom.dimse_messages.N_ACTION_RQ.html +++ b/dev/reference/generated/pynetdicom.dimse_messages.N_ACTION_RQ.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,13 +121,13 @@
    -

    pynetdicom.dimse_messages.N_ACTION_RQ

    +

    pynetdicom.dimse_messages.N_ACTION_RQ

    -class pynetdicom.dimse_messages.N_ACTION_RQ[source]
    +class pynetdicom.dimse_messages.N_ACTION_RQ[source]
    -__init__() None[source]
    +__init__() None[source]

    Create a new DIMSE Message.

    diff --git a/dev/reference/generated/pynetdicom.dimse_messages.N_ACTION_RSP.html b/dev/reference/generated/pynetdicom.dimse_messages.N_ACTION_RSP.html index 4c4e293ba..f822d1b1f 100644 --- a/dev/reference/generated/pynetdicom.dimse_messages.N_ACTION_RSP.html +++ b/dev/reference/generated/pynetdicom.dimse_messages.N_ACTION_RSP.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,13 +121,13 @@
    -

    pynetdicom.dimse_messages.N_ACTION_RSP

    +

    pynetdicom.dimse_messages.N_ACTION_RSP

    -class pynetdicom.dimse_messages.N_ACTION_RSP[source]
    +class pynetdicom.dimse_messages.N_ACTION_RSP[source]
    -__init__() None[source]
    +__init__() None[source]

    Create a new DIMSE Message.

    diff --git a/dev/reference/generated/pynetdicom.dimse_messages.N_CREATE_RQ.html b/dev/reference/generated/pynetdicom.dimse_messages.N_CREATE_RQ.html index 7a1128161..c0bed450e 100644 --- a/dev/reference/generated/pynetdicom.dimse_messages.N_CREATE_RQ.html +++ b/dev/reference/generated/pynetdicom.dimse_messages.N_CREATE_RQ.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,13 +121,13 @@
    -

    pynetdicom.dimse_messages.N_CREATE_RQ

    +

    pynetdicom.dimse_messages.N_CREATE_RQ

    -class pynetdicom.dimse_messages.N_CREATE_RQ[source]
    +class pynetdicom.dimse_messages.N_CREATE_RQ[source]
    -__init__() None[source]
    +__init__() None[source]

    Create a new DIMSE Message.

    diff --git a/dev/reference/generated/pynetdicom.dimse_messages.N_CREATE_RSP.html b/dev/reference/generated/pynetdicom.dimse_messages.N_CREATE_RSP.html index 1e0cf38dc..f57be4a4d 100644 --- a/dev/reference/generated/pynetdicom.dimse_messages.N_CREATE_RSP.html +++ b/dev/reference/generated/pynetdicom.dimse_messages.N_CREATE_RSP.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,13 +121,13 @@
    -

    pynetdicom.dimse_messages.N_CREATE_RSP

    +

    pynetdicom.dimse_messages.N_CREATE_RSP

    -class pynetdicom.dimse_messages.N_CREATE_RSP[source]
    +class pynetdicom.dimse_messages.N_CREATE_RSP[source]
    -__init__() None[source]
    +__init__() None[source]

    Create a new DIMSE Message.

    diff --git a/dev/reference/generated/pynetdicom.dimse_messages.N_DELETE_RQ.html b/dev/reference/generated/pynetdicom.dimse_messages.N_DELETE_RQ.html index a62622890..22ee5cd55 100644 --- a/dev/reference/generated/pynetdicom.dimse_messages.N_DELETE_RQ.html +++ b/dev/reference/generated/pynetdicom.dimse_messages.N_DELETE_RQ.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,13 +121,13 @@
    -

    pynetdicom.dimse_messages.N_DELETE_RQ

    +

    pynetdicom.dimse_messages.N_DELETE_RQ

    -class pynetdicom.dimse_messages.N_DELETE_RQ[source]
    +class pynetdicom.dimse_messages.N_DELETE_RQ[source]
    -__init__() None[source]
    +__init__() None[source]

    Create a new DIMSE Message.

    diff --git a/dev/reference/generated/pynetdicom.dimse_messages.N_DELETE_RSP.html b/dev/reference/generated/pynetdicom.dimse_messages.N_DELETE_RSP.html index 892bae3df..08d318485 100644 --- a/dev/reference/generated/pynetdicom.dimse_messages.N_DELETE_RSP.html +++ b/dev/reference/generated/pynetdicom.dimse_messages.N_DELETE_RSP.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,13 +121,13 @@
    -

    pynetdicom.dimse_messages.N_DELETE_RSP

    +

    pynetdicom.dimse_messages.N_DELETE_RSP

    -class pynetdicom.dimse_messages.N_DELETE_RSP[source]
    +class pynetdicom.dimse_messages.N_DELETE_RSP[source]
    -__init__() None[source]
    +__init__() None[source]

    Create a new DIMSE Message.

    diff --git a/dev/reference/generated/pynetdicom.dimse_messages.N_EVENT_REPORT_RQ.html b/dev/reference/generated/pynetdicom.dimse_messages.N_EVENT_REPORT_RQ.html index ab420533e..75de94dc4 100644 --- a/dev/reference/generated/pynetdicom.dimse_messages.N_EVENT_REPORT_RQ.html +++ b/dev/reference/generated/pynetdicom.dimse_messages.N_EVENT_REPORT_RQ.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,13 +121,13 @@
    -

    pynetdicom.dimse_messages.N_EVENT_REPORT_RQ

    +

    pynetdicom.dimse_messages.N_EVENT_REPORT_RQ

    -class pynetdicom.dimse_messages.N_EVENT_REPORT_RQ[source]
    +class pynetdicom.dimse_messages.N_EVENT_REPORT_RQ[source]
    -__init__() None[source]
    +__init__() None[source]

    Create a new DIMSE Message.

    diff --git a/dev/reference/generated/pynetdicom.dimse_messages.N_EVENT_REPORT_RSP.html b/dev/reference/generated/pynetdicom.dimse_messages.N_EVENT_REPORT_RSP.html index 58d023acc..b21395e01 100644 --- a/dev/reference/generated/pynetdicom.dimse_messages.N_EVENT_REPORT_RSP.html +++ b/dev/reference/generated/pynetdicom.dimse_messages.N_EVENT_REPORT_RSP.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,13 +121,13 @@
    -

    pynetdicom.dimse_messages.N_EVENT_REPORT_RSP

    +

    pynetdicom.dimse_messages.N_EVENT_REPORT_RSP

    -class pynetdicom.dimse_messages.N_EVENT_REPORT_RSP[source]
    +class pynetdicom.dimse_messages.N_EVENT_REPORT_RSP[source]
    -__init__() None[source]
    +__init__() None[source]

    Create a new DIMSE Message.

    diff --git a/dev/reference/generated/pynetdicom.dimse_messages.N_GET_RQ.html b/dev/reference/generated/pynetdicom.dimse_messages.N_GET_RQ.html index d83b3c65d..9f7a666d3 100644 --- a/dev/reference/generated/pynetdicom.dimse_messages.N_GET_RQ.html +++ b/dev/reference/generated/pynetdicom.dimse_messages.N_GET_RQ.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,13 +121,13 @@
    -

    pynetdicom.dimse_messages.N_GET_RQ

    +

    pynetdicom.dimse_messages.N_GET_RQ

    -class pynetdicom.dimse_messages.N_GET_RQ[source]
    +class pynetdicom.dimse_messages.N_GET_RQ[source]
    -__init__() None[source]
    +__init__() None[source]

    Create a new DIMSE Message.

    diff --git a/dev/reference/generated/pynetdicom.dimse_messages.N_GET_RSP.html b/dev/reference/generated/pynetdicom.dimse_messages.N_GET_RSP.html index 4121843de..a1fcfb968 100644 --- a/dev/reference/generated/pynetdicom.dimse_messages.N_GET_RSP.html +++ b/dev/reference/generated/pynetdicom.dimse_messages.N_GET_RSP.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,13 +121,13 @@
    -

    pynetdicom.dimse_messages.N_GET_RSP

    +

    pynetdicom.dimse_messages.N_GET_RSP

    -class pynetdicom.dimse_messages.N_GET_RSP[source]
    +class pynetdicom.dimse_messages.N_GET_RSP[source]
    -__init__() None[source]
    +__init__() None[source]

    Create a new DIMSE Message.

    diff --git a/dev/reference/generated/pynetdicom.dimse_messages.N_SET_RQ.html b/dev/reference/generated/pynetdicom.dimse_messages.N_SET_RQ.html index eb985cc6b..10dec05fa 100644 --- a/dev/reference/generated/pynetdicom.dimse_messages.N_SET_RQ.html +++ b/dev/reference/generated/pynetdicom.dimse_messages.N_SET_RQ.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,13 +121,13 @@
    -

    pynetdicom.dimse_messages.N_SET_RQ

    +

    pynetdicom.dimse_messages.N_SET_RQ

    -class pynetdicom.dimse_messages.N_SET_RQ[source]
    +class pynetdicom.dimse_messages.N_SET_RQ[source]
    -__init__() None[source]
    +__init__() None[source]

    Create a new DIMSE Message.

    diff --git a/dev/reference/generated/pynetdicom.dimse_messages.N_SET_RSP.html b/dev/reference/generated/pynetdicom.dimse_messages.N_SET_RSP.html index 685f1bcdb..3dde6eb96 100644 --- a/dev/reference/generated/pynetdicom.dimse_messages.N_SET_RSP.html +++ b/dev/reference/generated/pynetdicom.dimse_messages.N_SET_RSP.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,13 +121,13 @@
    -

    pynetdicom.dimse_messages.N_SET_RSP

    +

    pynetdicom.dimse_messages.N_SET_RSP

    -class pynetdicom.dimse_messages.N_SET_RSP[source]
    +class pynetdicom.dimse_messages.N_SET_RSP[source]
    -__init__() None[source]
    +__init__() None[source]

    Create a new DIMSE Message.

    diff --git a/dev/reference/generated/pynetdicom.dimse_primitives.C_CANCEL.html b/dev/reference/generated/pynetdicom.dimse_primitives.C_CANCEL.html index bcdffbf00..32793dcd4 100644 --- a/dev/reference/generated/pynetdicom.dimse_primitives.C_CANCEL.html +++ b/dev/reference/generated/pynetdicom.dimse_primitives.C_CANCEL.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,10 +121,10 @@
    -

    pynetdicom.dimse_primitives.C_CANCEL

    +

    pynetdicom.dimse_primitives.C_CANCEL

    -class pynetdicom.dimse_primitives.C_CANCEL[source]
    +class pynetdicom.dimse_primitives.C_CANCEL[source]

    Represents a C-CANCEL primitive.

    @@ -153,7 +153,7 @@

    pynetdicom.dimse_primitives.C_CANCEL
    -__init__() None[source]
    +__init__() None[source]

    Initialise the C_CANCEL

    @@ -169,14 +169,14 @@

    pynetdicom.dimse_primitives.C_CANCEL

    - +

    MessageIDBeingRespondedTo

    Get or set the Message ID Being Responded To as an int.

    Get or set the Message ID Being Responded To as an int.

    -property MessageIDBeingRespondedTo: int | None
    -

    Get or set the Message ID Being Responded To as an int.

    +property MessageIDBeingRespondedTo: int | None +

    Get or set the Message ID Being Responded To as an int.

    Parameters:

    int – The value to use for the Message ID Being Responded To parameter.

    diff --git a/dev/reference/generated/pynetdicom.dimse_primitives.C_ECHO.html b/dev/reference/generated/pynetdicom.dimse_primitives.C_ECHO.html index 95ce3c5ee..8f2f10ab4 100644 --- a/dev/reference/generated/pynetdicom.dimse_primitives.C_ECHO.html +++ b/dev/reference/generated/pynetdicom.dimse_primitives.C_ECHO.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,10 +121,10 @@
    -

    pynetdicom.dimse_primitives.C_ECHO

    +

    pynetdicom.dimse_primitives.C_ECHO

    -class pynetdicom.dimse_primitives.C_ECHO[source]
    +class pynetdicom.dimse_primitives.C_ECHO[source]

    Represents a C-ECHO primitive.

    @@ -167,69 +167,69 @@

    pynetdicom.dimse_primitives.C_ECHO
    -MessageID
    +MessageID

    Identifies the operation and is used to distinguish this operation from other notifications or operations that may be in progress. No two identical values for the Message ID shall be used for outstanding operations.

    Type:
    -

    int or None

    +

    int or None

    -MessageIDBeingRespondedTo
    +MessageIDBeingRespondedTo

    The Message ID of the operation request/indication to which this response/confirmation applies.

    Type:
    -

    int or None

    +

    int or None

    -AffectedSOPClassUID
    +AffectedSOPClassUID

    For the request/indication this specifies the SOP Class for storage. If included in the response/confirmation, it shall be equal to the value in the request/indication

    Type:
    -

    pydicom.uid.UID, bytes or str or None

    +

    pydicom.uid.UID, bytes or str or None

    -Status
    +Status

    The error or success notification of the operation.

    Type:
    -

    int or None

    +

    int or None

    -ErrorComment
    +ErrorComment

    An optional status related field containing a text description of the error detected. 64 characters maximum.

    Type:
    -

    str or None

    +

    str or None

    -__init__() None[source]
    +__init__() None[source]

    Methods

    @@ -244,13 +244,13 @@

    pynetdicom.dimse_primitives.C_ECHO

    - + - + - + @@ -262,7 +262,7 @@

    pynetdicom.dimse_primitives.C_ECHO

    - + @@ -271,7 +271,7 @@

    pynetdicom.dimse_primitives.C_ECHOTrue if the response is valid, False otherwise.

    - +

    AffectedSOPClassUID

    Get or set the Affected SOP Class UID as UID.

    Get or set the Affected SOP Class UID as UID.

    MessageID

    Get or set the Message ID value as int.

    Get or set the Message ID value as int.

    MessageIDBeingRespondedTo

    Get or set the Message ID Being Responded To as int.

    Get or set the Message ID Being Responded To as int.

    REQUEST_KEYWORDS

    Status

    Get or set the Status as int.

    Get or set the Status as int.

    is_valid_request

    Return True if the request is valid, False otherwise.

    msg_type

    Return the DIMSE message type as str.

    Return the DIMSE message type as str.

    diff --git a/dev/reference/generated/pynetdicom.dimse_primitives.C_FIND.html b/dev/reference/generated/pynetdicom.dimse_primitives.C_FIND.html index 0f7a20efc..76212b7af 100644 --- a/dev/reference/generated/pynetdicom.dimse_primitives.C_FIND.html +++ b/dev/reference/generated/pynetdicom.dimse_primitives.C_FIND.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,10 +121,10 @@
    -

    pynetdicom.dimse_primitives.C_FIND

    +

    pynetdicom.dimse_primitives.C_FIND

    -class pynetdicom.dimse_primitives.C_FIND[source]
    +class pynetdicom.dimse_primitives.C_FIND[source]

    Represents a C-FIND primitive.

    @@ -179,81 +179,81 @@

    pynetdicom.dimse_primitives.C_FIND
    -MessageID
    +MessageID

    Identifies the operation and is used to distinguish this operation from other notifications or operations that may be in progress. No two identical values for the Message ID shall be used for outstanding operations.

    Type:
    -

    int

    +

    int

    -MessageIDBeingRespondedTo
    +MessageIDBeingRespondedTo

    The Message ID of the operation request/indication to which this response/confirmation applies.

    Type:
    -

    int

    +

    int

    -AffectedSOPClassUID
    +AffectedSOPClassUID

    For the request/indication this specifies the SOP Class for storage. If included in the response/confirmation, it shall be equal to the value in the request/indication

    Type:
    -

    pydicom.uid.UID, bytes or str

    +

    pydicom.uid.UID, bytes or str

    -Status
    +Status

    The error or success notification of the operation.

    Type:
    -

    int

    +

    int

    -OffendingElement
    +OffendingElement

    An optional status related field containing a list of the elements in which an error was detected.

    Type:
    -

    list of int or None

    +

    list of int or None

    -ErrorComment
    +ErrorComment

    An optional status related field containing a text description of the error detected. 64 characters maximum.

    Type:
    -

    str or None

    +

    str or None

    -__init__() None[source]
    +__init__() None[source]

    Methods

    @@ -268,19 +268,19 @@

    pynetdicom.dimse_primitives.C_FIND

    - + - + - + - + - + @@ -292,7 +292,7 @@

    pynetdicom.dimse_primitives.C_FIND

    - + @@ -301,14 +301,14 @@

    pynetdicom.dimse_primitives.C_FINDTrue if the response is valid, False otherwise.

    - +

    AffectedSOPClassUID

    Get or set the Affected SOP Class UID as UID.

    Get or set the Affected SOP Class UID as UID.

    Identifier

    Get or set the Identifier as io.BytesIO.

    Get or set the Identifier as io.BytesIO.

    MessageID

    Get or set the Message ID value as int.

    Get or set the Message ID value as int.

    MessageIDBeingRespondedTo

    Get or set the Message ID Being Responded To as int.

    Get or set the Message ID Being Responded To as int.

    Priority

    Get or set the Priority as int.

    Get or set the Priority as int.

    REQUEST_KEYWORDS

    Status

    Get or set the Status as int.

    Get or set the Status as int.

    is_valid_request

    Return True if the request is valid, False otherwise.

    msg_type

    Return the DIMSE message type as str.

    Return the DIMSE message type as str.

    -property Identifier: BytesIO | None
    -

    Get or set the Identifier as io.BytesIO.

    +property Identifier: BytesIO | None +

    Get or set the Identifier as io.BytesIO.

    Parameters:

    io.BytesIO – The value to use for the Identifier parameter.

    @@ -318,8 +318,8 @@

    pynetdicom.dimse_primitives.C_FIND
    -property Priority: int
    -

    Get or set the Priority as int.

    +property Priority: int +

    Get or set the Priority as int.

    Parameters:

    int

    The value to use for the Priority parameter. It shall be one diff --git a/dev/reference/generated/pynetdicom.dimse_primitives.C_GET.html b/dev/reference/generated/pynetdicom.dimse_primitives.C_GET.html index a6b37c278..0e0866e15 100644 --- a/dev/reference/generated/pynetdicom.dimse_primitives.C_GET.html +++ b/dev/reference/generated/pynetdicom.dimse_primitives.C_GET.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,10 +121,10 @@

    -

    pynetdicom.dimse_primitives.C_GET

    +

    pynetdicom.dimse_primitives.C_GET

    -class pynetdicom.dimse_primitives.C_GET[source]
    +class pynetdicom.dimse_primitives.C_GET[source]

    Represents a C-GET primitive.

    @@ -195,81 +195,81 @@

    pynetdicom.dimse_primitives.C_GET
    -MessageID
    +MessageID

    Identifies the operation and is used to distinguish this operation from other notifications or operations that may be in progress. No two identical values for the Message ID shall be used for outstanding operations.

    Type:
    -

    int

    +

    int

    -MessageIDBeingRespondedTo
    +MessageIDBeingRespondedTo

    The Message ID of the operation request/indication to which this response/confirmation applies.

    Type:
    -

    int

    +

    int

    -AffectedSOPClassUID
    +AffectedSOPClassUID

    For the request/indication this specifies the SOP Class for storage. If included in the response/confirmation, it shall be equal to the value in the request/indication

    Type:
    -

    pydicom.uid.UID, bytes or str

    +

    pydicom.uid.UID, bytes or str

    -Status
    +Status

    The error or success notification of the operation.

    Type:
    -

    int

    +

    int

    -OffendingElement
    +OffendingElement

    An optional status related field containing a list of the elements in which an error was detected.

    Type:
    -

    list of int or None

    +

    list of int or None

    -ErrorComment
    +ErrorComment

    An optional status related field containing a text description of the error detected. 64 characters maximum.

    Type:
    -

    str or None

    +

    str or None

    -__init__() None[source]
    +__init__() None[source]

    Methods

    @@ -284,31 +284,31 @@

    pynetdicom.dimse_primitives.C_GET

    - + - + - + - + - + - + - + - + - + @@ -320,7 +320,7 @@

    pynetdicom.dimse_primitives.C_GET

    - + @@ -329,14 +329,14 @@

    pynetdicom.dimse_primitives.C_GETTrue if the response is valid, False otherwise.

    - +

    AffectedSOPClassUID

    Get or set the Affected SOP Class UID as UID.

    Get or set the Affected SOP Class UID as UID.

    Identifier

    Get or set the Identifier as io.BytesIO.

    Get or set the Identifier as io.BytesIO.

    MessageID

    Get or set the Message ID value as int.

    Get or set the Message ID value as int.

    MessageIDBeingRespondedTo

    Get or set the Message ID Being Responded To as int.

    Get or set the Message ID Being Responded To as int.

    NumberOfCompletedSuboperations

    Get or set the Number of Completed Suboperations as int.

    Get or set the Number of Completed Suboperations as int.

    NumberOfFailedSuboperations

    Get or set the Number of Failed Suboperations as int.

    Get or set the Number of Failed Suboperations as int.

    NumberOfRemainingSuboperations

    Get or set the Number of Remaining Suboperations as int.

    Get or set the Number of Remaining Suboperations as int.

    NumberOfWarningSuboperations

    Get or set the Number of Warning Suboperations as int.

    Get or set the Number of Warning Suboperations as int.

    Priority

    Get or set the Priority as int.

    Get or set the Priority as int.

    REQUEST_KEYWORDS

    Status

    Get or set the Status as int.

    Get or set the Status as int.

    is_valid_request

    Return True if the request is valid, False otherwise.

    msg_type

    Return the DIMSE message type as str.

    Return the DIMSE message type as str.

    -property Identifier: BytesIO | None
    -

    Get or set the Identifier as io.BytesIO.

    +property Identifier: BytesIO | None +

    Get or set the Identifier as io.BytesIO.

    Parameters:

    io.BytesIO – The value to use for the Identifier parameter.

    @@ -346,32 +346,32 @@

    pynetdicom.dimse_primitives.C_GET
    -property NumberOfCompletedSuboperations: int | None
    -

    Get or set the Number of Completed Suboperations as int.

    +property NumberOfCompletedSuboperations: int | None +

    Get or set the Number of Completed Suboperations as int.

    -property NumberOfFailedSuboperations: int | None
    -

    Get or set the Number of Failed Suboperations as int.

    +property NumberOfFailedSuboperations: int | None +

    Get or set the Number of Failed Suboperations as int.

    -property NumberOfRemainingSuboperations: int | None
    -

    Get or set the Number of Remaining Suboperations as int.

    +property NumberOfRemainingSuboperations: int | None +

    Get or set the Number of Remaining Suboperations as int.

    -property NumberOfWarningSuboperations: int | None
    -

    Get or set the Number of Warning Suboperations as int.

    +property NumberOfWarningSuboperations: int | None +

    Get or set the Number of Warning Suboperations as int.

    -property Priority: int
    -

    Get or set the Priority as int.

    +property Priority: int +

    Get or set the Priority as int.

    Parameters:

    int

    The value to use for the Priority parameter. It shall be one diff --git a/dev/reference/generated/pynetdicom.dimse_primitives.C_MOVE.html b/dev/reference/generated/pynetdicom.dimse_primitives.C_MOVE.html index 0823c352b..5928c7cb2 100644 --- a/dev/reference/generated/pynetdicom.dimse_primitives.C_MOVE.html +++ b/dev/reference/generated/pynetdicom.dimse_primitives.C_MOVE.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,10 +121,10 @@

    -

    pynetdicom.dimse_primitives.C_MOVE

    +

    pynetdicom.dimse_primitives.C_MOVE

    -class pynetdicom.dimse_primitives.C_MOVE[source]
    +class pynetdicom.dimse_primitives.C_MOVE[source]

    Represents a C-MOVE primitive.

    @@ -199,81 +199,81 @@

    pynetdicom.dimse_primitives.C_MOVE
    -MessageID
    +MessageID

    Identifies the operation and is used to distinguish this operation from other notifications or operations that may be in progress. No two identical values for the Message ID shall be used for outstanding operations.

    Type:
    -

    int

    +

    int

    -MessageIDBeingRespondedTo
    +MessageIDBeingRespondedTo

    The Message ID of the operation request/indication to which this response/confirmation applies.

    Type:
    -

    int

    +

    int

    -AffectedSOPClassUID
    +AffectedSOPClassUID

    For the request/indication this specifies the SOP Class for storage. If included in the response/confirmation, it shall be equal to the value in the request/indication

    Type:
    -

    pydicom.uid.UID, bytes or str

    +

    pydicom.uid.UID, bytes or str

    -Status
    +Status

    The error or success notification of the operation.

    Type:
    -

    int

    +

    int

    -OffendingElement
    +OffendingElement

    An optional status related field containing a list of the elements in which an error was detected.

    Type:
    -

    list of int or None

    +

    list of int or None

    -ErrorComment
    +ErrorComment

    An optional status related field containing a text description of the error detected. 64 characters maximum.

    Type:
    -

    str or None

    +

    str or None

    -__init__() None[source]
    +__init__() None[source]

    Methods

    @@ -288,34 +288,34 @@

    pynetdicom.dimse_primitives.C_MOVE

    - + - + - + - + - + - + - + - + - + - + @@ -327,7 +327,7 @@

    pynetdicom.dimse_primitives.C_MOVE

    - + @@ -336,14 +336,14 @@

    pynetdicom.dimse_primitives.C_MOVETrue if the response is valid, False otherwise.

    - +

    AffectedSOPClassUID

    Get or set the Affected SOP Class UID as UID.

    Get or set the Affected SOP Class UID as UID.

    Identifier

    Get or set the Identifier as io.BytesIO.

    Get or set the Identifier as io.BytesIO.

    MessageID

    Get or set the Message ID value as int.

    Get or set the Message ID value as int.

    MessageIDBeingRespondedTo

    Get or set the Message ID Being Responded To as int.

    Get or set the Message ID Being Responded To as int.

    MoveDestination

    Get or set the Move Destination as str.

    Get or set the Move Destination as str.

    NumberOfCompletedSuboperations

    Get or set the Number of Completed Suboperations as int.

    Get or set the Number of Completed Suboperations as int.

    NumberOfFailedSuboperations

    Get or set the Number of Failed Suboperations as int.

    Get or set the Number of Failed Suboperations as int.

    NumberOfRemainingSuboperations

    Get or set the Number of Remaining Suboperations as int.

    Get or set the Number of Remaining Suboperations as int.

    NumberOfWarningSuboperations

    Get or set the Number of Warning Suboperations as int.

    Get or set the Number of Warning Suboperations as int.

    Priority

    Get or set the Priority as int.

    Get or set the Priority as int.

    REQUEST_KEYWORDS

    Status

    Get or set the Status as int.

    Get or set the Status as int.

    is_valid_request

    Return True if the request is valid, False otherwise.

    msg_type

    Return the DIMSE message type as str.

    Return the DIMSE message type as str.

    -property Identifier: BytesIO | None
    -

    Get or set the Identifier as io.BytesIO.

    +property Identifier: BytesIO | None +

    Get or set the Identifier as io.BytesIO.

    Parameters:

    io.BytesIO – The value to use for the Identifier parameter.

    @@ -353,50 +353,50 @@

    pynetdicom.dimse_primitives.C_MOVE
    -property MoveDestination: str | None
    -

    Get or set the Move Destination as str.

    +property MoveDestination: str | None +

    Get or set the Move Destination as str.

    Parameters:
    -

    value (str) – The value to use for the Move Destination parameter. Cannot +

    value (str) – The value to use for the Move Destination parameter. Cannot be an empty string.

    Returns:

    The Move Destination value.

    Return type:
    -

    str

    +

    str

    -property NumberOfCompletedSuboperations: int | None
    -

    Get or set the Number of Completed Suboperations as int.

    +property NumberOfCompletedSuboperations: int | None +

    Get or set the Number of Completed Suboperations as int.

    -property NumberOfFailedSuboperations: int | None
    -

    Get or set the Number of Failed Suboperations as int.

    +property NumberOfFailedSuboperations: int | None +

    Get or set the Number of Failed Suboperations as int.

    -property NumberOfRemainingSuboperations: int | None
    -

    Get or set the Number of Remaining Suboperations as int.

    +property NumberOfRemainingSuboperations: int | None +

    Get or set the Number of Remaining Suboperations as int.

    -property NumberOfWarningSuboperations: int | None
    -

    Get or set the Number of Warning Suboperations as int.

    +property NumberOfWarningSuboperations: int | None +

    Get or set the Number of Warning Suboperations as int.

    -property Priority: int
    -

    Get or set the Priority as int.

    +property Priority: int +

    Get or set the Priority as int.

    Parameters:

    int

    The value to use for the Priority parameter. It shall be one diff --git a/dev/reference/generated/pynetdicom.dimse_primitives.C_STORE.html b/dev/reference/generated/pynetdicom.dimse_primitives.C_STORE.html index c7b7348c3..3d92fb18f 100644 --- a/dev/reference/generated/pynetdicom.dimse_primitives.C_STORE.html +++ b/dev/reference/generated/pynetdicom.dimse_primitives.C_STORE.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,10 +121,10 @@

    -

    pynetdicom.dimse_primitives.C_STORE

    +

    pynetdicom.dimse_primitives.C_STORE

    -class pynetdicom.dimse_primitives.C_STORE[source]
    +class pynetdicom.dimse_primitives.C_STORE[source]

    Represents a C-STORE primitive.

    @@ -191,81 +191,81 @@

    pynetdicom.dimse_primitives.C_STORE
    -MessageID
    +MessageID

    Identifies the operation and is used to distinguish this operation from other notifications or operations that may be in progress. No two identical values for the Message ID shall be used for outstanding operations.

    Type:
    -

    int

    +

    int

    -MessageIDBeingRespondedTo
    +MessageIDBeingRespondedTo

    The Message ID of the operation request/indication to which this response/confirmation applies.

    Type:
    -

    int

    +

    int

    -AffectedSOPClassUID
    +AffectedSOPClassUID

    For the request/indication this specifies the SOP Class for storage. If included in the response/confirmation, it shall be equal to the value in the request/indication

    Type:
    -

    pydicom.uid.UID, bytes or str

    +

    pydicom.uid.UID, bytes or str

    -Status
    +Status

    The error or success notification of the operation.

    Type:
    -

    int

    +

    int

    -OffendingElement
    +OffendingElement

    An optional status related field containing a list of the elements in which an error was detected.

    Type:
    -

    list of int or None

    +

    list of int or None

    -ErrorComment
    +ErrorComment

    An optional status related field containing a text description of the error detected. 64 characters maximum.

    Type:
    -

    str or None

    +

    str or None

    -__init__() None[source]
    +__init__() None[source]

    Methods

    @@ -280,28 +280,28 @@

    pynetdicom.dimse_primitives.C_STORE

    - + - + - + - + - + - + - + - + @@ -313,7 +313,7 @@

    pynetdicom.dimse_primitives.C_STORE

    - + @@ -322,57 +322,57 @@

    pynetdicom.dimse_primitives.C_STORETrue if the response is valid, False otherwise.

    - +

    AffectedSOPClassUID

    Get or set the Affected SOP Class UID as UID.

    Get or set the Affected SOP Class UID as UID.

    AffectedSOPInstanceUID

    Get or set the Affected SOP Instance UID as UID.

    Get or set the Affected SOP Instance UID as UID.

    DataSet

    Get or set the Data Set as io.BytesIO.

    Get or set the Data Set as io.BytesIO.

    MessageID

    Get or set the Message ID value as int.

    Get or set the Message ID value as int.

    MessageIDBeingRespondedTo

    Get or set the Message ID Being Responded To as int.

    Get or set the Message ID Being Responded To as int.

    MoveOriginatorApplicationEntityTitle

    Get or set the Move Originator Application Entity Title as str.

    Get or set the Move Originator Application Entity Title as str.

    MoveOriginatorMessageID

    Get or set the Move Originator Message ID as int.

    Get or set the Move Originator Message ID as int.

    Priority

    Get or set the Priority as int.

    Get or set the Priority as int.

    REQUEST_KEYWORDS

    Status

    Get or set the Status as int.

    Get or set the Status as int.

    is_valid_request

    Return True if the request is valid, False otherwise.

    msg_type

    Return the DIMSE message type as str.

    Return the DIMSE message type as str.

    -property AffectedSOPInstanceUID: UID | None
    +property AffectedSOPInstanceUID: UID | None

    Get or set the Affected SOP Instance UID as -UID.

    +UID.

    Parameters:
    -

    value (pydicom.uid.UID, bytes or str) – The value to use for the Affected SOP Class UID parameter.

    +

    value (pydicom.uid.UID, bytes or str) – The value to use for the Affected SOP Class UID parameter.

    -property DataSet: BytesIO | None
    -

    Get or set the Data Set as io.BytesIO.

    +property DataSet: BytesIO | None +

    Get or set the Data Set as io.BytesIO.

    -property MoveOriginatorApplicationEntityTitle: str | None
    +property MoveOriginatorApplicationEntityTitle: str | None

    Get or set the Move Originator Application Entity Title as -str.

    +str.

    Parameters:
    -

    value (str) – The value to use for the Move Originator AE Title parameter.

    +

    value (str) – The value to use for the Move Originator AE Title parameter.

    Returns:

    Th Move Originator AE Title value. May be None if the value was invalid.

    Return type:
    -

    str or None

    +

    str or None

    -property MoveOriginatorMessageID: int | None
    -

    Get or set the Move Originator Message ID as int.

    +property MoveOriginatorMessageID: int | None +

    Get or set the Move Originator Message ID as int.

    -property Priority: int
    -

    Get or set the Priority as int.

    +property Priority: int +

    Get or set the Priority as int.

    Parameters:

    int

    The value to use for the Priority parameter. It shall be one diff --git a/dev/reference/generated/pynetdicom.dimse_primitives.N_ACTION.html b/dev/reference/generated/pynetdicom.dimse_primitives.N_ACTION.html index 005b33cf6..c3970f71a 100644 --- a/dev/reference/generated/pynetdicom.dimse_primitives.N_ACTION.html +++ b/dev/reference/generated/pynetdicom.dimse_primitives.N_ACTION.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,10 +121,10 @@

    -

    pynetdicom.dimse_primitives.N_ACTION

    +

    pynetdicom.dimse_primitives.N_ACTION

    -class pynetdicom.dimse_primitives.N_ACTION[source]
    +class pynetdicom.dimse_primitives.N_ACTION[source]

    Represents a N-ACTION primitive.

    @@ -187,57 +187,57 @@

    pynetdicom.dimse_primitives.N_ACTION
    -MessageID
    +MessageID

    Identifies the operation and is used to distinguish this operation from other notifications or operations that may be in progress. No two identical values for the Message ID shall be used for outstanding operations.

    Type:
    -

    int

    +

    int

    -MessageIDBeingRespondedTo
    +MessageIDBeingRespondedTo

    The Message ID of the operation request/indication to which this response/confirmation applies.

    Type:
    -

    int

    +

    int

    -AffectedSOPClassUID
    +AffectedSOPClassUID

    For the request/indication this specifies the SOP Class for storage. If included in the response/confirmation, it shall be equal to the value in the request/indication

    Type:
    -

    pydicom.uid.UID, bytes or str

    +

    pydicom.uid.UID, bytes or str

    -Status
    +Status

    The error or success notification of the operation.

    Type:
    -

    int

    +

    int

    -__init__() None[source]
    +__init__() None[source]

    Methods

    @@ -252,25 +252,25 @@

    pynetdicom.dimse_primitives.N_ACTION

    - + - + - + - + - + - + - + @@ -279,16 +279,16 @@

    pynetdicom.dimse_primitives.N_ACTION

    - + - + - + @@ -297,14 +297,14 @@

    pynetdicom.dimse_primitives.N_ACTIONTrue if the response is valid, False otherwise.

    - +

    ActionInformation

    Return the Action Information as io.BytesIO.

    Return the Action Information as io.BytesIO.

    ActionReply

    Return the Action Reply as io.BytesIO.

    Return the Action Reply as io.BytesIO.

    ActionTypeID

    Return the Action Type ID as int.

    Return the Action Type ID as int.

    AffectedSOPClassUID

    Get or set the Affected SOP Class UID as UID.

    Get or set the Affected SOP Class UID as UID.

    AffectedSOPInstanceUID

    Return the Affected SOP Instance UID as UID.

    Return the Affected SOP Instance UID as UID.

    MessageID

    Get or set the Message ID value as int.

    Get or set the Message ID value as int.

    MessageIDBeingRespondedTo

    Get or set the Message ID Being Responded To as int.

    Get or set the Message ID Being Responded To as int.

    REQUEST_KEYWORDS

    RequestedSOPClassUID

    Return the Requested SOP Class UID as UID.

    Return the Requested SOP Class UID as UID.

    RequestedSOPInstanceUID

    Return the Requested SOP Instance UID as UID.

    Return the Requested SOP Instance UID as UID.

    STATUS_OPTIONAL_KEYWORDS

    Status

    Get or set the Status as int.

    Get or set the Status as int.

    is_valid_request

    Return True if the request is valid, False otherwise.

    msg_type

    Return the DIMSE message type as str.

    Return the DIMSE message type as str.

    -property ActionInformation: BytesIO | None
    -

    Return the Action Information as io.BytesIO.

    +property ActionInformation: BytesIO | None +

    Return the Action Information as io.BytesIO.

    Parameters:

    io.BytesIO – The value to use for the Action Information parameter.

    @@ -314,8 +314,8 @@

    pynetdicom.dimse_primitives.N_ACTION
    -property ActionReply: BytesIO | None
    -

    Return the Action Reply as io.BytesIO.

    +property ActionReply: BytesIO | None +

    Return the Action Reply as io.BytesIO.

    Parameters:

    io.BytesIO – The value to use for the Action Reply parameter.

    @@ -325,8 +325,8 @@

    pynetdicom.dimse_primitives.N_ACTION
    -property ActionTypeID: int | None
    -

    Return the Action Type ID as int.

    +property ActionTypeID: int | None +

    Return the Action Type ID as int.

    Parameters:

    int – The value to use for the Action Type ID parameter.

    @@ -336,19 +336,19 @@

    pynetdicom.dimse_primitives.N_ACTION
    -property AffectedSOPInstanceUID: UID | None
    -

    Return the Affected SOP Instance UID as UID.

    +property AffectedSOPInstanceUID: UID | None +

    Return the Affected SOP Instance UID as UID.

    Parameters:
    -

    value (pydicom.uid.UID, bytes or str) – The value to use for the Affected SOP Class UID parameter.

    +

    value (pydicom.uid.UID, bytes or str) – The value to use for the Affected SOP Class UID parameter.

    -property RequestedSOPClassUID: UID | None
    -

    Return the Requested SOP Class UID as UID.

    +property RequestedSOPClassUID: UID | None +

    Return the Requested SOP Class UID as UID.

    Parameters:
      @@ -361,9 +361,9 @@

      pynetdicom.dimse_primitives.N_ACTION
      -property RequestedSOPInstanceUID: UID | None
      +property RequestedSOPInstanceUID: UID | None

      Return the Requested SOP Instance UID as -UID.

      +UID.

      Parameters:
        diff --git a/dev/reference/generated/pynetdicom.dimse_primitives.N_CREATE.html b/dev/reference/generated/pynetdicom.dimse_primitives.N_CREATE.html index 914e87d47..0091732a2 100644 --- a/dev/reference/generated/pynetdicom.dimse_primitives.N_CREATE.html +++ b/dev/reference/generated/pynetdicom.dimse_primitives.N_CREATE.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,10 +121,10 @@
        -

        pynetdicom.dimse_primitives.N_CREATE

        +

        pynetdicom.dimse_primitives.N_CREATE

        -class pynetdicom.dimse_primitives.N_CREATE[source]
        +class pynetdicom.dimse_primitives.N_CREATE[source]

        Represents a N-CREATE primitive.

        @@ -171,58 +171,58 @@

        pynetdicom.dimse_primitives.N_CREATE
        -MessageID
        +MessageID

        Identifies the operation and is used to distinguish this operation from other notifications or operations that may be in progress. No two identical values for the Message ID shall be used for outstanding operations.

        Type:
        -

        int

        +

        int

        -MessageIDBeingRespondedTo
        +MessageIDBeingRespondedTo

        The Message ID of the operation request/indication to which this response/confirmation applies.

        Type:
        -

        int

        +

        int

        -AffectedSOPClassUID
        +AffectedSOPClassUID

        For the request/indication this specifies the SOP Class for storage. If included in the response/confirmation, it shall be equal to the value in the request/indication

        Type:
        -

        pydicom.uid.UID, bytes or str

        +

        pydicom.uid.UID, bytes or str

        -Status
        +Status

        The error or success notification of the operation. It shall be one of the following values:

        Type:
        -

        int

        +

        int

        -__init__() None[source]
        +__init__() None[source]

        Methods

        @@ -237,19 +237,19 @@

        pynetdicom.dimse_primitives.N_CREATE

        - + - + - + - + - + @@ -261,7 +261,7 @@

        pynetdicom.dimse_primitives.N_CREATE

        - + @@ -270,25 +270,25 @@

        pynetdicom.dimse_primitives.N_CREATETrue if the response is valid, False otherwise.

        - +

        AffectedSOPClassUID

        Get or set the Affected SOP Class UID as UID.

        Get or set the Affected SOP Class UID as UID.

        AffectedSOPInstanceUID

        Return the Affected SOP Instance UID as UID.

        Return the Affected SOP Instance UID as UID.

        AttributeList

        Return the Attribute List as io.BytesIO.

        Return the Attribute List as io.BytesIO.

        MessageID

        Get or set the Message ID value as int.

        Get or set the Message ID value as int.

        MessageIDBeingRespondedTo

        Get or set the Message ID Being Responded To as int.

        Get or set the Message ID Being Responded To as int.

        REQUEST_KEYWORDS

        Status

        Get or set the Status as int.

        Get or set the Status as int.

        is_valid_request

        Return True if the request is valid, False otherwise.

        msg_type

        Return the DIMSE message type as str.

        Return the DIMSE message type as str.

        -property AffectedSOPInstanceUID: UID | None
        -

        Return the Affected SOP Instance UID as UID.

        +property AffectedSOPInstanceUID: UID | None +

        Return the Affected SOP Instance UID as UID.

        Parameters:
        -

        value (pydicom.uid.UID, bytes or str) – The value to use for the Affected SOP Class UID parameter.

        +

        value (pydicom.uid.UID, bytes or str) – The value to use for the Affected SOP Class UID parameter.

        -property AttributeList: BytesIO | None
        -

        Return the Attribute List as io.BytesIO.

        +property AttributeList: BytesIO | None +

        Return the Attribute List as io.BytesIO.

        Parameters:

        io.BytesIO – The value to use for the Attribute List parameter.

        diff --git a/dev/reference/generated/pynetdicom.dimse_primitives.N_DELETE.html b/dev/reference/generated/pynetdicom.dimse_primitives.N_DELETE.html index 935fef868..03abd3e59 100644 --- a/dev/reference/generated/pynetdicom.dimse_primitives.N_DELETE.html +++ b/dev/reference/generated/pynetdicom.dimse_primitives.N_DELETE.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,10 +121,10 @@
        -

        pynetdicom.dimse_primitives.N_DELETE

        +

        pynetdicom.dimse_primitives.N_DELETE

        -class pynetdicom.dimse_primitives.N_DELETE[source]
        +class pynetdicom.dimse_primitives.N_DELETE[source]

        Represents a N-DELETE primitive.

        @@ -175,57 +175,57 @@

        pynetdicom.dimse_primitives.N_DELETE
        -MessageID
        +MessageID

        Identifies the operation and is used to distinguish this operation from other notifications or operations that may be in progress. No two identical values for the Message ID shall be used for outstanding operations.

        Type:
        -

        int

        +

        int

        -MessageIDBeingRespondedTo
        +MessageIDBeingRespondedTo

        The Message ID of the operation request/indication to which this response/confirmation applies.

        Type:
        -

        int

        +

        int

        -AffectedSOPClassUID
        +AffectedSOPClassUID

        For the request/indication this specifies the SOP Class for storage. If included in the response/confirmation, it shall be equal to the value in the request/indication

        Type:
        -

        pydicom.uid.UID, bytes or str

        +

        pydicom.uid.UID, bytes or str

        -Status
        +Status

        The error or success notification of the operation.

        Type:
        -

        int

        +

        int

        -__init__() None[source]
        +__init__() None[source]

        Methods

        @@ -240,16 +240,16 @@

        pynetdicom.dimse_primitives.N_DELETE

        - + - + - + - + @@ -258,16 +258,16 @@

        pynetdicom.dimse_primitives.N_DELETE

        - + - + - + @@ -276,25 +276,25 @@

        pynetdicom.dimse_primitives.N_DELETETrue if the response is valid, False otherwise.

        - +

        AffectedSOPClassUID

        Get or set the Affected SOP Class UID as UID.

        Get or set the Affected SOP Class UID as UID.

        AffectedSOPInstanceUID

        Return the Affected SOP Instance UID as UID.

        Return the Affected SOP Instance UID as UID.

        MessageID

        Get or set the Message ID value as int.

        Get or set the Message ID value as int.

        MessageIDBeingRespondedTo

        Get or set the Message ID Being Responded To as int.

        Get or set the Message ID Being Responded To as int.

        REQUEST_KEYWORDS

        RequestedSOPClassUID

        Return the Requested SOP Class UID as UID.

        Return the Requested SOP Class UID as UID.

        RequestedSOPInstanceUID

        Return the Requested SOP Instance UID as UID.

        Return the Requested SOP Instance UID as UID.

        STATUS_OPTIONAL_KEYWORDS

        Status

        Get or set the Status as int.

        Get or set the Status as int.

        is_valid_request

        Return True if the request is valid, False otherwise.

        msg_type

        Return the DIMSE message type as str.

        Return the DIMSE message type as str.

        -property AffectedSOPInstanceUID: UID | None
        -

        Return the Affected SOP Instance UID as UID.

        +property AffectedSOPInstanceUID: UID | None +

        Return the Affected SOP Instance UID as UID.

        Parameters:
        -

        value (pydicom.uid.UID, bytes or str) – The value to use for the Affected SOP Class UID parameter.

        +

        value (pydicom.uid.UID, bytes or str) – The value to use for the Affected SOP Class UID parameter.

        -property RequestedSOPClassUID: UID | None
        -

        Return the Requested SOP Class UID as UID.

        +property RequestedSOPClassUID: UID | None +

        Return the Requested SOP Class UID as UID.

        Parameters:
          @@ -307,9 +307,9 @@

          pynetdicom.dimse_primitives.N_DELETE
          -property RequestedSOPInstanceUID: UID | None
          +property RequestedSOPInstanceUID: UID | None

          Return the Requested SOP Instance UID as -UID.

          +UID.

          Parameters:
            diff --git a/dev/reference/generated/pynetdicom.dimse_primitives.N_EVENT_REPORT.html b/dev/reference/generated/pynetdicom.dimse_primitives.N_EVENT_REPORT.html index f2b8fb157..9c4abe3e7 100644 --- a/dev/reference/generated/pynetdicom.dimse_primitives.N_EVENT_REPORT.html +++ b/dev/reference/generated/pynetdicom.dimse_primitives.N_EVENT_REPORT.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,10 +121,10 @@
            -

            pynetdicom.dimse_primitives.N_EVENT_REPORT

            +

            pynetdicom.dimse_primitives.N_EVENT_REPORT

            -class pynetdicom.dimse_primitives.N_EVENT_REPORT[source]
            +class pynetdicom.dimse_primitives.N_EVENT_REPORT[source]

            Represents a N-EVENT-REPORT primitive.

            @@ -179,57 +179,57 @@

            pynetdicom.dimse_primitives.N_EVENT_REPORT
            -MessageID
            +MessageID

            Identifies the operation and is used to distinguish this operation from other notifications or operations that may be in progress. No two identical values for the Message ID shall be used for outstanding operations.

            Type:
            -

            int

            +

            int

            -MessageIDBeingRespondedTo
            +MessageIDBeingRespondedTo

            The Message ID of the operation request/indication to which this response/confirmation applies.

            Type:
            -

            int

            +

            int

            -AffectedSOPClassUID
            +AffectedSOPClassUID

            For the request/indication this specifies the SOP Class for storage. If included in the response/confirmation, it shall be equal to the value in the request/indication

            Type:
            -

            pydicom.uid.UID, bytes or str

            +

            pydicom.uid.UID, bytes or str

            -Status
            +Status

            The error or success notification of the operation.

            Type:
            -

            int

            +

            int

            -__init__() None[source]
            +__init__() None[source]

            Methods

            @@ -244,25 +244,25 @@

            pynetdicom.dimse_primitives.N_EVENT_REPORT

            - + - + - + - + - + - + - + @@ -274,7 +274,7 @@

            pynetdicom.dimse_primitives.N_EVENT_REPORT

            - + @@ -283,33 +283,33 @@

            pynetdicom.dimse_primitives.N_EVENT_REPORTTrue if the response is valid, False otherwise.

            - +

            AffectedSOPClassUID

            Get or set the Affected SOP Class UID as UID.

            Get or set the Affected SOP Class UID as UID.

            AffectedSOPInstanceUID

            Get or set the Affected SOP Instance UID as UID.

            Get or set the Affected SOP Instance UID as UID.

            EventInformation

            Get or set the Event Information as io.BytesIO.

            Get or set the Event Information as io.BytesIO.

            EventReply

            Get or set the Event Reply as io.BytesIO.

            Get or set the Event Reply as io.BytesIO.

            EventTypeID

            Get or set the Event Type ID as int.

            Get or set the Event Type ID as int.

            MessageID

            Get or set the Message ID value as int.

            Get or set the Message ID value as int.

            MessageIDBeingRespondedTo

            Get or set the Message ID Being Responded To as int.

            Get or set the Message ID Being Responded To as int.

            REQUEST_KEYWORDS

            Status

            Get or set the Status as int.

            Get or set the Status as int.

            is_valid_request

            Return True if the request is valid, False otherwise.

            msg_type

            Return the DIMSE message type as str.

            Return the DIMSE message type as str.

            -property AffectedSOPInstanceUID: UID | None
            +property AffectedSOPInstanceUID: UID | None

            Get or set the Affected SOP Instance UID as -UID.

            +UID.

            -property EventInformation: BytesIO | None
            -

            Get or set the Event Information as io.BytesIO.

            +property EventInformation: BytesIO | None +

            Get or set the Event Information as io.BytesIO.

            -property EventReply: BytesIO | None
            -

            Get or set the Event Reply as io.BytesIO.

            +property EventReply: BytesIO | None +

            Get or set the Event Reply as io.BytesIO.

            -property EventTypeID: int | None
            -

            Get or set the Event Type ID as int.

            +property EventTypeID: int | None +

            Get or set the Event Type ID as int.

            diff --git a/dev/reference/generated/pynetdicom.dimse_primitives.N_GET.html b/dev/reference/generated/pynetdicom.dimse_primitives.N_GET.html index d5d67fe1e..6ae0ddbba 100644 --- a/dev/reference/generated/pynetdicom.dimse_primitives.N_GET.html +++ b/dev/reference/generated/pynetdicom.dimse_primitives.N_GET.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,10 +121,10 @@
            -

            pynetdicom.dimse_primitives.N_GET

            +

            pynetdicom.dimse_primitives.N_GET

            -class pynetdicom.dimse_primitives.N_GET[source]
            +class pynetdicom.dimse_primitives.N_GET[source]

            Represents an N-GET primitive.

            @@ -183,56 +183,56 @@

            pynetdicom.dimse_primitives.N_GET
            -MessageID
            +MessageID

            Identifies the operation and is used to distinguish this operation from other notifications or operations that may be in progress. No two identical values for the Message ID shall be used for outstanding operations.

            Type:
            -

            int

            +

            int

            -MessageIDBeingRespondedTo
            +MessageIDBeingRespondedTo

            The Message ID of the operation request/indication to which this response/confirmation applies.

            Type:
            -

            int

            +

            int

            -AffectedSOPClassUID
            +AffectedSOPClassUID

            The SOP Class UID of the SOP Instance for which the attributes were retrieved.

            Type:
            -

            pydicom.uid.UID, bytes or str

            +

            pydicom.uid.UID, bytes or str

            -Status
            +Status

            The error or success notification of the operation.

            Type:
            -

            int

            +

            int

            -__init__() None[source]
            +__init__() None[source]

            Methods

            @@ -247,22 +247,22 @@

            pynetdicom.dimse_primitives.N_GET

            - + - + - + - + - + - + @@ -271,16 +271,16 @@

            pynetdicom.dimse_primitives.N_GET

            - + - + - + @@ -289,27 +289,27 @@

            pynetdicom.dimse_primitives.N_GETTrue if the response is valid, False otherwise.

            - +

            AffectedSOPClassUID

            Get or set the Affected SOP Class UID as UID.

            Get or set the Affected SOP Class UID as UID.

            AffectedSOPInstanceUID

            Get or set the Affected SOP Instance UID as UID.

            Get or set the Affected SOP Instance UID as UID.

            AttributeIdentifierList

            Get or set the Attribute Identifier List as a list of BaseTag.

            Get or set the Attribute Identifier List as a list of BaseTag.

            AttributeList

            Get or set the Attribute List as io.BytesIO.

            Get or set the Attribute List as io.BytesIO.

            MessageID

            Get or set the Message ID value as int.

            Get or set the Message ID value as int.

            MessageIDBeingRespondedTo

            Get or set the Message ID Being Responded To as int.

            Get or set the Message ID Being Responded To as int.

            REQUEST_KEYWORDS

            RequestedSOPClassUID

            Get or set the Requested SOP Class UID as UID.

            Get or set the Requested SOP Class UID as UID.

            RequestedSOPInstanceUID

            Get or set the Requested SOP Instance UID as UID.

            Get or set the Requested SOP Instance UID as UID.

            STATUS_OPTIONAL_KEYWORDS

            Status

            Get or set the Status as int.

            Get or set the Status as int.

            is_valid_request

            Return True if the request is valid, False otherwise.

            msg_type

            Return the DIMSE message type as str.

            Return the DIMSE message type as str.

            -property AffectedSOPInstanceUID: UID | None
            +property AffectedSOPInstanceUID: UID | None

            Get or set the Affected SOP Instance UID as -UID.

            +UID.

            -property AttributeIdentifierList: BaseTag | List[BaseTag] | None
            -

            Get or set the Attribute Identifier List as a list of -BaseTag.

            +property AttributeIdentifierList: BaseTag | List[BaseTag] | None +

            Get or set the Attribute Identifier List as a list of +BaseTag.

            Parameters:
            -

            pydicom.tag.BaseTag (pydicom.tag.BaseTag or list of) – The value to use for the Attribute Identifier List parameter. -A pydicom pydicom.tag.BaseTag or list of -pydicom.tag.BaseTag or any values acceptable for creating +

            pydicom.tag.BaseTag (pydicom.tag.BaseTag or list of) – The value to use for the Attribute Identifier List parameter. +A pydicom pydicom.tag.BaseTag or list of +pydicom.tag.BaseTag or any values acceptable for creating them.

            @@ -317,8 +317,8 @@

            pynetdicom.dimse_primitives.N_GET
            -property AttributeList: BytesIO | None
            -

            Get or set the Attribute List as io.BytesIO.

            +property AttributeList: BytesIO | None +

            Get or set the Attribute List as io.BytesIO.

            Parameters:

            io.BytesIO – The value to use for the Attribute List parameter.

            @@ -328,9 +328,9 @@

            pynetdicom.dimse_primitives.N_GET
            -property RequestedSOPClassUID: UID | None
            +property RequestedSOPClassUID: UID | None

            Get or set the Requested SOP Class UID as -UID.

            +UID.

            Parameters:
              @@ -343,9 +343,9 @@

              pynetdicom.dimse_primitives.N_GET
              -property RequestedSOPInstanceUID: UID | None
              +property RequestedSOPInstanceUID: UID | None

              Get or set the Requested SOP Instance UID as -UID.

              +UID.

              Parameters:
                diff --git a/dev/reference/generated/pynetdicom.dimse_primitives.N_SET.html b/dev/reference/generated/pynetdicom.dimse_primitives.N_SET.html index b815b7d25..bbe67f03b 100644 --- a/dev/reference/generated/pynetdicom.dimse_primitives.N_SET.html +++ b/dev/reference/generated/pynetdicom.dimse_primitives.N_SET.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,10 +121,10 @@
                -

                pynetdicom.dimse_primitives.N_SET

                +

                pynetdicom.dimse_primitives.N_SET

                -class pynetdicom.dimse_primitives.N_SET[source]
                +class pynetdicom.dimse_primitives.N_SET[source]

                Represents a N-SET primitive.

                @@ -183,55 +183,55 @@

                pynetdicom.dimse_primitives.N_SET
                -MessageID
                +MessageID

                Identifies the operation and is used to distinguish this operation from other notifications or operations that may be in progress. No two identical values for the Message ID shall be used for outstanding operations.

                Type:
                -

                int

                +

                int

                -MessageIDBeingRespondedTo
                +MessageIDBeingRespondedTo

                The Message ID of the operation request/indication to which this response/confirmation applies.

                Type:
                -

                int

                +

                int

                -AffectedSOPClassUID
                +AffectedSOPClassUID

                The SOP Class UID of the modified SOP Instance.

                Type:
                -

                pydicom.uid.UID, bytes or str

                +

                pydicom.uid.UID, bytes or str

                -Status
                +Status

                The error or success notification of the operation.

                Type:
                -

                int

                +

                int

                -__init__() None[source]
                +__init__() None[source]

                Methods

                @@ -246,22 +246,22 @@

                pynetdicom.dimse_primitives.N_SET

                - + - + - + - + - + - + @@ -270,16 +270,16 @@

                pynetdicom.dimse_primitives.N_SET

                - + - + - + @@ -288,26 +288,26 @@

                pynetdicom.dimse_primitives.N_SETTrue if the response is valid, False otherwise.

                - +

                AffectedSOPClassUID

                Get or set the Affected SOP Class UID as UID.

                Get or set the Affected SOP Class UID as UID.

                AffectedSOPInstanceUID

                Get or set the Affected SOP Instance UID as UID.

                Get or set the Affected SOP Instance UID as UID.

                AttributeList

                Return the Attribute List as io.BytesIO.

                Return the Attribute List as io.BytesIO.

                MessageID

                Get or set the Message ID value as int.

                Get or set the Message ID value as int.

                MessageIDBeingRespondedTo

                Get or set the Message ID Being Responded To as int.

                Get or set the Message ID Being Responded To as int.

                ModificationList

                Return the Modification List as io.BytesIO.

                Return the Modification List as io.BytesIO.

                REQUEST_KEYWORDS

                RequestedSOPClassUID

                Return the Requested SOP Class UID as UID.

                Return the Requested SOP Class UID as UID.

                RequestedSOPInstanceUID

                Return the Requested SOP Instance UID as UID.

                Return the Requested SOP Instance UID as UID.

                STATUS_OPTIONAL_KEYWORDS

                Status

                Get or set the Status as int.

                Get or set the Status as int.

                is_valid_request

                Return True if the request is valid, False otherwise.

                msg_type

                Return the DIMSE message type as str.

                Return the DIMSE message type as str.

                -property AffectedSOPInstanceUID: UID | None
                +property AffectedSOPInstanceUID: UID | None

                Get or set the Affected SOP Instance UID as -UID.

                +UID.

                Parameters:
                -

                value (pydicom.uid.UID, bytes or str) – The value to use for the Affected SOP Class UID parameter.

                +

                value (pydicom.uid.UID, bytes or str) – The value to use for the Affected SOP Class UID parameter.

                -property AttributeList: BytesIO | None
                -

                Return the Attribute List as io.BytesIO.

                +property AttributeList: BytesIO | None +

                Return the Attribute List as io.BytesIO.

                Parameters:

                io.BytesIO – The value to use for the Attribute List parameter.

                @@ -317,8 +317,8 @@

                pynetdicom.dimse_primitives.N_SET
                -property ModificationList: BytesIO | None
                -

                Return the Modification List as io.BytesIO.

                +property ModificationList: BytesIO | None +

                Return the Modification List as io.BytesIO.

                Parameters:

                io.BytesIO – The value to use for the Modification List parameter.

                @@ -328,8 +328,8 @@

                pynetdicom.dimse_primitives.N_SET
                -property RequestedSOPClassUID: UID | None
                -

                Return the Requested SOP Class UID as UID.

                +property RequestedSOPClassUID: UID | None +

                Return the Requested SOP Class UID as UID.

                Parameters:
                  @@ -342,9 +342,9 @@

                  pynetdicom.dimse_primitives.N_SET
                  -property RequestedSOPInstanceUID: UID | None
                  +property RequestedSOPInstanceUID: UID | None

                  Return the Requested SOP Instance UID as -UID.

                  +UID.

                  Parameters:
                    diff --git a/dev/reference/generated/pynetdicom.dsutils.decode.html b/dev/reference/generated/pynetdicom.dsutils.decode.html index cfbeba524..464c02dee 100644 --- a/dev/reference/generated/pynetdicom.dsutils.decode.html +++ b/dev/reference/generated/pynetdicom.dsutils.decode.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -119,23 +119,23 @@
                    -

                    pynetdicom.dsutils.decode

                    +

                    pynetdicom.dsutils.decode

                    -pynetdicom.dsutils.decode(bytestring: BytesIO, is_implicit_vr: bool, is_little_endian: bool, deflated: bool = False) Dataset[source]
                    -

                    Decode bytestring to a pydicom Dataset.

                    +pynetdicom.dsutils.decode(bytestring: BytesIO, is_implicit_vr: bool, is_little_endian: bool, deflated: bool = False) Dataset[source] +

                    Decode bytestring to a pydicom Dataset.

                    Changed in version 1.5: Added deflated keyword parameter

                    Parameters:
                      -
                    • byestring (io.BytesIO) – The encoded dataset in the DIMSE Message sent from the peer AE.

                    • -
                    • is_implicit_vr (bool) – The dataset is encoded as implicit (True) or explicit VR +

                    • byestring (io.BytesIO) – The encoded dataset in the DIMSE Message sent from the peer AE.

                    • +
                    • is_implicit_vr (bool) – The dataset is encoded as implicit (True) or explicit VR (False).

                    • -
                    • is_little_endian (bool) – The byte ordering of the encoded dataset, True for little endian, +

                    • is_little_endian (bool) – The byte ordering of the encoded dataset, True for little endian, False for big endian.

                    • -
                    • deflated (bool, optional) – True if the dataset has been encoded using Deflated Explicit VR +

                    • deflated (bool, optional) – True if the dataset has been encoded using Deflated Explicit VR Little Endian transfer syntax (default False).

                    @@ -143,7 +143,7 @@

                    pynetdicom.dsutils.decode

                    The decoded dataset.

                    Return type:
                    -

                    pydicom.dataset.Dataset

                    +

                    pydicom.dataset.Dataset

                  diff --git a/dev/reference/generated/pynetdicom.dsutils.encode.html b/dev/reference/generated/pynetdicom.dsutils.encode.html index 57c26672a..97bd65a3a 100644 --- a/dev/reference/generated/pynetdicom.dsutils.encode.html +++ b/dev/reference/generated/pynetdicom.dsutils.encode.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -119,32 +119,32 @@
                  -

                  pynetdicom.dsutils.encode

                  +

                  pynetdicom.dsutils.encode

                  -pynetdicom.dsutils.encode(ds: Dataset, is_implicit_vr: bool, is_little_endian: bool, deflated: bool = False) bytes | None[source]
                  -

                  Encode a pydicom Dataset ds.

                  +pynetdicom.dsutils.encode(ds: Dataset, is_implicit_vr: bool, is_little_endian: bool, deflated: bool = False) bytes | None[source] +

                  Encode a pydicom Dataset ds.

                  Changed in version 1.5: Added deflated keyword parameter

                  Parameters:
                    -
                  • ds (pydicom.dataset.Dataset) – The dataset to encode

                  • -
                  • is_implicit_vr (bool) – The element encoding scheme the dataset will be encoded with, True +

                  • ds (pydicom.dataset.Dataset) – The dataset to encode

                  • +
                  • is_implicit_vr (bool) – The element encoding scheme the dataset will be encoded with, True for implicit VR, False for explicit VR.

                  • -
                  • is_little_endian (bool) – The byte ordering the dataset will be encoded in, True for little +

                  • is_little_endian (bool) – The byte ordering the dataset will be encoded in, True for little endian, False for big endian.

                  • -
                  • deflated (bool, optional) – True if the dataset is to be encoded using Deflated Explicit VR +

                  • deflated (bool, optional) – True if the dataset is to be encoded using Deflated Explicit VR Little Endian transfer syntax (default False).

                  Returns:
                  -

                  The encoded dataset as bytes (if successful) or None if +

                  The encoded dataset as bytes (if successful) or None if the encoding failed.

                  Return type:
                  -

                  bytes or None

                  +

                  bytes or None

                  diff --git a/dev/reference/generated/pynetdicom.dsutils.pretty_dataset.html b/dev/reference/generated/pynetdicom.dsutils.pretty_dataset.html index 56b86554a..72a6a1b17 100644 --- a/dev/reference/generated/pynetdicom.dsutils.pretty_dataset.html +++ b/dev/reference/generated/pynetdicom.dsutils.pretty_dataset.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -119,10 +119,10 @@
                  -

                  pynetdicom.dsutils.pretty_dataset

                  +

                  pynetdicom.dsutils.pretty_dataset

                  -pynetdicom.dsutils.pretty_dataset(ds: Dataset, indent: int = 0, indent_char: str = '  ') List[str][source]
                  +pynetdicom.dsutils.pretty_dataset(ds: Dataset, indent: int = 0, indent_char: str = '  ') List[str][source]

                  Return a list of pretty dataset strings.

                  New in version 1.5.

                  @@ -130,13 +130,13 @@

                  pynetdicom.dsutils.pretty_dataset
                  Parameters:
                    -
                  • ds (pydicom.dataset.Dataset) – The dataset to beautify.

                  • -
                  • indent (int, optional) – The indentation level of the current dataset (default: 0).

                  • -
                  • indent_char (str, optional) – The character(s) to use when indenting the dataset (default '  ').

                  • +
                  • ds (pydicom.dataset.Dataset) – The dataset to beautify.

                  • +
                  • indent (int, optional) – The indentation level of the current dataset (default: 0).

                  • +
                  • indent_char (str, optional) – The character(s) to use when indenting the dataset (default '  ').

                  Return type:
                  -

                  list of str

                  +

                  list of str

                diff --git a/dev/reference/generated/pynetdicom.dsutils.pretty_element.html b/dev/reference/generated/pynetdicom.dsutils.pretty_element.html index 040d24dc0..15b7a5497 100644 --- a/dev/reference/generated/pynetdicom.dsutils.pretty_element.html +++ b/dev/reference/generated/pynetdicom.dsutils.pretty_element.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -119,20 +119,20 @@
                -

                pynetdicom.dsutils.pretty_element

                +

                pynetdicom.dsutils.pretty_element

                -pynetdicom.dsutils.pretty_element(elem: DataElement) str[source]
                +pynetdicom.dsutils.pretty_element(elem: DataElement) str[source]

                Return a pretty element string.

                New in version 1.5.

                Parameters:
                -

                elem (pydicom.dataelem.DataElement) – The element to beautify.

                +

                elem (pydicom.dataelem.DataElement) – The element to beautify.

                Return type:
                -

                str

                +

                str

                diff --git a/dev/reference/generated/pynetdicom.dul.DULServiceProvider.html b/dev/reference/generated/pynetdicom.dul.DULServiceProvider.html index 325a791df..6dfa1cc38 100644 --- a/dev/reference/generated/pynetdicom.dul.DULServiceProvider.html +++ b/dev/reference/generated/pynetdicom.dul.DULServiceProvider.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,14 +121,14 @@
                -

                pynetdicom.dul.DULServiceProvider

                +

                pynetdicom.dul.DULServiceProvider

                -class pynetdicom.dul.DULServiceProvider(assoc: Association)[source]
                +class pynetdicom.dul.DULServiceProvider(assoc: Association)[source]

                The DICOM Upper Layer Service Provider.

                -artim_timer
                +artim_timer

                The ARTIM timer.

                Type:
                @@ -139,7 +139,7 @@

                pynetdicom.dul.DULServiceProvider
                -socket
                +socket

                A wrapped socket object used to communicate with the peer.

                @@ -151,40 +151,40 @@

                pynetdicom.dul.DULServiceProvider
                -to_provider_queue
                +to_provider_queue

                Queue of primitives received from the peer to be processed by the service user.

                Type:
                -

                queue.Queue

                +

                queue.Queue

                -to_user_queue
                +to_user_queue

                Queue of processed PDUs for the DUL service user.

                Type:
                -

                queue.Queue

                +

                queue.Queue

                -event_queue
                +event_queue

                List of queued events to be processed by the state machine.

                Type:
                -

                queue.Queue

                +

                queue.Queue

                -state_machine
                +state_machine

                The DICOM Upper Layer’s State Machine.

                Type:
                @@ -195,7 +195,7 @@

                pynetdicom.dul.DULServiceProvider
                -__init__(assoc: Association) None[source]
                +__init__(assoc: Association) None[source]

                Create a new DUL service provider for assoc.

                Parameters:
                @@ -283,48 +283,48 @@

                pynetdicom.dul.DULServiceProvider
                -property assoc: Association
                +property assoc: Association

                Return the parent Association.

                -idle_timer_expired() bool[source]
                +idle_timer_expired() bool[source]

                Return True if the network idle timer has expired.

                -kill_dul() None[source]
                +kill_dul() None[source]

                Kill the DUL reactor and stop the thread

                -property network_timeout: float | None
                +property network_timeout: float | None

                Return the network timeout (in seconds).

                -peek_next_pdu() A_ASSOCIATE | A_RELEASE | A_ABORT | A_P_ABORT | P_DATA | None[source]
                +peek_next_pdu() A_ASSOCIATE | A_RELEASE | A_ABORT | A_P_ABORT | P_DATA | None[source]

                Check the next PDU to be processed.

                -receive_pdu(wait: bool = False, timeout: float | None = None) A_ASSOCIATE | A_RELEASE | A_ABORT | A_P_ABORT | P_DATA | None[source]
                +receive_pdu(wait: bool = False, timeout: float | None = None) A_ASSOCIATE | A_RELEASE | A_ABORT | A_P_ABORT | P_DATA | None[source]

                Return an item from the queue if one is available.

                Get the next service primitive to be processed out of the queue of items sent from the DUL service provider to the service user

                Parameters:
                  -
                • wait (bool, optional) – If wait is True and timeout is None, blocks until an +

                • wait (bool, optional) – If wait is True and timeout is None, blocks until an item is available. If timeout is a positive number, blocks at most timeout seconds. Otherwise returns an item if one is immediately available.

                • -
                • timeout (int or None) – See the definition of wait

                • +
                • timeout (int or None) – See the definition of wait

                Returns:
                @@ -339,9 +339,9 @@

                pynetdicom.dul.DULServiceProvider
                -run_reactor() None[source]
                +run_reactor() None[source]

                Run the DUL reactor.

                -

                The main threading.Thread run loop. Runs constantly, checking +

                The main threading.Thread run loop. Runs constantly, checking the connection for incoming data. When incoming data is received it categorises it and add its to the to_user_queue.

                @@ -349,7 +349,7 @@

                pynetdicom.dul.DULServiceProvider
                -send_pdu(primitive: A_ASSOCIATE | A_RELEASE | A_ABORT | A_P_ABORT | P_DATA) None[source]
                +send_pdu(primitive: A_ASSOCIATE | A_RELEASE | A_ABORT | A_P_ABORT | P_DATA) None[source]

                Place a primitive in the provider queue to be sent to the peer.

                Primitives are converted to the corresponding PDU and encoded before sending.

                @@ -370,7 +370,7 @@

                pynetdicom.dul.DULServiceProvider
                -stop_dul() bool[source]
                +stop_dul() bool[source]

                Stop the reactor if current state is 'Sta1'

                Returns:
                @@ -378,7 +378,7 @@

                pynetdicom.dul.DULServiceProviderReturn type: -

                bool

                +

                bool

                diff --git a/dev/reference/generated/pynetdicom.events.Event.html b/dev/reference/generated/pynetdicom.events.Event.html index d482d7da0..95f037bdf 100644 --- a/dev/reference/generated/pynetdicom.events.Event.html +++ b/dev/reference/generated/pynetdicom.events.Event.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -122,10 +122,10 @@
                -

                pynetdicom.events.Event

                +

                pynetdicom.events.Event

                -class pynetdicom.events.Event(assoc: Association, event: NotificationEvent | InterventionEvent, attrs: Dict[str, Any] | None = None)[source]
                +class pynetdicom.events.Event(assoc: Association, event: NotificationEvent | InterventionEvent, attrs: Dict[str, Any] | None = None)[source]

                Representation of an event.

                New in version 1.3.

                @@ -141,7 +141,7 @@

                pynetdicom.events.Event
                -assoc
                +assoc

                The association in which the event occurred.

                Type:
                @@ -152,26 +152,26 @@

                pynetdicom.events.Event
                -timestamp
                +timestamp

                The date/time the event was created. Will be slightly before or after the actual event that this object represents.

                Type:
                -

                datetime.datetime

                +

                datetime.datetime

                -__init__(assoc: Association, event: NotificationEvent | InterventionEvent, attrs: Dict[str, Any] | None = None) None[source]
                +__init__(assoc: Association, event: NotificationEvent | InterventionEvent, attrs: Dict[str, Any] | None = None) None[source]

                Create a new Event.

                Parameters:
                @@ -190,19 +190,19 @@

                pynetdicom.events.Event

                action_information

                -

                Return an N-ACTION request's Action Information as a pydicom Dataset.

                +

                Return an N-ACTION request's Action Information as a pydicom Dataset.

                action_type

                -

                Return an N-ACTION request's Action Type ID as an int.

                +

                Return an N-ACTION request's Action Type ID as an int.

                attribute_identifiers

                -

                Return an N-GET request's Attribute Identifier List as a list of pydicom BaseTag.

                +

                Return an N-GET request's Attribute Identifier List as a list of pydicom BaseTag.

                attribute_list

                -

                Return an N-CREATE request's Attribute List as a pydicom Dataset.

                +

                Return an N-CREATE request's Attribute List as a pydicom Dataset.

                dataset

                -

                Return a C-STORE request's Data Set as a pydicom Dataset.

                +

                Return a C-STORE request's Data Set as a pydicom Dataset.

                dataset_path

                Return the path to the dataset when STORE_RECV_CHUNKED_DATASET is True.

                @@ -211,58 +211,58 @@

                pynetdicom.events.Event

                Return the corresponding event.

                event_information

                -

                Return an N-EVENT-REPORT request's Event Information as a pydicom Dataset.

                +

                Return an N-EVENT-REPORT request's Event Information as a pydicom Dataset.

                event_type

                -

                Return an N-EVENT-REPORT request's Event Type ID as an int.

                +

                Return an N-EVENT-REPORT request's Event Type ID as an int.

                file_meta

                -

                Return a pydicom Dataset with the File Meta Information for a C-STORE request's Data Set.

                +

                Return a pydicom Dataset with the File Meta Information for a C-STORE request's Data Set.

                identifier

                -

                Return a C-FIND, C-GET or C-MOVE request's Identifier as a pydicom Dataset.

                +

                Return a C-FIND, C-GET or C-MOVE request's Identifier as a pydicom Dataset.

                is_cancelled

                Return True if a C-CANCEL request has been received.

                message_id

                -

                Return a DIMSE service request's Message ID as int.

                +

                Return a DIMSE service request's Message ID as int.

                modification_list

                -

                Return an N-SET request's Modification List as a pydicom Dataset.

                +

                Return an N-SET request's Modification List as a pydicom Dataset.

                move_destination

                -

                Return a C-MOVE request's Move Destination as str.

                +

                Return a C-MOVE request's Move Destination as str.

                -property action_information: Dataset
                +property action_information: Dataset

                Return an N-ACTION request’s Action Information as a pydicom -Dataset.

                +Dataset.

                Because pydicom defers data parsing during decoding until an element -is actually required the returned Dataset +is actually required the returned Dataset may raise an exception when any element is first accessed. It’s therefore important that proper error handling be part of any handler -that uses the returned Dataset.

                +that uses the returned Dataset.

                Returns:

                The decoded Action Information dataset.

                Return type:
                -

                pydicom.dataset.Dataset

                +

                pydicom.dataset.Dataset

                Raises:
                -

                AttributeError – If the corresponding event is not an N-ACTION request.

                +

                AttributeError – If the corresponding event is not an N-ACTION request.

                -property action_type: int | None
                -

                Return an N-ACTION request’s Action Type ID as an int.

                +property action_type: int | None +

                Return an N-ACTION request’s Action Type ID as an int.

                New in version 1.4.

                @@ -272,19 +272,19 @@

                pynetdicom.events.Event

                Return type:
                -

                int or None

                +

                int or None

                Raises:
                -

                AttributeError – If the corresponding event is not an N-ACTION request.

                +

                AttributeError – If the corresponding event is not an N-ACTION request.

                -property attribute_identifiers: List[BaseTag]
                +property attribute_identifiers: List[BaseTag]

                Return an N-GET request’s Attribute Identifier List as a -list of pydicom BaseTag.

                +list of pydicom BaseTag.

                Returns:

                The (0000,1005) Attribute Identifier List tags, may be an empty @@ -292,63 +292,63 @@

                pynetdicom.events.Event

                Return type:
                -

                list of pydicom.tag.BaseTag

                +

                list of pydicom.tag.BaseTag

                Raises:
                -

                AttributeError – If the corresponding event is not an N-GET request.

                +

                AttributeError – If the corresponding event is not an N-GET request.

                -property attribute_list: Dataset
                +property attribute_list: Dataset

                Return an N-CREATE request’s Attribute List as a pydicom -Dataset.

                +Dataset.

                Because pydicom defers data parsing during decoding until an element -is actually required the returned Dataset +is actually required the returned Dataset may raise an exception when any element is first accessed. It’s therefore important that proper error handling be part of any handler -that uses the returned Dataset.

                +that uses the returned Dataset.

                Returns:

                The decoded Attribute List dataset.

                Return type:
                -

                pydicom.dataset.Dataset

                +

                pydicom.dataset.Dataset

                Raises:
                -

                AttributeError – If the corresponding event is not an N-CREATE request.

                +

                AttributeError – If the corresponding event is not an N-CREATE request.

                -property dataset: Dataset
                +property dataset: Dataset

                Return a C-STORE request’s Data Set as a pydicom -Dataset.

                +Dataset.

                Because pydicom defers data parsing during decoding until an element -is actually required the returned Dataset +is actually required the returned Dataset may raise an exception when any element is first accessed. It’s therefore important that proper error handling be part of any handler -that uses the returned Dataset.

                +that uses the returned Dataset.

                Returns:

                The decoded Data Set dataset.

                Return type:
                -

                pydicom.dataset.Dataset

                +

                pydicom.dataset.Dataset

                Raises:
                -

                AttributeError – If the corresponding event is not a C-STORE request.

                +

                AttributeError – If the corresponding event is not a C-STORE request.

                -property dataset_path: Path
                +property dataset_path: Path

                Return the path to the dataset when STORE_RECV_CHUNKED_DATASET is True.

                @@ -359,14 +359,14 @@

                pynetdicom.events.Event

                The path to the dataset.

                Return type:
                -

                pathlib.Path

                +

                pathlib.Path

                -property event: NotificationEvent | InterventionEvent
                +property event: NotificationEvent | InterventionEvent

                Return the corresponding event.

                New in version 1.4.

                @@ -374,7 +374,7 @@

                pynetdicom.events.Event
                Returns:

                The corresponding event as a -namedtuple.

                +namedtuple.

                Return type:

                events.InterventionEvent or events.NotificationEvent

                @@ -384,32 +384,32 @@

                pynetdicom.events.Event
                -property event_information: Dataset
                +property event_information: Dataset

                Return an N-EVENT-REPORT request’s Event Information as a -pydicom Dataset.

                +pydicom Dataset.

                Because pydicom defers data parsing during decoding until an element -is actually required the returned Dataset +is actually required the returned Dataset may raise an exception when any element is first accessed. It’s therefore important that proper error handling be part of any handler -that uses the returned Dataset.

                +that uses the returned Dataset.

                Returns:

                The decoded Event Information dataset.

                Return type:
                -

                pydicom.dataset.Dataset

                +

                pydicom.dataset.Dataset

                Raises:
                -

                AttributeError – If the corresponding event is not an N-EVENT-REPORT request.

                +

                AttributeError – If the corresponding event is not an N-EVENT-REPORT request.

                -property event_type: int | None
                +property event_type: int | None

                Return an N-EVENT-REPORT request’s Event Type ID as an -int.

                +int.

                New in version 1.4.

                @@ -419,18 +419,18 @@

                pynetdicom.events.Event

                Return type:
                -

                int or None

                +

                int or None

                Raises:
                -

                AttributeError – If the corresponding event is not an N-EVENT-REPORT request.

                +

                AttributeError – If the corresponding event is not an N-EVENT-REPORT request.

                -property file_meta: FileMetaDataset
                -

                Return a pydicom Dataset with the +property file_meta: FileMetaDataset +

                Return a pydicom Dataset with the File Meta Information for a C-STORE request’s Data Set.

                Contains the following File Meta Information elements:

                @@ -474,33 +474,33 @@

                pynetdicom.events.EventData Set.

                Return type:
                -

                pydicom.dataset.Dataset

                +

                pydicom.dataset.Dataset

                Raises:
                -

                AttributeError – If the corresponding event is not a C-STORE request.

                +

                AttributeError – If the corresponding event is not a C-STORE request.

                -property identifier: Dataset
                +property identifier: Dataset

                Return a C-FIND, C-GET or C-MOVE request’s Identifier as a -pydicom Dataset.

                +pydicom Dataset.

                Because pydicom defers data parsing during decoding until an element -is actually required the returned Dataset +is actually required the returned Dataset may raise an exception when any element is first accessed. It’s therefore important that proper error handling be part of any handler -that uses the returned Dataset.

                +that uses the returned Dataset.

                Returns:

                The decoded Identifier dataset.

                Return type:
                -

                pydicom.dataset.Dataset

                +

                pydicom.dataset.Dataset

                Raises:
                -

                AttributeError – If the corresponding event is not a C-FIND, C-GET or C-MOVE +

                AttributeError – If the corresponding event is not a C-FIND, C-GET or C-MOVE request.

                @@ -508,7 +508,7 @@

                pynetdicom.events.Event
                -property is_cancelled: bool
                +property is_cancelled: bool

                Return True if a C-CANCEL request has been received.

                Returns:
                @@ -521,15 +521,15 @@

                pynetdicom.events.EventFalse.

                Return type:
                -

                bool

                +

                bool

                -property message_id: int
                -

                Return a DIMSE service request’s Message ID as int.

                +property message_id: int +

                Return a DIMSE service request’s Message ID as int.

                New in version 1.5.

                @@ -538,10 +538,10 @@

                pynetdicom.events.Event

                The request’s (0000,0110) Message ID value.

                Return type:
                -

                int

                +

                int

                Raises:
                -

                AttributeError – If the corresponding event is not one of the DIMSE service +

                AttributeError – If the corresponding event is not one of the DIMSE service requests.

                @@ -549,36 +549,36 @@

                pynetdicom.events.Event
                -property modification_list: Dataset
                +property modification_list: Dataset

                Return an N-SET request’s Modification List as a pydicom -Dataset.

                +Dataset.

                Because pydicom defers data parsing during decoding until an element -is actually required the returned Dataset +is actually required the returned Dataset may raise an exception when any element is first accessed. It’s therefore important that proper error handling be part of any handler -that uses the returned Dataset.

                +that uses the returned Dataset.

                Returns:

                The decoded Modification List dataset.

                Return type:
                -

                pydicom.dataset.Dataset

                +

                pydicom.dataset.Dataset

                Raises:
                -

                AttributeError – If the corresponding event is not an N-SET request.

                +

                AttributeError – If the corresponding event is not an N-SET request.

                -property move_destination: str | None
                -

                Return a C-MOVE request’s Move Destination as str.

                +property move_destination: str | None +

                Return a C-MOVE request’s Move Destination as str.

                New in version 1.4.

                -

                Changed in version 2.0: Changed to return str and trailing spaces removed.

                +

                Changed in version 2.0: Changed to return str and trailing spaces removed.

                Returns:
                @@ -587,10 +587,10 @@

                pynetdicom.events.Event

                Return type:
                -

                str or None

                +

                str or None

                Raises:
                -

                AttributeError – If the corresponding event is not a C-MOVE request.

                +

                AttributeError – If the corresponding event is not a C-MOVE request.

                diff --git a/dev/reference/generated/pynetdicom.events.InterventionEvent.html b/dev/reference/generated/pynetdicom.events.InterventionEvent.html index 77d8293bd..419fa6e29 100644 --- a/dev/reference/generated/pynetdicom.events.InterventionEvent.html +++ b/dev/reference/generated/pynetdicom.events.InterventionEvent.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -122,10 +122,10 @@
                -

                pynetdicom.events.InterventionEvent

                +

                pynetdicom.events.InterventionEvent

                -class pynetdicom.events.InterventionEvent(name: str, description: str, is_intervention: bool = True, is_notification: bool = False)[source]
                +class pynetdicom.events.InterventionEvent(name: str, description: str, is_intervention: bool = True, is_notification: bool = False)[source]

                Representation of an intervention event.

                New in version 1.3.

                @@ -150,7 +150,7 @@

                pynetdicom.events.InterventionEvent
                -__init__()
                +__init__()

                Methods

                @@ -186,25 +186,25 @@

                pynetdicom.events.InterventionEvent
                -description: str
                +description: str

                Alias for field number 1

                -is_intervention: bool
                +is_intervention: bool

                Alias for field number 2

                -is_notification: bool
                +is_notification: bool

                Alias for field number 3

                -name: str
                +name: str

                Alias for field number 0

                diff --git a/dev/reference/generated/pynetdicom.events.NotificationEvent.html b/dev/reference/generated/pynetdicom.events.NotificationEvent.html index 3eda1bc82..fd4bb1870 100644 --- a/dev/reference/generated/pynetdicom.events.NotificationEvent.html +++ b/dev/reference/generated/pynetdicom.events.NotificationEvent.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -122,10 +122,10 @@
                -

                pynetdicom.events.NotificationEvent

                +

                pynetdicom.events.NotificationEvent

                -class pynetdicom.events.NotificationEvent(name: str, description: str, is_intervention: bool = False, is_notification: bool = True)[source]
                +class pynetdicom.events.NotificationEvent(name: str, description: str, is_intervention: bool = False, is_notification: bool = True)[source]

                Representation of a notification event.

                New in version 1.3.

                @@ -152,7 +152,7 @@

                pynetdicom.events.NotificationEvent
                -__init__()
                +__init__()

                Methods

                @@ -188,25 +188,25 @@

                pynetdicom.events.NotificationEvent
                -description: str
                +description: str

                Alias for field number 1

                -is_intervention: bool
                +is_intervention: bool

                Alias for field number 2

                -is_notification: bool
                +is_notification: bool

                Alias for field number 3

                -name: str
                +name: str

                Alias for field number 0

                diff --git a/dev/reference/generated/pynetdicom.events.trigger.html b/dev/reference/generated/pynetdicom.events.trigger.html index 9694ffb7c..12998f7e8 100644 --- a/dev/reference/generated/pynetdicom.events.trigger.html +++ b/dev/reference/generated/pynetdicom.events.trigger.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -122,10 +122,10 @@
                -

                pynetdicom.events.trigger

                +

                pynetdicom.events.trigger

                -pynetdicom.events.trigger(assoc: Association, event: NotificationEvent | InterventionEvent, attrs: Dict[str, Any] | None = None) Any | None[source]
                +pynetdicom.events.trigger(assoc: Association, event: NotificationEvent | InterventionEvent, attrs: Dict[str, Any] | None = None) Any | None[source]

                Trigger an event and call any bound handler(s).

                New in version 1.3.

                @@ -155,13 +155,13 @@

                pynetdicom.events.trigger

                Raises:
                -

                Exception – If an exception occurs in an intervention event handler then the +

                Exception – If an exception occurs in an intervention event handler then the exception will be raised. If an exception occurs in a notification handler then the exception will be caught and logged instead.

                diff --git a/dev/reference/generated/pynetdicom.fsm.AA_1.html b/dev/reference/generated/pynetdicom.fsm.AA_1.html index 6f3e420ac..7e4fb96a6 100644 --- a/dev/reference/generated/pynetdicom.fsm.AA_1.html +++ b/dev/reference/generated/pynetdicom.fsm.AA_1.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,10 +121,10 @@
                -

                pynetdicom.fsm.AA_1

                +

                pynetdicom.fsm.AA_1

                -pynetdicom.fsm.AA_1(dul: DULServiceProvider) str[source]
                +pynetdicom.fsm.AA_1(dul: DULServiceProvider) str[source]

                Association abort AA-1.

                If on sending A-ASSOCIATE-RQ we receive an invalid reply, or an abort request then abort

                @@ -138,7 +138,7 @@

                pynetdicom.fsm.AA_1

                'Sta13', the next state of the state machine

                Return type:
                -

                str

                +

                str

                diff --git a/dev/reference/generated/pynetdicom.fsm.AA_2.html b/dev/reference/generated/pynetdicom.fsm.AA_2.html index 710dfe6d3..8c1f28c97 100644 --- a/dev/reference/generated/pynetdicom.fsm.AA_2.html +++ b/dev/reference/generated/pynetdicom.fsm.AA_2.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,10 +121,10 @@
                -

                pynetdicom.fsm.AA_2

                +

                pynetdicom.fsm.AA_2

                -pynetdicom.fsm.AA_2(dul: DULServiceProvider) str[source]
                +pynetdicom.fsm.AA_2(dul: DULServiceProvider) str[source]

                Association abort AA-2.

                On receiving an A-ABORT or if the ARTIM timer expires, close connection and return to Idle

                @@ -137,7 +137,7 @@

                pynetdicom.fsm.AA_2

                'Sta1', the next state of the state machine

                Return type:
                -

                str

                +

                str

                diff --git a/dev/reference/generated/pynetdicom.fsm.AA_3.html b/dev/reference/generated/pynetdicom.fsm.AA_3.html index 7fd8760ad..0d0392a73 100644 --- a/dev/reference/generated/pynetdicom.fsm.AA_3.html +++ b/dev/reference/generated/pynetdicom.fsm.AA_3.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,10 +121,10 @@
                -

                pynetdicom.fsm.AA_3

                +

                pynetdicom.fsm.AA_3

                -pynetdicom.fsm.AA_3(dul: DULServiceProvider) str[source]
                +pynetdicom.fsm.AA_3(dul: DULServiceProvider) str[source]

                Association abort AA-3.

                On receiving A-ABORT, issue abort indication, close connection and return to Idle

                @@ -138,7 +138,7 @@

                pynetdicom.fsm.AA_3

                'Sta1', the next state of the state machine

                Return type:
                -

                str

                +

                str

                diff --git a/dev/reference/generated/pynetdicom.fsm.AA_4.html b/dev/reference/generated/pynetdicom.fsm.AA_4.html index 598a620f0..0cc44843a 100644 --- a/dev/reference/generated/pynetdicom.fsm.AA_4.html +++ b/dev/reference/generated/pynetdicom.fsm.AA_4.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,10 +121,10 @@
                -

                pynetdicom.fsm.AA_4

                +

                pynetdicom.fsm.AA_4

                -pynetdicom.fsm.AA_4(dul: DULServiceProvider) str[source]
                +pynetdicom.fsm.AA_4(dul: DULServiceProvider) str[source]

                Association abort AA-4.

                If connection closed, issue A-P-ABORT and return to Idle

                State-event triggers: Sta3/Sta4/Sta5/Sta6/Sta7/Sta8/Sta9/Sta10/Sta11/Sta12 @@ -137,7 +137,7 @@

                pynetdicom.fsm.AA_4

                'Sta1', the next state of the state machine

                Return type:
                -

                str

                +

                str

                diff --git a/dev/reference/generated/pynetdicom.fsm.AA_5.html b/dev/reference/generated/pynetdicom.fsm.AA_5.html index 0567c03e8..0149dc55a 100644 --- a/dev/reference/generated/pynetdicom.fsm.AA_5.html +++ b/dev/reference/generated/pynetdicom.fsm.AA_5.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,10 +121,10 @@
                -

                pynetdicom.fsm.AA_5

                +

                pynetdicom.fsm.AA_5

                -pynetdicom.fsm.AA_5(dul: DULServiceProvider) str[source]
                +pynetdicom.fsm.AA_5(dul: DULServiceProvider) str[source]

                Association abort AA-5.

                If connection closed during association request, stop ARTIM timer and return to Idle

                @@ -137,7 +137,7 @@

                pynetdicom.fsm.AA_5

                'Sta1', the next state of the state machine

                Return type:
                -

                str

                +

                str

              diff --git a/dev/reference/generated/pynetdicom.fsm.AA_6.html b/dev/reference/generated/pynetdicom.fsm.AA_6.html index b851215fb..7f920e38e 100644 --- a/dev/reference/generated/pynetdicom.fsm.AA_6.html +++ b/dev/reference/generated/pynetdicom.fsm.AA_6.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,10 +121,10 @@
              -

              pynetdicom.fsm.AA_6

              +

              pynetdicom.fsm.AA_6

              -pynetdicom.fsm.AA_6(dul: DULServiceProvider) str[source]
              +pynetdicom.fsm.AA_6(dul: DULServiceProvider) str[source]

              Association abort AA-6.

              If receive a PDU while waiting for connection to close, ignore it

              State-event triggers: Sta13 + Evt3/Evt4/Evt10/Evt12/Evt13

              @@ -136,7 +136,7 @@

              pynetdicom.fsm.AA_6

              'Sta13', the next state of the state machine

              Return type:
              -

              str

              +

              str

            diff --git a/dev/reference/generated/pynetdicom.fsm.AA_7.html b/dev/reference/generated/pynetdicom.fsm.AA_7.html index e9e33d44c..a243e06dc 100644 --- a/dev/reference/generated/pynetdicom.fsm.AA_7.html +++ b/dev/reference/generated/pynetdicom.fsm.AA_7.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,10 +121,10 @@
            -

            pynetdicom.fsm.AA_7

            +

            pynetdicom.fsm.AA_7

            -pynetdicom.fsm.AA_7(dul: DULServiceProvider) str[source]
            +pynetdicom.fsm.AA_7(dul: DULServiceProvider) str[source]

            Association abort AA-7.

            If receive a association request or invalid PDU while waiting for connection to close, send A-ABORT PDU

            @@ -137,7 +137,7 @@

            pynetdicom.fsm.AA_7

            'Sta13', the next state of the state machine

            Return type:
            -

            str

            +

            str

            diff --git a/dev/reference/generated/pynetdicom.fsm.AA_8.html b/dev/reference/generated/pynetdicom.fsm.AA_8.html index 0398e8718..411087da8 100644 --- a/dev/reference/generated/pynetdicom.fsm.AA_8.html +++ b/dev/reference/generated/pynetdicom.fsm.AA_8.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,10 +121,10 @@
            -

            pynetdicom.fsm.AA_8

            +

            pynetdicom.fsm.AA_8

            -pynetdicom.fsm.AA_8(dul: DULServiceProvider) str[source]
            +pynetdicom.fsm.AA_8(dul: DULServiceProvider) str[source]

            Association abort AA-8.

            If receive invalid event, send A-ABORT PDU, issue A-P-ABORT indication and start ARTIM timer

            @@ -140,7 +140,7 @@

            pynetdicom.fsm.AA_8

            'Sta13', the next state of the state machine

            Return type:
            -

            str

            +

            str

            diff --git a/dev/reference/generated/pynetdicom.fsm.AE_1.html b/dev/reference/generated/pynetdicom.fsm.AE_1.html index 5530894c9..cf80ab6d3 100644 --- a/dev/reference/generated/pynetdicom.fsm.AE_1.html +++ b/dev/reference/generated/pynetdicom.fsm.AE_1.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,10 +121,10 @@
            -

            pynetdicom.fsm.AE_1

            +

            pynetdicom.fsm.AE_1

            -pynetdicom.fsm.AE_1(dul: DULServiceProvider) str[source]
            +pynetdicom.fsm.AE_1(dul: DULServiceProvider) str[source]

            Association establishment action AE-1.

            Event

            Service user issued A-ASSOCIATE (request) to the service provider

            @@ -142,7 +142,7 @@

            pynetdicom.fsm.AE_1

            'Sta4', the next state of the state machine.

            Return type:
            -

            str

            +

            str

            diff --git a/dev/reference/generated/pynetdicom.fsm.AE_2.html b/dev/reference/generated/pynetdicom.fsm.AE_2.html index 833bb58f4..30faa358c 100644 --- a/dev/reference/generated/pynetdicom.fsm.AE_2.html +++ b/dev/reference/generated/pynetdicom.fsm.AE_2.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,10 +121,10 @@
            -

            pynetdicom.fsm.AE_2

            +

            pynetdicom.fsm.AE_2

            -pynetdicom.fsm.AE_2(dul: DULServiceProvider) str[source]
            +pynetdicom.fsm.AE_2(dul: DULServiceProvider) str[source]

            Association establishment action AE-2.

            On receiving connection confirmation, send A-ASSOCIATE-RQ to the peer AE This send a byte stream with the format given by Table 9-11

            @@ -137,7 +137,7 @@

            pynetdicom.fsm.AE_2

            'Sta5', the next state of the state machine.

            Return type:
            -

            str

            +

            str

          diff --git a/dev/reference/generated/pynetdicom.fsm.AE_3.html b/dev/reference/generated/pynetdicom.fsm.AE_3.html index 3a21df8ed..ae204d027 100644 --- a/dev/reference/generated/pynetdicom.fsm.AE_3.html +++ b/dev/reference/generated/pynetdicom.fsm.AE_3.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,10 +121,10 @@
          -

          pynetdicom.fsm.AE_3

          +

          pynetdicom.fsm.AE_3

          -pynetdicom.fsm.AE_3(dul: DULServiceProvider) str[source]
          +pynetdicom.fsm.AE_3(dul: DULServiceProvider) str[source]

          Association establishment action AE-3.

          On receiving A-ASSOCIATE-AC, issue acceptance confirmation

          State-event triggers: Sta5 + Evt3

          @@ -136,7 +136,7 @@

          pynetdicom.fsm.AE_3

          'Sta6', the next state of the state machine

          Return type:
          -

          str

          +

          str

        diff --git a/dev/reference/generated/pynetdicom.fsm.AE_4.html b/dev/reference/generated/pynetdicom.fsm.AE_4.html index cbeadc8f8..bc55ea48a 100644 --- a/dev/reference/generated/pynetdicom.fsm.AE_4.html +++ b/dev/reference/generated/pynetdicom.fsm.AE_4.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,10 +121,10 @@
        -

        pynetdicom.fsm.AE_4

        +

        pynetdicom.fsm.AE_4

        -pynetdicom.fsm.AE_4(dul: DULServiceProvider) str[source]
        +pynetdicom.fsm.AE_4(dul: DULServiceProvider) str[source]

        Association establishment action AE-4.

        On receiving A-ASSOCIATE-RJ, issue rejection confirmation and close connection

        @@ -137,7 +137,7 @@

        pynetdicom.fsm.AE_4

        'Sta1', the next state of the state machine

        Return type:
        -

        str

        +

        str

        diff --git a/dev/reference/generated/pynetdicom.fsm.AE_5.html b/dev/reference/generated/pynetdicom.fsm.AE_5.html index 550e8b78b..a4890af09 100644 --- a/dev/reference/generated/pynetdicom.fsm.AE_5.html +++ b/dev/reference/generated/pynetdicom.fsm.AE_5.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,10 +121,10 @@
        -

        pynetdicom.fsm.AE_5

        +

        pynetdicom.fsm.AE_5

        -pynetdicom.fsm.AE_5(dul: DULServiceProvider) str[source]
        +pynetdicom.fsm.AE_5(dul: DULServiceProvider) str[source]

        Association establishment action AE-5.

        From Idle state, on receiving a remote connection attempt, respond and start ARTIM. This is the first step in associating a remote AE (requestor) @@ -138,7 +138,7 @@

        pynetdicom.fsm.AE_5

        'Sta2', the next state of the state machine

        Return type:
        -

        str

        +

        str

        diff --git a/dev/reference/generated/pynetdicom.fsm.AE_6.html b/dev/reference/generated/pynetdicom.fsm.AE_6.html index 2c25588ba..5f7954bb4 100644 --- a/dev/reference/generated/pynetdicom.fsm.AE_6.html +++ b/dev/reference/generated/pynetdicom.fsm.AE_6.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,10 +121,10 @@
        -

        pynetdicom.fsm.AE_6

        +

        pynetdicom.fsm.AE_6

        -pynetdicom.fsm.AE_6(dul: DULServiceProvider) str[source]
        +pynetdicom.fsm.AE_6(dul: DULServiceProvider) str[source]

        Association establishment action AE-6.

        On receiving an A-ASSOCIATE-RQ PDU from the peer then stop the ARTIM timer and then either

        @@ -143,7 +143,7 @@

        pynetdicom.fsm.AE_6

        Either 'Sta3' or 'Sta13', the next state of the state machine

        Return type:
        -

        str

        +

        str

        diff --git a/dev/reference/generated/pynetdicom.fsm.AE_7.html b/dev/reference/generated/pynetdicom.fsm.AE_7.html index b77fdacb6..d486aeeff 100644 --- a/dev/reference/generated/pynetdicom.fsm.AE_7.html +++ b/dev/reference/generated/pynetdicom.fsm.AE_7.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,10 +121,10 @@
        -

        pynetdicom.fsm.AE_7

        +

        pynetdicom.fsm.AE_7

        -pynetdicom.fsm.AE_7(dul: DULServiceProvider) str[source]
        +pynetdicom.fsm.AE_7(dul: DULServiceProvider) str[source]

        Association establishment action AE-7.

        On receiving association request acceptance, issue A-ASSOCIATE-AC

        State-event triggers: Sta3 + Evt7

        @@ -136,7 +136,7 @@

        pynetdicom.fsm.AE_7

        'Sta6', the next state of the state machine

        Return type:
        -

        str

        +

        str

        diff --git a/dev/reference/generated/pynetdicom.fsm.AE_8.html b/dev/reference/generated/pynetdicom.fsm.AE_8.html index da5282972..db04890b6 100644 --- a/dev/reference/generated/pynetdicom.fsm.AE_8.html +++ b/dev/reference/generated/pynetdicom.fsm.AE_8.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,10 +121,10 @@
        -

        pynetdicom.fsm.AE_8

        +

        pynetdicom.fsm.AE_8

        -pynetdicom.fsm.AE_8(dul: DULServiceProvider) str[source]
        +pynetdicom.fsm.AE_8(dul: DULServiceProvider) str[source]

        Association establishment action AE-8.

        On receiving association request rejection, issue A-ASSOCIATE-RJ

        State-event triggers: Sta3 + Evt8

        @@ -136,7 +136,7 @@

        pynetdicom.fsm.AE_8

        'Sta13', the next state of the state machine

        Return type:
        -

        str

        +

        str

        diff --git a/dev/reference/generated/pynetdicom.fsm.AR_1.html b/dev/reference/generated/pynetdicom.fsm.AR_1.html index 707a85678..88823127b 100644 --- a/dev/reference/generated/pynetdicom.fsm.AR_1.html +++ b/dev/reference/generated/pynetdicom.fsm.AR_1.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,10 +121,10 @@
        -

        pynetdicom.fsm.AR_1

        +

        pynetdicom.fsm.AR_1

        -pynetdicom.fsm.AR_1(dul: DULServiceProvider) str[source]
        +pynetdicom.fsm.AR_1(dul: DULServiceProvider) str[source]

        Association release AR-1.

        Send Association release request

        State-event triggers: Sta6 + Evt11

        @@ -136,7 +136,7 @@

        pynetdicom.fsm.AR_1

        'Sta7', the next state of the state machine

        Return type:
        -

        str

        +

        str

      diff --git a/dev/reference/generated/pynetdicom.fsm.AR_10.html b/dev/reference/generated/pynetdicom.fsm.AR_10.html index b905899c7..5003719c4 100644 --- a/dev/reference/generated/pynetdicom.fsm.AR_10.html +++ b/dev/reference/generated/pynetdicom.fsm.AR_10.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,10 +121,10 @@
      -

      pynetdicom.fsm.AR_10

      +

      pynetdicom.fsm.AR_10

      -pynetdicom.fsm.AR_10(dul: DULServiceProvider) str[source]
      +pynetdicom.fsm.AR_10(dul: DULServiceProvider) str[source]

      Association release AR-10.

      On receiving A-RELEASE-RP, issue release confirmation

      State-event triggers: Sta10 + Evt13

      @@ -136,7 +136,7 @@

      pynetdicom.fsm.AR_10

      'Sta12', the next state of the state machine

      Return type:
      -

      str

      +

      str

    diff --git a/dev/reference/generated/pynetdicom.fsm.AR_2.html b/dev/reference/generated/pynetdicom.fsm.AR_2.html index b3c171ebc..3a9fd5c18 100644 --- a/dev/reference/generated/pynetdicom.fsm.AR_2.html +++ b/dev/reference/generated/pynetdicom.fsm.AR_2.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,10 +121,10 @@
    -

    pynetdicom.fsm.AR_2

    +

    pynetdicom.fsm.AR_2

    -pynetdicom.fsm.AR_2(dul: DULServiceProvider) str[source]
    +pynetdicom.fsm.AR_2(dul: DULServiceProvider) str[source]

    Association release AR-2.

    On receiving an association release request, send release indication

    State-event triggers: Sta6 + Evt12

    @@ -136,7 +136,7 @@

    pynetdicom.fsm.AR_2

    'Sta8', the next state of the state machine

    Return type:
    -

    str

    +

    str

    diff --git a/dev/reference/generated/pynetdicom.fsm.AR_3.html b/dev/reference/generated/pynetdicom.fsm.AR_3.html index 3ee0d338d..86e78deaf 100644 --- a/dev/reference/generated/pynetdicom.fsm.AR_3.html +++ b/dev/reference/generated/pynetdicom.fsm.AR_3.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,10 +121,10 @@
    -

    pynetdicom.fsm.AR_3

    +

    pynetdicom.fsm.AR_3

    -pynetdicom.fsm.AR_3(dul: DULServiceProvider) str[source]
    +pynetdicom.fsm.AR_3(dul: DULServiceProvider) str[source]

    Association release AR-3.

    On receiving an association release response, send release confirmation, close connection and go back to Idle state

    @@ -137,7 +137,7 @@

    pynetdicom.fsm.AR_3

    'Sta1', the next state of the state machine

    Return type:
    -

    str

    +

    str

    diff --git a/dev/reference/generated/pynetdicom.fsm.AR_4.html b/dev/reference/generated/pynetdicom.fsm.AR_4.html index f59dad9de..e0e8f7a77 100644 --- a/dev/reference/generated/pynetdicom.fsm.AR_4.html +++ b/dev/reference/generated/pynetdicom.fsm.AR_4.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,10 +121,10 @@
    -

    pynetdicom.fsm.AR_4

    +

    pynetdicom.fsm.AR_4

    -pynetdicom.fsm.AR_4(dul: DULServiceProvider) str[source]
    +pynetdicom.fsm.AR_4(dul: DULServiceProvider) str[source]

    Association release AR-4.

    On receiving an association release response, send release response

    State-event triggers: Sta8 + Evt14, Sta12 + Evt14

    @@ -136,7 +136,7 @@

    pynetdicom.fsm.AR_4

    'Sta13', the next state of the state machine

    Return type:
    -

    str

    +

    str

    diff --git a/dev/reference/generated/pynetdicom.fsm.AR_5.html b/dev/reference/generated/pynetdicom.fsm.AR_5.html index 8b0e66703..0b93badad 100644 --- a/dev/reference/generated/pynetdicom.fsm.AR_5.html +++ b/dev/reference/generated/pynetdicom.fsm.AR_5.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,10 +121,10 @@
    -

    pynetdicom.fsm.AR_5

    +

    pynetdicom.fsm.AR_5

    -pynetdicom.fsm.AR_5(dul: DULServiceProvider) str[source]
    +pynetdicom.fsm.AR_5(dul: DULServiceProvider) str[source]

    Association release AR-5.

    On receiving transport connection closed, stop the ARTIM timer and go back to Idle state

    @@ -137,7 +137,7 @@

    pynetdicom.fsm.AR_5

    'Sta1', the next state of the state machine

    Return type:
    -

    str

    +

    str

    diff --git a/dev/reference/generated/pynetdicom.fsm.AR_6.html b/dev/reference/generated/pynetdicom.fsm.AR_6.html index b95358df2..43e60d1b5 100644 --- a/dev/reference/generated/pynetdicom.fsm.AR_6.html +++ b/dev/reference/generated/pynetdicom.fsm.AR_6.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,10 +121,10 @@
    -

    pynetdicom.fsm.AR_6

    +

    pynetdicom.fsm.AR_6

    -pynetdicom.fsm.AR_6(dul: DULServiceProvider) str[source]
    +pynetdicom.fsm.AR_6(dul: DULServiceProvider) str[source]

    Association release AR-6.

    On receiving P-DATA-TF during attempted association release request send P-DATA indication

    @@ -137,7 +137,7 @@

    pynetdicom.fsm.AR_6

    'Sta7', the next state of the state machine

    Return type:
    -

    str

    +

    str

    diff --git a/dev/reference/generated/pynetdicom.fsm.AR_7.html b/dev/reference/generated/pynetdicom.fsm.AR_7.html index 11b1c7fe5..f291aaba3 100644 --- a/dev/reference/generated/pynetdicom.fsm.AR_7.html +++ b/dev/reference/generated/pynetdicom.fsm.AR_7.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,10 +121,10 @@
    -

    pynetdicom.fsm.AR_7

    +

    pynetdicom.fsm.AR_7

    -pynetdicom.fsm.AR_7(dul: DULServiceProvider) str[source]
    +pynetdicom.fsm.AR_7(dul: DULServiceProvider) str[source]

    Association release AR-7.

    On receiving P-DATA request during attempted association release request send P-DATA-TF

    @@ -137,7 +137,7 @@

    pynetdicom.fsm.AR_7

    'Sta8', the next state of the state machine

    Return type:
    -

    str

    +

    str

    diff --git a/dev/reference/generated/pynetdicom.fsm.AR_8.html b/dev/reference/generated/pynetdicom.fsm.AR_8.html index ad5d1f3ba..059a2823b 100644 --- a/dev/reference/generated/pynetdicom.fsm.AR_8.html +++ b/dev/reference/generated/pynetdicom.fsm.AR_8.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,10 +121,10 @@
    -

    pynetdicom.fsm.AR_8

    +

    pynetdicom.fsm.AR_8

    -pynetdicom.fsm.AR_8(dul: DULServiceProvider) str[source]
    +pynetdicom.fsm.AR_8(dul: DULServiceProvider) str[source]

    Association release AR-8.

    On receiving association release request while local is requesting release then issue release collision indication

    @@ -137,7 +137,7 @@

    pynetdicom.fsm.AR_8

    Either 'Sta9' or 'Sta10', the next state of the state machine

    Return type:
    -

    str

    +

    str

    diff --git a/dev/reference/generated/pynetdicom.fsm.AR_9.html b/dev/reference/generated/pynetdicom.fsm.AR_9.html index faae2fce0..8fee28f1f 100644 --- a/dev/reference/generated/pynetdicom.fsm.AR_9.html +++ b/dev/reference/generated/pynetdicom.fsm.AR_9.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,10 +121,10 @@
    -

    pynetdicom.fsm.AR_9

    +

    pynetdicom.fsm.AR_9

    -pynetdicom.fsm.AR_9(dul: DULServiceProvider) str[source]
    +pynetdicom.fsm.AR_9(dul: DULServiceProvider) str[source]

    Association release AR-9.

    On receiving A-RELEASE primitive, send release response

    State-event triggers: Sta9 + Evt14

    @@ -136,7 +136,7 @@

    pynetdicom.fsm.AR_9

    'Sta11', the next state of the state machine

    Return type:
    -

    str

    +

    str

    diff --git a/dev/reference/generated/pynetdicom.fsm.DT_1.html b/dev/reference/generated/pynetdicom.fsm.DT_1.html index 8c5ae06bd..3cafbfd1b 100644 --- a/dev/reference/generated/pynetdicom.fsm.DT_1.html +++ b/dev/reference/generated/pynetdicom.fsm.DT_1.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,10 +121,10 @@
    -

    pynetdicom.fsm.DT_1

    +

    pynetdicom.fsm.DT_1

    -pynetdicom.fsm.DT_1(dul: DULServiceProvider) str[source]
    +pynetdicom.fsm.DT_1(dul: DULServiceProvider) str[source]

    Data transfer DT-1.

    On receiving a P-DATA request, send P-DATA-TF

    State-event triggers: Sta6 + Evt9

    @@ -136,7 +136,7 @@

    pynetdicom.fsm.DT_1

    'Sta6', the next state of the state machine

    Return type:
    -

    str

    +

    str

    diff --git a/dev/reference/generated/pynetdicom.fsm.DT_2.html b/dev/reference/generated/pynetdicom.fsm.DT_2.html index 8619ea031..bada1fa2e 100644 --- a/dev/reference/generated/pynetdicom.fsm.DT_2.html +++ b/dev/reference/generated/pynetdicom.fsm.DT_2.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,10 +121,10 @@
    -

    pynetdicom.fsm.DT_2

    +

    pynetdicom.fsm.DT_2

    -pynetdicom.fsm.DT_2(dul: DULServiceProvider) str[source]
    +pynetdicom.fsm.DT_2(dul: DULServiceProvider) str[source]

    Data transfer DT-2.

    On receiving a P-DATA-TF request, send P-DATA indication

    State-event triggers: Sta6 + Evt10

    @@ -136,7 +136,7 @@

    pynetdicom.fsm.DT_2

    'Sta6', the next state of the state machine

    Return type:
    -

    str

    +

    str

    diff --git a/dev/reference/generated/pynetdicom.fsm.StateMachine.html b/dev/reference/generated/pynetdicom.fsm.StateMachine.html index 8a9bfe919..380e51508 100644 --- a/dev/reference/generated/pynetdicom.fsm.StateMachine.html +++ b/dev/reference/generated/pynetdicom.fsm.StateMachine.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -118,25 +118,25 @@
    -

    pynetdicom.fsm.StateMachine

    +

    pynetdicom.fsm.StateMachine

    -class pynetdicom.fsm.StateMachine(dul: DULServiceProvider)[source]
    +class pynetdicom.fsm.StateMachine(dul: DULServiceProvider)[source]

    Implementation of the DICOM Upper Layer State Machine.

    -current_state
    +current_state

    The current state of the state machine, 'Sta1' to 'Sta13'.

    Type:
    -

    str

    +

    str

    -dul
    +dul

    The DICOM Upper Layer service instance for the local AE

    Type:
    @@ -151,7 +151,7 @@

    pynetdicom.fsm.StateMachine
    -__init__(dul: DULServiceProvider)[source]
    +__init__(dul: DULServiceProvider)[source]

    Create a new StateMachine.

    Parameters:
    @@ -176,25 +176,25 @@

    pynetdicom.fsm.StateMachine
    -do_action(event: str) None[source]
    +do_action(event: str) None[source]

    Execute the action triggered by event.

    Parameters:
    -

    event (str) – The event to be processed, 'Evt1' to 'Evt19'

    +

    event (str) – The event to be processed, 'Evt1' to 'Evt19'

    -transition(state: str) None[source]
    +transition(state: str) None[source]

    Transition the state machine to the next state.

    Parameters:
    -

    state (str) – The state to transition to, 'Sta1' to 'Sta13'.

    +

    state (str) – The state to transition to, 'Sta1' to 'Sta13'.

    Raises:
    -

    ValueError – If state is not a valid state.

    +

    ValueError – If state is not a valid state.

    diff --git a/dev/reference/generated/pynetdicom.pdu.A_ABORT_RQ.html b/dev/reference/generated/pynetdicom.pdu.A_ABORT_RQ.html index 327d33d5a..35d0eb2ca 100644 --- a/dev/reference/generated/pynetdicom.pdu.A_ABORT_RQ.html +++ b/dev/reference/generated/pynetdicom.pdu.A_ABORT_RQ.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -128,41 +128,41 @@
    -

    pynetdicom.pdu.A_ABORT_RQ

    +

    pynetdicom.pdu.A_ABORT_RQ

    -class pynetdicom.pdu.A_ABORT_RQ(primitive: A_ABORT | A_P_ABORT | None = None)[source]
    +class pynetdicom.pdu.A_ABORT_RQ(primitive: A_ABORT | A_P_ABORT | None = None)[source]

    An A-ABORT-RQ PDU.

    An A-ABORT-RQ PDU is used to abort the association.

    -pdu_type
    +pdu_type

    The PDU Type field value (0x07).

    Type:
    -

    int

    +

    int

    -reason_diagnostic
    +reason_diagnostic

    The Reason/Diagnostic field value.

    Type:
    -

    int

    +

    int

    -source
    +source

    The Source field value.

    Type:
    -

    int

    +

    int

    @@ -226,7 +226,7 @@

    pynetdicom.pdu.A_ABORT_RQ
    -__init__(primitive: A_ABORT | A_P_ABORT | None = None) None[source]
    +__init__(primitive: A_ABORT | A_P_ABORT | None = None) None[source]

    Initialise a new A-ABORT-RQ PDU.

    Parameters:
    @@ -245,7 +245,7 @@

    pynetdicom.pdu.A_ABORT_RQ

    encode()

    -

    Return the encoded PDU as bytes.

    +

    Return the encoded PDU as bytes.

    from_primitive(primitive)

    Setup the current PDU using an A-ABORT or A-P-ABORT primitive.

    @@ -262,7 +262,7 @@

    pynetdicom.pdu.A_ABORT_RQ

    pdu_type

    -

    Return the PDU Type field value as int.

    +

    Return the PDU Type field value as int.

    reason_str

    Return a str description of the Reason/Diagnostic field value.

    @@ -274,7 +274,7 @@

    pynetdicom.pdu.A_ABORT_RQ
    -from_primitive(primitive: A_ABORT | A_P_ABORT) None[source]
    +from_primitive(primitive: A_ABORT | A_P_ABORT) None[source]

    Setup the current PDU using an A-ABORT or A-P-ABORT primitive.

    Parameters:
    @@ -285,25 +285,25 @@

    pynetdicom.pdu.A_ABORT_RQ
    -property pdu_length: int
    +property pdu_length: int

    Return the PDU Length field value as an int.

    -property reason_str: str
    +property reason_str: str

    Return a str description of the Reason/Diagnostic field value.

    -property source_str: str
    +property source_str: str

    Return a str description of the Source field value.

    -to_primitive() A_ABORT | A_P_ABORT[source]
    +to_primitive() A_ABORT | A_P_ABORT[source]

    Return an A-ABORT or A-P-ABORT primitive from the current PDU.

    Returns:
    diff --git a/dev/reference/generated/pynetdicom.pdu.A_ASSOCIATE_AC.html b/dev/reference/generated/pynetdicom.pdu.A_ASSOCIATE_AC.html index 73c2e5dd9..a6a4d8c6b 100644 --- a/dev/reference/generated/pynetdicom.pdu.A_ASSOCIATE_AC.html +++ b/dev/reference/generated/pynetdicom.pdu.A_ASSOCIATE_AC.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -128,45 +128,45 @@
    -

    pynetdicom.pdu.A_ASSOCIATE_AC

    +

    pynetdicom.pdu.A_ASSOCIATE_AC

    -class pynetdicom.pdu.A_ASSOCIATE_AC(primitive: A_ASSOCIATE | None = None)[source]
    +class pynetdicom.pdu.A_ASSOCIATE_AC(primitive: A_ASSOCIATE | None = None)[source]

    An A-ASSOCIATE-AC PDU.

    An A-ASSOCIATE-AC PDU is sent by an association acceptor to indicate that association negotiation has been successful.

    -pdu_type
    +pdu_type

    The PDU Type field value (0x02).

    Type:
    -

    int

    +

    int

    -protocol_version
    +protocol_version

    The Protocol Version field value (default 0x01).

    Type:
    -

    int

    +

    int

    -variable_items
    +variable_items

    A list containing the A-ASSOCIATE-AC’s ‘Variable Items’. Contains one Application Context item, one or more Presentation Context items and one User Information item. The order of the items is not guaranteed.

    Type:
    -

    list

    +

    list

    @@ -280,7 +280,7 @@

    pynetdicom.pdu.A_ASSOCIATE_AC
    -__init__(primitive: A_ASSOCIATE | None = None) None[source]
    +__init__(primitive: A_ASSOCIATE | None = None) None[source]

    Initialise a new A-ASSOCIATE-AC PDU.

    Parameters:
    @@ -299,7 +299,7 @@

    pynetdicom.pdu.A_ASSOCIATE_AC

    encode()

    -

    Return the encoded PDU as bytes.

    +

    Return the encoded PDU as bytes.

    from_primitive(primitive)

    Setup the current PDU using an A-ASSOCIATE (accept) primitive.

    @@ -325,7 +325,7 @@

    pynetdicom.pdu.A_ASSOCIATE_AC

    pdu_type

    -

    Return the PDU Type field value as int.

    +

    Return the PDU Type field value as int.

    presentation_context

    Return a list of the Presentation Context Items.

    @@ -343,21 +343,21 @@

    pynetdicom.pdu.A_ASSOCIATE_AC
    -property application_context_name: UID | None
    +property application_context_name: UID | None

    Return the Application Context Name, if available.

    Returns:

    The acceptor’s Application Context Name or None if not available.

    Return type:
    -

    pydicom.uid.UID or None

    +

    pydicom.uid.UID or None

    -property called_ae_title: str
    +property called_ae_title: str

    Return the value sent in the Called AE Title reserved space.

    While the standard says this value should match the A-ASSOCIATE-RQ value there is no guarantee and this should not be used as a check @@ -368,14 +368,14 @@

    pynetdicom.pdu.A_ASSOCIATE_ACReturn type: -

    str

    +

    str

    -property calling_ae_title: str
    +property calling_ae_title: str

    Return the value sent in the Calling AE Title reserved space.

    While the standard says this value should match the A-ASSOCIATE-RQ value there is no guarantee and this should not be used as a check @@ -387,14 +387,14 @@

    pynetdicom.pdu.A_ASSOCIATE_ACReturn type: -

    bytes

    +

    bytes

    -from_primitive(primitive: A_ASSOCIATE) None[source]
    +from_primitive(primitive: A_ASSOCIATE) None[source]

    Setup the current PDU using an A-ASSOCIATE (accept) primitive.

    Parameters:
    @@ -405,31 +405,31 @@

    pynetdicom.pdu.A_ASSOCIATE_AC
    -property pdu_length: int
    +property pdu_length: int

    Return the PDU Length field value as an int.

    -property presentation_context: List[PresentationContextItemAC]
    +property presentation_context: List[PresentationContextItemAC]

    Return a list of the Presentation Context Items.

    Returns:

    The Presentation Context Items.

    Return type:
    -

    list of pdu_items.PresentationContextItemAC

    +

    list of pdu_items.PresentationContextItemAC

    -property reserved_aec: str
    +property reserved_aec: str

    Get or set the A-ASSOCIATE-AC’s reserved Calling AE Title value.

    Parameters:
    -

    value (str or bytes) – The value at offset 27-42 in the A-ASSOCIATE-AC PDU, usually the +

    value (str or bytes) – The value at offset 27-42 in the A-ASSOCIATE-AC PDU, usually the same value as the Calling AE Title.

    Returns:
    @@ -438,18 +438,18 @@

    pynetdicom.pdu.A_ASSOCIATE_ACReturn type: -

    str

    +

    str

    -property reserved_aet: str
    +property reserved_aet: str

    Get or set the A-ASSOCIATE-AC’s reserved Called AE Title value.

    Parameters:
    -

    value (str or bytes) – The value at offset 11-26 in the A-ASSOCIATE-AC PDU, usually the +

    value (str or bytes) – The value at offset 11-26 in the A-ASSOCIATE-AC PDU, usually the same value as the Called AE Title.

    Returns:
    @@ -458,14 +458,14 @@

    pynetdicom.pdu.A_ASSOCIATE_ACReturn type: -

    str

    +

    str

    -to_primitive() A_ASSOCIATE[source]
    +to_primitive() A_ASSOCIATE[source]

    Return an A-ASSOCIATE (accept) primitive from the current PDU.

    Returns:
    @@ -479,7 +479,7 @@

    pynetdicom.pdu.A_ASSOCIATE_AC
    -property user_information: UserInformationItem | None
    +property user_information: UserInformationItem | None

    Return the User Information Item, if available.

    Returns:
    diff --git a/dev/reference/generated/pynetdicom.pdu.A_ASSOCIATE_RJ.html b/dev/reference/generated/pynetdicom.pdu.A_ASSOCIATE_RJ.html index c74654f37..7a13086c5 100644 --- a/dev/reference/generated/pynetdicom.pdu.A_ASSOCIATE_RJ.html +++ b/dev/reference/generated/pynetdicom.pdu.A_ASSOCIATE_RJ.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -128,53 +128,53 @@
    -

    pynetdicom.pdu.A_ASSOCIATE_RJ

    +

    pynetdicom.pdu.A_ASSOCIATE_RJ

    -class pynetdicom.pdu.A_ASSOCIATE_RJ(primitive: A_ASSOCIATE | None = None)[source]
    +class pynetdicom.pdu.A_ASSOCIATE_RJ(primitive: A_ASSOCIATE | None = None)[source]

    An A-ASSOCIATE-RJ PDU.

    An A-ASSOCIATE-RJ PDU is sent by an association acceptor to indicate that association negotiation has been unsuccessful.

    -pdu_type
    +pdu_type

    The PDU Type field value (0x03).

    Type:
    -

    int

    +

    int

    -reason_diagnostic
    +reason_diagnostic

    The Reason/Diagnostic field value.

    Type:
    -

    int

    +

    int

    -result
    +result

    The Result field value.

    Type:
    -

    int

    +

    int

    -source
    +source

    The Source field value.

    Type:
    -

    int

    +

    int

    @@ -239,7 +239,7 @@

    pynetdicom.pdu.A_ASSOCIATE_RJ
    -__init__(primitive: A_ASSOCIATE | None = None) None[source]
    +__init__(primitive: A_ASSOCIATE | None = None) None[source]

    Initialise a new A-ASSOCIATE-RJ PDU.

    Parameters:
    @@ -258,7 +258,7 @@

    pynetdicom.pdu.A_ASSOCIATE_RJ

    encode()

    -

    Return the encoded PDU as bytes.

    +

    Return the encoded PDU as bytes.

    from_primitive(primitive)

    Setup the current PDU using an A-ASSOCIATE (reject) primitive.

    @@ -275,7 +275,7 @@

    pynetdicom.pdu.A_ASSOCIATE_RJ

    pdu_type

    -

    Return the PDU Type field value as int.

    +

    Return the PDU Type field value as int.

    reason_str

    Return a str describing the Reason/Diagnostic field value.

    @@ -290,7 +290,7 @@

    pynetdicom.pdu.A_ASSOCIATE_RJ
    -from_primitive(primitive: A_ASSOCIATE) None[source]
    +from_primitive(primitive: A_ASSOCIATE) None[source]

    Setup the current PDU using an A-ASSOCIATE (reject) primitive.

    Parameters:
    @@ -301,31 +301,31 @@

    pynetdicom.pdu.A_ASSOCIATE_RJ
    -property pdu_length: int
    +property pdu_length: int

    Return the PDU Length field value as an int.

    -property reason_str: str
    +property reason_str: str

    Return a str describing the Reason/Diagnostic field value.

    -property result_str: str
    +property result_str: str

    Return a str describing the Result field value.

    -property source_str: str
    +property source_str: str

    Return a str describing the Source field value.

    -to_primitive() A_ASSOCIATE[source]
    +to_primitive() A_ASSOCIATE[source]

    Return an A-ASSOCIATE (reject) primitive from the current PDU.

    Returns:
    diff --git a/dev/reference/generated/pynetdicom.pdu.A_ASSOCIATE_RQ.html b/dev/reference/generated/pynetdicom.pdu.A_ASSOCIATE_RQ.html index d2071a85b..3f6f026ee 100644 --- a/dev/reference/generated/pynetdicom.pdu.A_ASSOCIATE_RQ.html +++ b/dev/reference/generated/pynetdicom.pdu.A_ASSOCIATE_RQ.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -128,45 +128,45 @@
    -

    pynetdicom.pdu.A_ASSOCIATE_RQ

    +

    pynetdicom.pdu.A_ASSOCIATE_RQ

    -class pynetdicom.pdu.A_ASSOCIATE_RQ(primitive: A_ASSOCIATE | None = None)[source]
    +class pynetdicom.pdu.A_ASSOCIATE_RQ(primitive: A_ASSOCIATE | None = None)[source]

    An A-ASSOCIATE-RQ PDU.

    An A-ASSOCIATE-RQ PDU is sent by an association requestor to initiate association negotiation with an acceptor.

    -pdu_type
    +pdu_type

    The PDU Type field value (0x01).

    Type:
    -

    int

    +

    int

    -protocol_version
    +protocol_version

    The Protocol Version field value (0x01).

    Type:
    -

    int

    +

    int

    -variable_items
    +variable_items

    A list containing the A-ASSOCIATE-RQ’s Variable Items. Contains one Application Context item, one or more Presentation Context items and one User Information item. The order of the items is not guaranteed.

    Type:
    -

    list

    +

    list

    @@ -288,7 +288,7 @@

    pynetdicom.pdu.A_ASSOCIATE_RQ
    -__init__(primitive: A_ASSOCIATE | None = None) None[source]
    +__init__(primitive: A_ASSOCIATE | None = None) None[source]

    Initialise a new A-ASSOCIATE-RQ PDU.

    Parameters:
    @@ -307,7 +307,7 @@

    pynetdicom.pdu.A_ASSOCIATE_RQ

    encode()

    -

    Return the encoded PDU as bytes.

    +

    Return the encoded PDU as bytes.

    from_primitive(primitive)

    Setup the current PDU using an A-ASSOCIATE (request) primitive.

    @@ -324,16 +324,16 @@

    pynetdicom.pdu.A_ASSOCIATE_RQ

    called_ae_title

    -

    Get or set the Called AE Title field value as str.

    +

    Get or set the Called AE Title field value as str.

    calling_ae_title

    -

    Return the Calling AE Title field value as str.

    +

    Return the Calling AE Title field value as str.

    pdu_length

    -

    Return the PDU Length field value as int.

    +

    Return the PDU Length field value as int.

    pdu_type

    -

    Return the PDU Type field value as int.

    +

    Return the PDU Type field value as int.

    presentation_context

    Return a list of the Presentation Context items.

    @@ -345,7 +345,7 @@

    pynetdicom.pdu.A_ASSOCIATE_RQ
    -property application_context_name: UID | None
    +property application_context_name: UID | None

    Return the Application Context Name, if available.

    Returns:
    @@ -353,21 +353,21 @@

    pynetdicom.pdu.A_ASSOCIATE_RQReturn type: -

    pydicom.uid.UID or None

    +

    pydicom.uid.UID or None

    -property called_ae_title: str
    -

    Get or set the Called AE Title field value as str.

    +property called_ae_title: str +

    Get or set the Called AE Title field value as str.

    Will be converted to a fixed length 16-byte value (padded with trailing spaces 0x20). Leading and trailing spaces are non-significant and a value of 16 spaces is not allowed.

    Parameters:
    -

    value (str or bytes) – The value you wish to set. A value consisting of spaces is not +

    value (str or bytes) – The value you wish to set. A value consisting of spaces is not allowed and values longer than 16 characters will be truncated.

    @@ -375,13 +375,13 @@

    pynetdicom.pdu.A_ASSOCIATE_RQ
    -property calling_ae_title: str
    -

    Return the Calling AE Title field value as str.

    +property calling_ae_title: str +

    Return the Calling AE Title field value as str.

    -from_primitive(primitive: A_ASSOCIATE) None[source]
    +from_primitive(primitive: A_ASSOCIATE) None[source]

    Setup the current PDU using an A-ASSOCIATE (request) primitive.

    Parameters:
    @@ -392,27 +392,27 @@

    pynetdicom.pdu.A_ASSOCIATE_RQ
    -property pdu_length: int
    -

    Return the PDU Length field value as int.

    +property pdu_length: int +

    Return the PDU Length field value as int.

    -property presentation_context: List[PresentationContextItemRQ]
    +property presentation_context: List[PresentationContextItemRQ]

    Return a list of the Presentation Context items.

    Returns:

    The Presentation Context items.

    Return type:
    -

    list of pdu_items.PresentationContextItemRQ

    +

    list of pdu_items.PresentationContextItemRQ

    -to_primitive() A_ASSOCIATE[source]
    +to_primitive() A_ASSOCIATE[source]

    Return an A-ASSOCIATE (request) primitive from the current PDU.

    Returns:
    @@ -426,7 +426,7 @@

    pynetdicom.pdu.A_ASSOCIATE_RQ
    -property user_information: UserInformationItem | None
    +property user_information: UserInformationItem | None

    Return the User Information Item, if available.

    Returns:
    diff --git a/dev/reference/generated/pynetdicom.pdu.A_RELEASE_RP.html b/dev/reference/generated/pynetdicom.pdu.A_RELEASE_RP.html index 54aa63395..bb1d2354a 100644 --- a/dev/reference/generated/pynetdicom.pdu.A_RELEASE_RP.html +++ b/dev/reference/generated/pynetdicom.pdu.A_RELEASE_RP.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -128,20 +128,20 @@
    -

    pynetdicom.pdu.A_RELEASE_RP

    +

    pynetdicom.pdu.A_RELEASE_RP

    -class pynetdicom.pdu.A_RELEASE_RP(primitive: A_RELEASE | None = None)[source]
    +class pynetdicom.pdu.A_RELEASE_RP(primitive: A_RELEASE | None = None)[source]

    An A-RELEASE-RP PDU.

    An A-RELEASE-RP PDU is used once an association has been established to confirm the release of the association.

    -pdu_type
    +pdu_type

    The PDU Type field value (0x06).

    Type:
    -

    int

    +

    int

    @@ -191,7 +191,7 @@

    pynetdicom.pdu.A_RELEASE_RP
    -__init__(primitive: A_RELEASE | None = None) None[source]
    +__init__(primitive: A_RELEASE | None = None) None[source]

    Initialise a new A-RELEASE-RP PDU.

    Parameters:
    @@ -210,7 +210,7 @@

    pynetdicom.pdu.A_RELEASE_RP

    encode()

    -

    Return the encoded PDU as bytes.

    +

    Return the encoded PDU as bytes.

    from_primitive(primitive)

    Setup the current PDU using an A-release (response) primitive.

    @@ -227,13 +227,13 @@

    pynetdicom.pdu.A_RELEASE_RP

    pdu_type

    -

    Return the PDU Type field value as int.

    +

    Return the PDU Type field value as int.

    -static from_primitive(primitive: A_RELEASE) None[source]
    +static from_primitive(primitive: A_RELEASE) None[source]

    Setup the current PDU using an A-release (response) primitive.

    Parameters:
    @@ -244,13 +244,13 @@

    pynetdicom.pdu.A_RELEASE_RP
    -property pdu_length: int
    +property pdu_length: int

    Return the PDU Length field value as an int.

    -static to_primitive() A_RELEASE[source]
    +static to_primitive() A_RELEASE[source]

    Return an A-RELEASE (response) primitive from the current PDU.

    Returns:
    diff --git a/dev/reference/generated/pynetdicom.pdu.A_RELEASE_RQ.html b/dev/reference/generated/pynetdicom.pdu.A_RELEASE_RQ.html index 22697a25c..d2f9744d2 100644 --- a/dev/reference/generated/pynetdicom.pdu.A_RELEASE_RQ.html +++ b/dev/reference/generated/pynetdicom.pdu.A_RELEASE_RQ.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -128,20 +128,20 @@
    -

    pynetdicom.pdu.A_RELEASE_RQ

    +

    pynetdicom.pdu.A_RELEASE_RQ

    -class pynetdicom.pdu.A_RELEASE_RQ(primitive: A_RELEASE | None = None)[source]
    +class pynetdicom.pdu.A_RELEASE_RQ(primitive: A_RELEASE | None = None)[source]

    An A-RELEASE-RQ PDU.

    An A-RELEASE-RQ PDU is used once an association has been established to initiate the release of the association.

    -pdu_type
    +pdu_type

    The PDU Type field value (0x05).

    Type:
    -

    int

    +

    int

    @@ -191,7 +191,7 @@

    pynetdicom.pdu.A_RELEASE_RQ
    -__init__(primitive: A_RELEASE | None = None) None[source]
    +__init__(primitive: A_RELEASE | None = None) None[source]

    Initialise a new A-RELEASE-RQ PDU.

    Parameters:
    @@ -210,7 +210,7 @@

    pynetdicom.pdu.A_RELEASE_RQ

    encode()

    -

    Return the encoded PDU as bytes.

    +

    Return the encoded PDU as bytes.

    from_primitive(primitive)

    Setup the current PDU using an A-RELEASE (request) primitive.

    @@ -227,13 +227,13 @@

    pynetdicom.pdu.A_RELEASE_RQ

    pdu_type

    -

    Return the PDU Type field value as int.

    +

    Return the PDU Type field value as int.

    -static from_primitive(primitive: A_RELEASE) None[source]
    +static from_primitive(primitive: A_RELEASE) None[source]

    Setup the current PDU using an A-RELEASE (request) primitive.

    Parameters:
    @@ -244,13 +244,13 @@

    pynetdicom.pdu.A_RELEASE_RQ
    -property pdu_length: int
    +property pdu_length: int

    Return the PDU Length field value as an int.

    -static to_primitive() A_RELEASE[source]
    +static to_primitive() A_RELEASE[source]

    Return an A-RELEASE (request) primitive from the current PDU.

    Returns:
    diff --git a/dev/reference/generated/pynetdicom.pdu.P_DATA_TF.html b/dev/reference/generated/pynetdicom.pdu.P_DATA_TF.html index 0e7956153..942ebbd12 100644 --- a/dev/reference/generated/pynetdicom.pdu.P_DATA_TF.html +++ b/dev/reference/generated/pynetdicom.pdu.P_DATA_TF.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -128,31 +128,31 @@
    -

    pynetdicom.pdu.P_DATA_TF

    +

    pynetdicom.pdu.P_DATA_TF

    -class pynetdicom.pdu.P_DATA_TF(primitive: P_DATA | None = None)[source]
    +class pynetdicom.pdu.P_DATA_TF(primitive: P_DATA | None = None)[source]

    A P-DATA-TF PDU.

    A P-DATA-TF PDU is used once an association has been established to send DIMSE message data.

    -pdu_type
    +pdu_type

    The PDU Type field value (0x04).

    Type:
    -

    int

    +

    int

    -presentation_data_value_items
    +presentation_data_value_items

    The Presentation Data Value Item(s) field value.

    Type:
    -

    list of pdu.PresentationDataValueItem

    +

    list of pdu.PresentationDataValueItem

    @@ -203,7 +203,7 @@

    pynetdicom.pdu.P_DATA_TF
    -__init__(primitive: P_DATA | None = None) None[source]
    +__init__(primitive: P_DATA | None = None) None[source]

    Initialise a new P-DATA-TF PDU.

    Parameters:
    @@ -222,7 +222,7 @@

    pynetdicom.pdu.P_DATA_TF

    encode()

    -

    Return the encoded PDU as bytes.

    +

    Return the encoded PDU as bytes.

    from_primitive(primitive)

    Setup the current PDU using a P-DATA primitive.

    @@ -239,13 +239,13 @@

    pynetdicom.pdu.P_DATA_TF

    pdu_type

    -

    Return the PDU Type field value as int.

    +

    Return the PDU Type field value as int.

    -from_primitive(primitive: P_DATA) None[source]
    +from_primitive(primitive: P_DATA) None[source]

    Setup the current PDU using a P-DATA primitive.

    Parameters:
    @@ -256,13 +256,13 @@

    pynetdicom.pdu.P_DATA_TF
    -property pdu_length: int
    +property pdu_length: int

    Return the PDU Length field value as an int.

    -to_primitive() P_DATA[source]
    +to_primitive() P_DATA[source]

    Return a P-DATA primitive from the current PDU.

    Returns:
    diff --git a/dev/reference/generated/pynetdicom.pdu.PresentationDataValueItem.html b/dev/reference/generated/pynetdicom.pdu.PresentationDataValueItem.html index 07e172d67..0074a24ac 100644 --- a/dev/reference/generated/pynetdicom.pdu.PresentationDataValueItem.html +++ b/dev/reference/generated/pynetdicom.pdu.PresentationDataValueItem.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -128,10 +128,10 @@
    -

    pynetdicom.pdu.PresentationDataValueItem

    +

    pynetdicom.pdu.PresentationDataValueItem

    -class pynetdicom.pdu.PresentationDataValueItem[source]
    +class pynetdicom.pdu.PresentationDataValueItem[source]

    A Presentation Data Value Item.

    Presentation Data Value (PDV) Items are used to contain DIMSE Messages that have been fragmented into Command and Data fragments, with each @@ -182,7 +182,7 @@

    pynetdicom.pdu.PresentationDataValueItem
    -__init__() None[source]
    +__init__() None[source]

    Initialise a new Presentation Data Value Item.

    @@ -210,7 +210,7 @@

    pynetdicom.pdu.PresentationDataValueItem

    item_length

    -

    Return the item's Item Length field value as int.

    +

    Return the item's Item Length field value as int.

    item_type

    Raise NotImplementedError as Presentation Data Value Items have no Item Type field.

    @@ -222,32 +222,32 @@

    pynetdicom.pdu.PresentationDataValueItem
    -property context_id: int | None
    +property context_id: int | None

    Return the item’s Presentation Context ID field value.

    -property data: bytes | None
    +property data: bytes | None

    Return the item’s Presentation Data Value field value.

    -property item_length: int
    -

    Return the item’s Item Length field value as int.

    +property item_length: int +

    Return the item’s Item Length field value as int.

    -property item_type: int
    +property item_type: int

    Raise NotImplementedError as Presentation Data Value Items have no Item Type field.

    -property message_control_header_byte: str
    +property message_control_header_byte: str

    Return the message control header byte as a formatted string.

    diff --git a/dev/reference/generated/pynetdicom.pdu_items.AbstractSyntaxSubItem.html b/dev/reference/generated/pynetdicom.pdu_items.AbstractSyntaxSubItem.html index 18a141a40..e69980c3d 100644 --- a/dev/reference/generated/pynetdicom.pdu_items.AbstractSyntaxSubItem.html +++ b/dev/reference/generated/pynetdicom.pdu_items.AbstractSyntaxSubItem.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -137,10 +137,10 @@
    -

    pynetdicom.pdu_items.AbstractSyntaxSubItem

    +

    pynetdicom.pdu_items.AbstractSyntaxSubItem

    -class pynetdicom.pdu_items.AbstractSyntaxSubItem[source]
    +class pynetdicom.pdu_items.AbstractSyntaxSubItem[source]

    An Abstract Syntax Sub-item.

    An Abstract Syntax is the specification of data elements with associated semantics. In particular it allows communicating Application Entities to @@ -210,7 +210,7 @@

    pynetdicom.pdu_items.AbstractSyntaxSubItem
    -__init__() None[source]
    +__init__() None[source]

    Initialise a new Abstract Syntax Item.

    @@ -238,29 +238,29 @@

    pynetdicom.pdu_items.AbstractSyntaxSubItem

    item_length

    -

    Return the item's Item Length field value as int.

    +

    Return the item's Item Length field value as int.

    item_type

    -

    Return the item's Item Type field value as int.

    +

    Return the item's Item Type field value as int.

    -property abstract_syntax: UID | None
    +property abstract_syntax: UID | None

    Return the item’s Abstract Syntax Name field value.

    -property abstract_syntax_name: UID | None
    +property abstract_syntax_name: UID | None

    Return the item’s Abstract Syntax Name field value.

    -property item_length: int
    -

    Return the item’s Item Length field value as int.

    +property item_length: int +

    Return the item’s Item Length field value as int.

    diff --git a/dev/reference/generated/pynetdicom.pdu_items.ApplicationContextItem.html b/dev/reference/generated/pynetdicom.pdu_items.ApplicationContextItem.html index ef085199d..f4a9c857b 100644 --- a/dev/reference/generated/pynetdicom.pdu_items.ApplicationContextItem.html +++ b/dev/reference/generated/pynetdicom.pdu_items.ApplicationContextItem.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -137,10 +137,10 @@
    -

    pynetdicom.pdu_items.ApplicationContextItem

    +

    pynetdicom.pdu_items.ApplicationContextItem

    -class pynetdicom.pdu_items.ApplicationContextItem[source]
    +class pynetdicom.pdu_items.ApplicationContextItem[source]

    An Application Context Item.

    An Application Context explicitly defines the set of application service elements, related options and any other information necessary for the @@ -210,7 +210,7 @@

    pynetdicom.pdu_items.ApplicationContextItem
    -__init__() None[source]
    +__init__() None[source]

    Initialise a new Application Context Item.

    @@ -232,27 +232,27 @@

    pynetdicom.pdu_items.ApplicationContextItem

    application_context_name

    -

    Return the item's Application Context Name field value as UID.

    +

    Return the item's Application Context Name field value as UID.

    item_length

    -

    Return the item's Item Length field value as int.

    +

    Return the item's Item Length field value as int.

    item_type

    -

    Return the item's Item Type field value as int.

    +

    Return the item's Item Type field value as int.

    -property application_context_name: UID
    +property application_context_name: UID

    Return the item’s Application Context Name field value as -UID.

    +UID.

    -property item_length: int
    -

    Return the item’s Item Length field value as int.

    +property item_length: int +

    Return the item’s Item Length field value as int.

    diff --git a/dev/reference/generated/pynetdicom.pdu_items.AsynchronousOperationsWindowSubItem.html b/dev/reference/generated/pynetdicom.pdu_items.AsynchronousOperationsWindowSubItem.html index 70ec0b463..bba3ae7c3 100644 --- a/dev/reference/generated/pynetdicom.pdu_items.AsynchronousOperationsWindowSubItem.html +++ b/dev/reference/generated/pynetdicom.pdu_items.AsynchronousOperationsWindowSubItem.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -137,10 +137,10 @@
    -

    pynetdicom.pdu_items.AsynchronousOperationsWindowSubItem

    +

    pynetdicom.pdu_items.AsynchronousOperationsWindowSubItem

    -class pynetdicom.pdu_items.AsynchronousOperationsWindowSubItem[source]
    +class pynetdicom.pdu_items.AsynchronousOperationsWindowSubItem[source]

    An Asynchronous Operations Window Sub-item.

    Represents the Asynchronous Operations Window Sub Item used in A-ASSOCIATE-RQ and A-ASSOCIATE-AC PDUs.

    @@ -199,7 +199,7 @@

    pynetdicom.pdu_items.AsynchronousOperationsWindowSubItem
    -__init__() None[source]
    +__init__() None[source]

    Initialise a new Asynchronous Operations Window Item.

    @@ -227,10 +227,10 @@

    pynetdicom.pdu_items.AsynchronousOperationsWindowSubItem

    item_length

    -

    Return the item's Item Length field value as int.

    +

    Return the item's Item Length field value as int.

    item_type

    -

    Return the item's Item Type field value as int.

    +

    Return the item's Item Type field value as int.

    max_operations_invoked

    Return the item's Maximum Number Operations Invoked field value.

    @@ -242,7 +242,7 @@

    pynetdicom.pdu_items.AsynchronousOperationsWindowSubItem
    -from_primitive(primitive: AsynchronousOperationsWindowNegotiation) None[source]
    +from_primitive(primitive: AsynchronousOperationsWindowNegotiation) None[source]

    Set the item’s values using an Asynchronous Operations Window primitive.

    @@ -254,25 +254,25 @@

    pynetdicom.pdu_items.AsynchronousOperationsWindowSubItem
    -property item_length: int
    -

    Return the item’s Item Length field value as int.

    +property item_length: int +

    Return the item’s Item Length field value as int.

    -property max_operations_invoked: int | None
    +property max_operations_invoked: int | None

    Return the item’s Maximum Number Operations Invoked field value.

    -property max_operations_performed: int | None
    +property max_operations_performed: int | None

    Return the item’s Maximum Number Operations Performed field value.

    -to_primitive() AsynchronousOperationsWindowNegotiation[source]
    +to_primitive() AsynchronousOperationsWindowNegotiation[source]

    Return an Asynchronous Operations Window primitive from the current Item.

    diff --git a/dev/reference/generated/pynetdicom.pdu_items.ImplementationClassUIDSubItem.html b/dev/reference/generated/pynetdicom.pdu_items.ImplementationClassUIDSubItem.html index fa8891fe8..db17936b5 100644 --- a/dev/reference/generated/pynetdicom.pdu_items.ImplementationClassUIDSubItem.html +++ b/dev/reference/generated/pynetdicom.pdu_items.ImplementationClassUIDSubItem.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -137,10 +137,10 @@
    -

    pynetdicom.pdu_items.ImplementationClassUIDSubItem

    +

    pynetdicom.pdu_items.ImplementationClassUIDSubItem

    -class pynetdicom.pdu_items.ImplementationClassUIDSubItem[source]
    +class pynetdicom.pdu_items.ImplementationClassUIDSubItem[source]

    An Implementation Class UID Sub-item.

    The Implementation Class UID Sub-item allows communicating Application Entities to identify each other at Association establishment.

    @@ -192,7 +192,7 @@

    pynetdicom.pdu_items.ImplementationClassUIDSubItem
    -__init__() None[source]
    +__init__() None[source]

    Initialise a new Implementation Class UID Item.

    @@ -223,16 +223,16 @@

    pynetdicom.pdu_items.ImplementationClassUIDSubItem

    Return the item's Implementation Class UID field value as UID.

    item_length

    -

    Return the item's Item Length field value as int.

    +

    Return the item's Item Length field value as int.

    item_type

    -

    Return the item's Item Type field value as int.

    +

    Return the item's Item Type field value as int.

    -from_primitive(primitive: ImplementationClassUIDNotification) None[source]
    +from_primitive(primitive: ImplementationClassUIDNotification) None[source]

    Set the item’s values using an Implementation Identification primitive.

    @@ -244,19 +244,19 @@

    pynetdicom.pdu_items.ImplementationClassUIDSubItem
    -property implementation_class_uid: UID | None
    +property implementation_class_uid: UID | None

    Return the item’s Implementation Class UID field value as UID.

    -property item_length: int
    -

    Return the item’s Item Length field value as int.

    +property item_length: int +

    Return the item’s Item Length field value as int.

    -to_primitive() ImplementationClassUIDNotification[source]
    +to_primitive() ImplementationClassUIDNotification[source]

    Return an Implementation Identification primitive from the current Item.

    diff --git a/dev/reference/generated/pynetdicom.pdu_items.ImplementationVersionNameSubItem.html b/dev/reference/generated/pynetdicom.pdu_items.ImplementationVersionNameSubItem.html index b0a1e2ebb..52669b41e 100644 --- a/dev/reference/generated/pynetdicom.pdu_items.ImplementationVersionNameSubItem.html +++ b/dev/reference/generated/pynetdicom.pdu_items.ImplementationVersionNameSubItem.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -137,10 +137,10 @@
    -

    pynetdicom.pdu_items.ImplementationVersionNameSubItem

    +

    pynetdicom.pdu_items.ImplementationVersionNameSubItem

    -class pynetdicom.pdu_items.ImplementationVersionNameSubItem[source]
    +class pynetdicom.pdu_items.ImplementationVersionNameSubItem[source]

    An Implementation Version Name Sub-item.

    The Implementation Version Name Sub-item allows communicating Application Entities to identify each other at Association establishment.

    @@ -196,7 +196,7 @@

    pynetdicom.pdu_items.ImplementationVersionNameSubItem
    -__init__() None[source]
    +__init__() None[source]

    Initialise a new Implementation Version Name Item.

    @@ -227,16 +227,16 @@

    pynetdicom.pdu_items.ImplementationVersionNameSubItem

    Return the item's Implementation Version Name field value.

    item_length

    -

    Return the item's Item Length field value as int.

    +

    Return the item's Item Length field value as int.

    item_type

    -

    Return the item's Item Type field value as int.

    +

    Return the item's Item Type field value as int.

    -from_primitive(primitive: ImplementationVersionNameNotification) None[source]
    +from_primitive(primitive: ImplementationVersionNameNotification) None[source]

    Set the item’s values using an Implementation Identification primitive.

    @@ -248,19 +248,19 @@

    pynetdicom.pdu_items.ImplementationVersionNameSubItem
    -property implementation_version_name: str | None
    +property implementation_version_name: str | None

    Return the item’s Implementation Version Name field value.

    -property item_length: int
    -

    Return the item’s Item Length field value as int.

    +property item_length: int +

    Return the item’s Item Length field value as int.

    -to_primitive() ImplementationVersionNameNotification[source]
    +to_primitive() ImplementationVersionNameNotification[source]

    Return an Implementation Identification primitive from the current Item.

    diff --git a/dev/reference/generated/pynetdicom.pdu_items.MaximumLengthSubItem.html b/dev/reference/generated/pynetdicom.pdu_items.MaximumLengthSubItem.html index bea494a5c..03a10935a 100644 --- a/dev/reference/generated/pynetdicom.pdu_items.MaximumLengthSubItem.html +++ b/dev/reference/generated/pynetdicom.pdu_items.MaximumLengthSubItem.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -137,10 +137,10 @@
    -

    pynetdicom.pdu_items.MaximumLengthSubItem

    +

    pynetdicom.pdu_items.MaximumLengthSubItem

    -class pynetdicom.pdu_items.MaximumLengthSubItem[source]
    +class pynetdicom.pdu_items.MaximumLengthSubItem[source]

    A Maximum Length Sub-item.

    The Maximum Length Sub-item allows the receivers to limit the size of the Presentation Data Values List parameters of each P-DATA PDU.

    @@ -193,7 +193,7 @@

    pynetdicom.pdu_items.MaximumLengthSubItem
    -__init__() None[source]
    +__init__() None[source]

    Initialise a new Maximum Length Item.

    @@ -221,16 +221,16 @@

    pynetdicom.pdu_items.MaximumLengthSubItem

    item_length

    -

    Return the item's Item Length field value as int.

    +

    Return the item's Item Length field value as int.

    item_type

    -

    Return the item's Item Type field value as int.

    +

    Return the item's Item Type field value as int.

    -from_primitive(primitive: MaximumLengthNotification) None[source]
    +from_primitive(primitive: MaximumLengthNotification) None[source]

    Set the item’s values using a Maximum Length primitive.

    Parameters:
    @@ -241,13 +241,13 @@

    pynetdicom.pdu_items.MaximumLengthSubItem
    -property item_length: int
    -

    Return the item’s Item Length field value as int.

    +property item_length: int +

    Return the item’s Item Length field value as int.

    -to_primitive() MaximumLengthNotification[source]
    +to_primitive() MaximumLengthNotification[source]

    Return a Maximum Length primitive from the current Item.

    Returns:
    diff --git a/dev/reference/generated/pynetdicom.pdu_items.PresentationContextItemAC.html b/dev/reference/generated/pynetdicom.pdu_items.PresentationContextItemAC.html index 3c55309fc..991a37305 100644 --- a/dev/reference/generated/pynetdicom.pdu_items.PresentationContextItemAC.html +++ b/dev/reference/generated/pynetdicom.pdu_items.PresentationContextItemAC.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -137,10 +137,10 @@
    -

    pynetdicom.pdu_items.PresentationContextItemAC

    +

    pynetdicom.pdu_items.PresentationContextItemAC

    -class pynetdicom.pdu_items.PresentationContextItemAC[source]
    +class pynetdicom.pdu_items.PresentationContextItemAC[source]

    A Presentation Context (AC) Ttem.

    Presentation Contexts (AC) Items are used by the association acceptor to signal which Abstract Syntaxes and Transfer Syntaxes have been accepted or @@ -216,7 +216,7 @@

    pynetdicom.pdu_items.PresentationContextItemAC
    -__init__() None[source]
    +__init__() None[source]

    Initialise a new Presentation Context (AC) Item.

    @@ -247,10 +247,10 @@

    pynetdicom.pdu_items.PresentationContextItemAC

    item_length

    -

    Return the item's Item Length field value as int.

    +

    Return the item's Item Length field value as int.

    item_type

    -

    Return the item's Item Type field value as int.

    +

    Return the item's Item Type field value as int.

    result

    Return the item's Result/reason field value.

    @@ -265,13 +265,13 @@

    pynetdicom.pdu_items.PresentationContextItemAC
    -property context_id: int | None
    +property context_id: int | None

    Return the item’s Presentation Context ID field value.

    -from_primitive(primitive: PresentationContext) None[source]
    +from_primitive(primitive: PresentationContext) None[source]

    Set the item’s values using a Presentation Context primitive.

    Parameters:
    @@ -282,25 +282,25 @@

    pynetdicom.pdu_items.PresentationContextItemAC
    -property item_length: int
    -

    Return the item’s Item Length field value as int.

    +property item_length: int +

    Return the item’s Item Length field value as int.

    -property result: int | None
    +property result: int | None

    Return the item’s Result/reason field value.

    -property result_str: str
    +property result_str: str

    Get a string describing the result.

    -to_primitive() PresentationContext[source]
    +to_primitive() PresentationContext[source]

    Return a PresentationContext primitive from the current Item.

    Returns:
    @@ -314,7 +314,7 @@

    pynetdicom.pdu_items.PresentationContextItemAC
    -property transfer_syntax: UID | None
    +property transfer_syntax: UID | None

    Return the Transfer Syntax, if available.

    Returns:
    @@ -323,7 +323,7 @@

    pynetdicom.pdu_items.PresentationContextItemACReturn type: -

    pydicom.uid.UID or None

    +

    pydicom.uid.UID or None

    diff --git a/dev/reference/generated/pynetdicom.pdu_items.PresentationContextItemRQ.html b/dev/reference/generated/pynetdicom.pdu_items.PresentationContextItemRQ.html index 84e58009f..727e31f92 100644 --- a/dev/reference/generated/pynetdicom.pdu_items.PresentationContextItemRQ.html +++ b/dev/reference/generated/pynetdicom.pdu_items.PresentationContextItemRQ.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -137,10 +137,10 @@
    -

    pynetdicom.pdu_items.PresentationContextItemRQ

    +

    pynetdicom.pdu_items.PresentationContextItemRQ

    -class pynetdicom.pdu_items.PresentationContextItemRQ[source]
    +class pynetdicom.pdu_items.PresentationContextItemRQ[source]

    A Presentation Context (RQ) Item.

    Presentation Contexts (RQ) Items are used by the association requestor to propose Abstract Syntaxes (specifications of data elements with associated @@ -228,7 +228,7 @@

    pynetdicom.pdu_items.PresentationContextItemRQ
    -__init__() None[source]
    +__init__() None[source]

    Initialise a new Presentation Context (RQ) Item.

    @@ -259,13 +259,13 @@

    pynetdicom.pdu_items.PresentationContextItemRQ

    context_id

    -

    Return the item's Presentation Context ID field value as int.

    +

    Return the item's Presentation Context ID field value as int.

    item_length

    -

    Return the item's Item Length field value as int.

    +

    Return the item's Item Length field value as int.

    item_type

    -

    Return the item's Item Type field value as int.

    +

    Return the item's Item Type field value as int.

    transfer_syntax

    Return the Transfer Syntax(es).

    @@ -274,25 +274,25 @@

    pynetdicom.pdu_items.PresentationContextItemRQ
    -property abstract_syntax: UID | None
    +property abstract_syntax: UID | None

    Return the Abstract Syntax, if available.

    Return type:
    -

    pydicom.uid.UID or None

    +

    pydicom.uid.UID or None

    -property context_id: int | None
    +property context_id: int | None

    Return the item’s Presentation Context ID field value as -int.

    +int.

    -from_primitive(primitive: PresentationContext) None[source]
    +from_primitive(primitive: PresentationContext) None[source]

    Set the item’s values using a Presentation Context primitive.

    Parameters:
    @@ -303,13 +303,13 @@

    pynetdicom.pdu_items.PresentationContextItemRQ
    -property item_length: int
    -

    Return the item’s Item Length field value as int.

    +property item_length: int +

    Return the item’s Item Length field value as int.

    -to_primitive() PresentationContext[source]
    +to_primitive() PresentationContext[source]

    Return a PresentationContext primitive from the current Item.

    Returns:
    @@ -323,11 +323,11 @@

    pynetdicom.pdu_items.PresentationContextItemRQ
    -property transfer_syntax: List[UID]
    +property transfer_syntax: List[UID]

    Return the Transfer Syntax(es).

    Return type:
    -

    list of pydicom.uid.UID

    +

    list of pydicom.uid.UID

    diff --git a/dev/reference/generated/pynetdicom.pdu_items.PresentationDataValueItem.html b/dev/reference/generated/pynetdicom.pdu_items.PresentationDataValueItem.html index 7a2b5921a..27da2789c 100644 --- a/dev/reference/generated/pynetdicom.pdu_items.PresentationDataValueItem.html +++ b/dev/reference/generated/pynetdicom.pdu_items.PresentationDataValueItem.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -136,10 +136,10 @@
    -

    pynetdicom.pdu_items.PresentationDataValueItem

    +

    pynetdicom.pdu_items.PresentationDataValueItem

    -class pynetdicom.pdu_items.PresentationDataValueItem[source]
    +class pynetdicom.pdu_items.PresentationDataValueItem[source]

    A Presentation Data Value Item.

    Presentation Data Value (PDV) Items are used to contain DIMSE Messages that have been fragmented into Command and Data fragments, with each @@ -190,7 +190,7 @@

    pynetdicom.pdu_items.PresentationDataValueItem
    -__init__() None[source]
    +__init__() None[source]

    Initialise a new Presentation Data Value Item.

    @@ -218,7 +218,7 @@

    pynetdicom.pdu_items.PresentationDataValueItem

    item_length

    -

    Return the item's Item Length field value as int.

    +

    Return the item's Item Length field value as int.

    item_type

    Raise NotImplementedError as Presentation Data Value Items have no Item Type field.

    @@ -230,32 +230,32 @@

    pynetdicom.pdu_items.PresentationDataValueItem
    -property context_id: int | None
    +property context_id: int | None

    Return the item’s Presentation Context ID field value.

    -property data: bytes | None
    +property data: bytes | None

    Return the item’s Presentation Data Value field value.

    -property item_length: int
    -

    Return the item’s Item Length field value as int.

    +property item_length: int +

    Return the item’s Item Length field value as int.

    -property item_type: int
    +property item_type: int

    Raise NotImplementedError as Presentation Data Value Items have no Item Type field.

    -property message_control_header_byte: str
    +property message_control_header_byte: str

    Return the message control header byte as a formatted string.

    diff --git a/dev/reference/generated/pynetdicom.pdu_items.SCP_SCU_RoleSelectionSubItem.html b/dev/reference/generated/pynetdicom.pdu_items.SCP_SCU_RoleSelectionSubItem.html index 187b989e6..835734fdb 100644 --- a/dev/reference/generated/pynetdicom.pdu_items.SCP_SCU_RoleSelectionSubItem.html +++ b/dev/reference/generated/pynetdicom.pdu_items.SCP_SCU_RoleSelectionSubItem.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -137,10 +137,10 @@
    -

    pynetdicom.pdu_items.SCP_SCU_RoleSelectionSubItem

    +

    pynetdicom.pdu_items.SCP_SCU_RoleSelectionSubItem

    -class pynetdicom.pdu_items.SCP_SCU_RoleSelectionSubItem[source]
    +class pynetdicom.pdu_items.SCP_SCU_RoleSelectionSubItem[source]

    An SCP/SCU Role Selection Sub-item.

    An SCU/SCU Role Selection Sub-item allows communicating Application Entities to negotiate the roles in which they will server for each SOP @@ -213,7 +213,7 @@

    pynetdicom.pdu_items.SCP_SCU_RoleSelectionSubItem
    -__init__() None[source]
    +__init__() None[source]

    Initialise a new SCP/SCU Role Selection Item.

    @@ -241,10 +241,10 @@

    pynetdicom.pdu_items.SCP_SCU_RoleSelectionSubItem

    item_length

    -

    Return the item's Item Length field value as int.

    +

    Return the item's Item Length field value as int.

    item_type

    -

    Return the item's Item Type field value as int.

    +

    Return the item's Item Type field value as int.

    scp

    Return the item's SCP Role field value.

    @@ -271,7 +271,7 @@

    pynetdicom.pdu_items.SCP_SCU_RoleSelectionSubItem
    -from_primitive(primitive: SCP_SCU_RoleSelectionNegotiation) None[source]
    +from_primitive(primitive: SCP_SCU_RoleSelectionNegotiation) None[source]

    Set the item’s values using an SCP/SCU Role Selection primitive.

    Parameters:
    @@ -282,43 +282,43 @@

    pynetdicom.pdu_items.SCP_SCU_RoleSelectionSubItem
    -property item_length: int
    -

    Return the item’s Item Length field value as int.

    +property item_length: int +

    Return the item’s Item Length field value as int.

    -property scp: int | None
    +property scp: int | None

    Return the item’s SCP Role field value.

    -property scp_role: int | None
    +property scp_role: int | None

    Return the item’s SCP Role field value.

    -property scu: int | None
    +property scu: int | None

    Return the item’s SCU Role field value.

    -property scu_role: int | None
    +property scu_role: int | None

    Return the item’s SCU Role field value.

    -property sop_class_uid: UID | None
    +property sop_class_uid: UID | None

    Return the item’s SOP Class UID field value.

    -to_primitive() SCP_SCU_RoleSelectionNegotiation[source]
    +to_primitive() SCP_SCU_RoleSelectionNegotiation[source]

    Return an SCP/SCU Role Selection primitive from the current Item.

    Returns:
    @@ -332,13 +332,13 @@

    pynetdicom.pdu_items.SCP_SCU_RoleSelectionSubItem
    -property uid: UID | None
    +property uid: UID | None

    Return the item’s SOP Class UID field value.

    -property uid_length: int
    +property uid_length: int

    Return the UID Length parameter value.

    diff --git a/dev/reference/generated/pynetdicom.pdu_items.SOPClassCommonExtendedNegotiationSubItem.html b/dev/reference/generated/pynetdicom.pdu_items.SOPClassCommonExtendedNegotiationSubItem.html index 3792d4bbd..8a1c69740 100644 --- a/dev/reference/generated/pynetdicom.pdu_items.SOPClassCommonExtendedNegotiationSubItem.html +++ b/dev/reference/generated/pynetdicom.pdu_items.SOPClassCommonExtendedNegotiationSubItem.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -137,10 +137,10 @@
    -

    pynetdicom.pdu_items.SOPClassCommonExtendedNegotiationSubItem

    +

    pynetdicom.pdu_items.SOPClassCommonExtendedNegotiationSubItem

    -class pynetdicom.pdu_items.SOPClassCommonExtendedNegotiationSubItem[source]
    +class pynetdicom.pdu_items.SOPClassCommonExtendedNegotiationSubItem[source]

    A SOP Class Common Extended Negotiation Sub-item.

    A SOP Class Common Extended Negotiation Sub-item allows Application Entities to exchange application information in a generic non-Service @@ -252,7 +252,7 @@

    pynetdicom.pdu_items.SOPClassCommonExtendedNegotiationSubItem
    -__init__() None[source]
    +__init__() None[source]

    Initialise a new Implementation Version Name Item.

    @@ -280,10 +280,10 @@

    pynetdicom.pdu_items.SOPClassCommonExtendedNegotiationSubItem

    item_length

    -

    Return the item's Item Length field value as int.

    +

    Return the item's Item Length field value as int.

    item_type

    -

    Return the item's Item Type field value as int.

    +

    Return the item's Item Type field value as int.

    related_general_sop_class_identification

    Return the item's Related General SOP Class Identification field value.

    @@ -307,7 +307,7 @@

    pynetdicom.pdu_items.SOPClassCommonExtendedNegotiationSubItem
    -from_primitive(primitive: SOPClassCommonExtendedNegotiation) None[source]
    +from_primitive(primitive: SOPClassCommonExtendedNegotiation) None[source]

    Set the item’s values using a SOP Class Common Extended Negotiation primitive.

    @@ -319,51 +319,51 @@

    pynetdicom.pdu_items.SOPClassCommonExtendedNegotiationSubItem
    -property item_length: int
    -

    Return the item’s Item Length field value as int.

    +property item_length: int +

    Return the item’s Item Length field value as int.

    -property related_general_sop_class_identification: List[UID]
    +property related_general_sop_class_identification: List[UID]

    Return the item’s Related General SOP Class Identification field value.

    -property related_general_sop_class_identification_length: int
    +property related_general_sop_class_identification_length: int

    Return the item’s Related General SOP Class Identification Length field value.

    -property service_class_uid: UID | None
    +property service_class_uid: UID | None

    Return the item’s Service Class UID field value.

    -property service_class_uid_length: int
    +property service_class_uid_length: int

    Return the item’s Service Class UID Length field value.

    -property sop_class_uid: UID | None
    +property sop_class_uid: UID | None

    Return the item’s SOP Class UID field value.

    -property sop_class_uid_length: int
    +property sop_class_uid_length: int

    Return the item’s SOP Class UID Length field value.

    -to_primitive() SOPClassCommonExtendedNegotiation[source]
    +to_primitive() SOPClassCommonExtendedNegotiation[source]

    Return an SOP Class Common Extended Negotiation primitive from the current Item.

    diff --git a/dev/reference/generated/pynetdicom.pdu_items.SOPClassExtendedNegotiationSubItem.html b/dev/reference/generated/pynetdicom.pdu_items.SOPClassExtendedNegotiationSubItem.html index 786752cff..0c6f87d2c 100644 --- a/dev/reference/generated/pynetdicom.pdu_items.SOPClassExtendedNegotiationSubItem.html +++ b/dev/reference/generated/pynetdicom.pdu_items.SOPClassExtendedNegotiationSubItem.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -137,10 +137,10 @@
    -

    pynetdicom.pdu_items.SOPClassExtendedNegotiationSubItem

    +

    pynetdicom.pdu_items.SOPClassExtendedNegotiationSubItem

    -class pynetdicom.pdu_items.SOPClassExtendedNegotiationSubItem[source]
    +class pynetdicom.pdu_items.SOPClassExtendedNegotiationSubItem[source]

    A SOP Class Extended Negotiation Sub-item.

    A SOP Class Extended Negotiation Sub-item allows peer Application Entities to exchange application information defined by specific Service Class @@ -208,7 +208,7 @@

    pynetdicom.pdu_items.SOPClassExtendedNegotiationSubItem
    -__init__() None[source]
    +__init__() None[source]

    Initialise a new SOP Class Extended Negotiation Item.

    @@ -239,10 +239,10 @@

    pynetdicom.pdu_items.SOPClassExtendedNegotiationSubItem

    Return the item's Service Class Application Information field value.

    item_length

    -

    Return the item's Item Length field value as int.

    +

    Return the item's Item Length field value as int.

    item_type

    -

    Return the item's Item Type field value as int.

    +

    Return the item's Item Type field value as int.

    sop_class_uid

    Return the item's SOP Class UID field value.

    @@ -257,14 +257,14 @@

    pynetdicom.pdu_items.SOPClassExtendedNegotiationSubItem
    -property app_info: bytes | None
    +property app_info: bytes | None

    Return the item’s Service Class Application Information field value.

    -from_primitive(primitive: SOPClassExtendedNegotiation) None[source]
    +from_primitive(primitive: SOPClassExtendedNegotiation) None[source]

    Set the item’s values using a SOP Class Extended Negotiation primitive.

    @@ -276,25 +276,25 @@

    pynetdicom.pdu_items.SOPClassExtendedNegotiationSubItem
    -property item_length: int
    -

    Return the item’s Item Length field value as int.

    +property item_length: int +

    Return the item’s Item Length field value as int.

    -property sop_class_uid: UID | None
    +property sop_class_uid: UID | None

    Return the item’s SOP Class UID field value.

    -property sop_class_uid_length: int
    +property sop_class_uid_length: int

    Return the item’s SOP Class UID Length field value.

    -to_primitive() SOPClassExtendedNegotiation[source]
    +to_primitive() SOPClassExtendedNegotiation[source]

    Return a SOP Class Extended Negotiation primitive from the current Item.

    @@ -309,7 +309,7 @@

    pynetdicom.pdu_items.SOPClassExtendedNegotiationSubItem
    -property uid: UID | None
    +property uid: UID | None

    Return the item’s SOP Class UID field value.

    diff --git a/dev/reference/generated/pynetdicom.pdu_items.TransferSyntaxSubItem.html b/dev/reference/generated/pynetdicom.pdu_items.TransferSyntaxSubItem.html index db2bc8fb1..547452567 100644 --- a/dev/reference/generated/pynetdicom.pdu_items.TransferSyntaxSubItem.html +++ b/dev/reference/generated/pynetdicom.pdu_items.TransferSyntaxSubItem.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -137,10 +137,10 @@
    -

    pynetdicom.pdu_items.TransferSyntaxSubItem

    +

    pynetdicom.pdu_items.TransferSyntaxSubItem

    -class pynetdicom.pdu_items.TransferSyntaxSubItem[source]
    +class pynetdicom.pdu_items.TransferSyntaxSubItem[source]

    A Transfer Syntax Sub-item.

    A Transfer Syntax is a set of encoding rules able to unambiguously represent the data elements defined by one or more Abstract Syntaxes. @@ -211,7 +211,7 @@

    pynetdicom.pdu_items.TransferSyntaxSubItem
    -__init__() None[source]
    +__init__() None[source]

    Initialise a new Abstract Syntax Item.

    @@ -233,10 +233,10 @@

    pynetdicom.pdu_items.TransferSyntaxSubItem

    item_length

    -

    Return the item's Item Length field value as int.

    +

    Return the item's Item Length field value as int.

    item_type

    -

    Return the item's Item Type field value as int.

    +

    Return the item's Item Type field value as int.

    transfer_syntax

    Return the item's Transfer Syntax Name field value.

    @@ -248,19 +248,19 @@

    pynetdicom.pdu_items.TransferSyntaxSubItem
    -property item_length: int
    -

    Return the item’s Item Length field value as int.

    +property item_length: int +

    Return the item’s Item Length field value as int.

    -property transfer_syntax: UID | None
    +property transfer_syntax: UID | None

    Return the item’s Transfer Syntax Name field value.

    -property transfer_syntax_name: UID | None
    +property transfer_syntax_name: UID | None

    Return the item’s Transfer Syntax Name field value.

    diff --git a/dev/reference/generated/pynetdicom.pdu_items.UserIdentitySubItemAC.html b/dev/reference/generated/pynetdicom.pdu_items.UserIdentitySubItemAC.html index 604630ca0..469e3c6cf 100644 --- a/dev/reference/generated/pynetdicom.pdu_items.UserIdentitySubItemAC.html +++ b/dev/reference/generated/pynetdicom.pdu_items.UserIdentitySubItemAC.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -137,10 +137,10 @@
    -

    pynetdicom.pdu_items.UserIdentitySubItemAC

    +

    pynetdicom.pdu_items.UserIdentitySubItemAC

    -class pynetdicom.pdu_items.UserIdentitySubItemAC[source]
    +class pynetdicom.pdu_items.UserIdentitySubItemAC[source]

    A User Identity (AC) Sub-item.

    A User Identity (AC) Sub-item is used to response with the server identity to the association requestor.

    @@ -196,7 +196,7 @@

    pynetdicom.pdu_items.UserIdentitySubItemAC
    -__init__() None[source]
    +__init__() None[source]

    Initialise a new User Identity (AC) Item.

    @@ -224,10 +224,10 @@

    pynetdicom.pdu_items.UserIdentitySubItemAC

    item_length

    -

    Return the item's Item Length field value as int.

    +

    Return the item's Item Length field value as int.

    item_type

    -

    Return the item's Item Type field value as int.

    +

    Return the item's Item Type field value as int.

    response

    Return the item's Server Response field value.

    @@ -239,7 +239,7 @@

    pynetdicom.pdu_items.UserIdentitySubItemAC
    -from_primitive(primitive: UserIdentityNegotiation) None[source]
    +from_primitive(primitive: UserIdentityNegotiation) None[source]

    Set the item’s values using an User Identity primitive.

    Parameters:
    @@ -250,25 +250,25 @@

    pynetdicom.pdu_items.UserIdentitySubItemAC
    -property item_length: int
    -

    Return the item’s Item Length field value as int.

    +property item_length: int +

    Return the item’s Item Length field value as int.

    -property response: bytes | None
    +property response: bytes | None

    Return the item’s Server Response field value.

    -property server_response_length: int
    +property server_response_length: int

    Return the item’s Server Response Length field value.

    -to_primitive() UserIdentityNegotiation[source]
    +to_primitive() UserIdentityNegotiation[source]

    Return an User Identity primitive from the current Item.

    Returns:
    diff --git a/dev/reference/generated/pynetdicom.pdu_items.UserIdentitySubItemRQ.html b/dev/reference/generated/pynetdicom.pdu_items.UserIdentitySubItemRQ.html index b5c8e7250..e33ae64b5 100644 --- a/dev/reference/generated/pynetdicom.pdu_items.UserIdentitySubItemRQ.html +++ b/dev/reference/generated/pynetdicom.pdu_items.UserIdentitySubItemRQ.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -137,10 +137,10 @@
    -

    pynetdicom.pdu_items.UserIdentitySubItemRQ

    +

    pynetdicom.pdu_items.UserIdentitySubItemRQ

    -class pynetdicom.pdu_items.UserIdentitySubItemRQ[source]
    +class pynetdicom.pdu_items.UserIdentitySubItemRQ[source]

    A User Identity (RQ) Sub-item.

    A User Identity (RQ) Sub-item is used to notify the association acceptor of the user identity of the requestor.

    @@ -216,7 +216,7 @@

    pynetdicom.pdu_items.UserIdentitySubItemRQ
    -__init__() None[source]
    +__init__() None[source]

    Initialise a new User Identity (RQ) Item.

    @@ -250,19 +250,19 @@

    pynetdicom.pdu_items.UserIdentitySubItemRQ

    item_length

    -

    Return the item's Item Length field value as int.

    +

    Return the item's Item Length field value as int.

    item_type

    -

    Return the item's Item Type field value as int.

    +

    Return the item's Item Type field value as int.

    primary

    -

    Return the item's Primary Field field value as bytes.

    +

    Return the item's Primary Field field value as bytes.

    primary_field_length

    Return the item's Primary Field Length field value.

    response_requested

    -

    Return the item's Positive Response Requested field value as bool.

    +

    Return the item's Positive Response Requested field value as bool.

    secondary

    Return the item's Secondary Field field value.

    @@ -274,7 +274,7 @@

    pynetdicom.pdu_items.UserIdentitySubItemRQ
    -from_primitive(primitive: UserIdentityNegotiation) None[source]
    +from_primitive(primitive: UserIdentityNegotiation) None[source]

    Set the item’s values using an User Identity primitive.

    Parameters:
    @@ -285,56 +285,56 @@

    pynetdicom.pdu_items.UserIdentitySubItemRQ
    -property id_type: int | None
    +property id_type: int | None

    Return the item’s User Identity Type field value.

    -property id_type_str: str
    +property id_type_str: str

    Return a string description of the User Identity Type field.

    -property item_length: int
    -

    Return the item’s Item Length field value as int.

    +property item_length: int +

    Return the item’s Item Length field value as int.

    -property primary: bytes | None
    -

    Return the item’s Primary Field field value as bytes.

    +property primary: bytes | None +

    Return the item’s Primary Field field value as bytes.

    -property primary_field_length: int
    +property primary_field_length: int

    Return the item’s Primary Field Length field value.

    -property response_requested: bool | None
    +property response_requested: bool | None

    Return the item’s Positive Response Requested field value as -bool.

    +bool.

    -property secondary: bytes | None
    +property secondary: bytes | None

    Return the item’s Secondary Field field value.

    -property secondary_field_length: int
    +property secondary_field_length: int

    Return the item’s Secondary Field Length field value.

    -to_primitive() UserIdentityNegotiation[source]
    +to_primitive() UserIdentityNegotiation[source]

    Return an User Identity primitive from the current Item.

    Returns:
    diff --git a/dev/reference/generated/pynetdicom.pdu_items.UserInformationItem.html b/dev/reference/generated/pynetdicom.pdu_items.UserInformationItem.html index f1563f443..463c1793a 100644 --- a/dev/reference/generated/pynetdicom.pdu_items.UserInformationItem.html +++ b/dev/reference/generated/pynetdicom.pdu_items.UserInformationItem.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -137,10 +137,10 @@
    -

    pynetdicom.pdu_items.UserInformationItem

    +

    pynetdicom.pdu_items.UserInformationItem

    -class pynetdicom.pdu_items.UserInformationItem[source]
    +class pynetdicom.pdu_items.UserInformationItem[source]

    A User Information Item.

    Used by the association requestor and acceptor to include user information in the association negotiation.

    @@ -197,7 +197,7 @@

    pynetdicom.pdu_items.UserInformationItem
    -__init__() None[source]
    +__init__() None[source]

    Initialise a new User Information Item.

    @@ -240,10 +240,10 @@

    pynetdicom.pdu_items.UserInformationItem

    item_length

    -

    Return the item's Item Length field value as int.

    +

    Return the item's Item Length field value as int.

    item_type

    -

    Return the item's Item Type field value as int.

    +

    Return the item's Item Type field value as int.

    maximum_length

    Return the item's Maximum Length Received field value, if available.

    @@ -258,30 +258,30 @@

    pynetdicom.pdu_items.UserInformationItem
    -property async_ops_window: AsynchronousOperationsWindowSubItem | None
    +property async_ops_window: AsynchronousOperationsWindowSubItem | None

    Return the Asynchronous Operations Window Sub-item, if available.

    -property common_ext_neg: List[SOPClassCommonExtendedNegotiationSubItem]
    +property common_ext_neg: List[SOPClassCommonExtendedNegotiationSubItem]

    Return the SOP Class Common Extended Negotiation Sub-items.

    -property ext_neg: List[SOPClassExtendedNegotiationSubItem]
    +property ext_neg: List[SOPClassExtendedNegotiationSubItem]

    Return the SOP Class Extended Negotiation Sub-items.

    -from_primitive(primitive: _UserInformationPrimitiveType) None[source]
    +from_primitive(primitive: _UserInformationPrimitiveType) None[source]

    Set up the current Item using User Information primitives.

    Parameters:
    -

    primitive (list of User Information primitives) –

    Must contain:

    +

    primitive (list of User Information primitives) –

    Must contain:

    • MaximumLengthNotification

    • ImplementationClassUIDNotification

    • @@ -302,48 +302,48 @@

      pynetdicom.pdu_items.UserInformationItem
      -property implementation_class_uid: UID | None
      +property implementation_class_uid: UID | None

      Return the item’s Implementation Class UID field value, if available.

    -property implementation_version_name: str | None
    +property implementation_version_name: str | None

    Return the item’s Implementation Version Name field value, if available.

    -property item_length: int
    -

    Return the item’s Item Length field value as int.

    +property item_length: int +

    Return the item’s Item Length field value as int.

    -property maximum_length: int | None
    +property maximum_length: int | None

    Return the item’s Maximum Length Received field value, if available.

    -property role_selection: Dict[UID, SCP_SCU_RoleSelectionSubItem]
    +property role_selection: Dict[UID, SCP_SCU_RoleSelectionSubItem]

    Return the SCP/SCU Role Selection Sub-items.

    Returns:

    The SCP/SCU Role Selection items as {item.uid : item}.

    Return type:
    -

    dict

    +

    dict

    -to_primitive() _UserInformationPrimitiveType[source]
    +to_primitive() _UserInformationPrimitiveType[source]

    Return a list of User Information primitives from the current Item.

    Returns:
    @@ -364,14 +364,14 @@

    pynetdicom.pdu_items.UserInformationItemReturn type: -

    list of User Information primitives

    +

    list of User Information primitives

    -property user_identity: UserIdentitySubItemAC | UserIdentitySubItemRQ | None
    +property user_identity: UserIdentitySubItemAC | UserIdentitySubItemRQ | None

    Return the User Identity Sub-item, if available.

    diff --git a/dev/reference/generated/pynetdicom.pdu_primitives.A_ABORT.html b/dev/reference/generated/pynetdicom.pdu_primitives.A_ABORT.html index fac8135e6..aeef7a31c 100644 --- a/dev/reference/generated/pynetdicom.pdu_primitives.A_ABORT.html +++ b/dev/reference/generated/pynetdicom.pdu_primitives.A_ABORT.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -126,10 +126,10 @@
    -

    pynetdicom.pdu_primitives.A_ABORT

    +

    pynetdicom.pdu_primitives.A_ABORT

    -class pynetdicom.pdu_primitives.A_ABORT[source]
    +class pynetdicom.pdu_primitives.A_ABORT[source]

    An A-ABORT primitive.

    @@ -162,7 +162,7 @@

    pynetdicom.pdu_primitives.A_ABORT
    -__init__() None[source]
    +__init__() None[source]

    Methods

    @@ -183,11 +183,11 @@

    pynetdicom.pdu_primitives.A_ABORT
    -property abort_source: int | None
    +property abort_source: int | None

    Get or set the Abort Source.

    Parameters:
    -

    value (int or None) –

    The abort source, one of:

    +

    value (int or None) –

    The abort source, one of:

    • 0: Upper layer service user

    • 1: Reserved

    • diff --git a/dev/reference/generated/pynetdicom.pdu_primitives.A_ASSOCIATE.html b/dev/reference/generated/pynetdicom.pdu_primitives.A_ASSOCIATE.html index 2a3d4ba26..193ae7150 100644 --- a/dev/reference/generated/pynetdicom.pdu_primitives.A_ASSOCIATE.html +++ b/dev/reference/generated/pynetdicom.pdu_primitives.A_ASSOCIATE.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -126,10 +126,10 @@
      -

      pynetdicom.pdu_primitives.A_ASSOCIATE

      +

      pynetdicom.pdu_primitives.A_ASSOCIATE

      -class pynetdicom.pdu_primitives.A_ASSOCIATE[source]
      +class pynetdicom.pdu_primitives.A_ASSOCIATE[source]

      An A-ASSOCIATE primitive.

      The establishment of an association between two AEs shall be performed through ACSE A-ASSOCIATE request, indication, response and confirmation @@ -256,7 +256,7 @@

      pynetdicom.pdu_primitives.A_ASSOCIATE
      -__init__() None[source]
      +__init__() None[source]

      Methods

      @@ -289,13 +289,13 @@

      pynetdicom.pdu_primitives.A_ASSOCIATE

    - + - + - + @@ -304,7 +304,7 @@

    pynetdicom.pdu_primitives.A_ASSOCIATE

    - + @@ -325,7 +325,7 @@

    pynetdicom.pdu_primitives.A_ASSOCIATE

    - + @@ -337,11 +337,11 @@

    pynetdicom.pdu_primitives.A_ASSOCIATE
    -property application_context_name: UID | None
    +property application_context_name: UID | None

    Get or set the Application Context Name parameter.

    Parameters:
    -

    value (pydicom.uid.UID, bytes or str) – The application context name proposed by the Requestor. +

    value (pydicom.uid.UID, bytes or str) – The application context name proposed by the Requestor. Acceptor returns either the same or a different name. Returned name specifies the application context used for the association. See the DICOM Standard, Part 8, Annex A. The application context name shall @@ -349,33 +349,33 @@

    pynetdicom.pdu_primitives.A_ASSOCIATE'1.2.840.10008.3.1.1.1'

    Return type:
    -

    pydicom.uid.UID

    +

    pydicom.uid.UID

    -property called_ae_title: str
    +property called_ae_title: str

    Get or set the Called AE Title parameter.

    Parameters:
    -

    value (str or bytes) – The Called AE Title as a string or bytes object. Cannot be an empty +

    value (str or bytes) – The Called AE Title as a string or bytes object. Cannot be an empty string and will be truncated to 16 characters long

    Return type:
    -

    bytes

    +

    bytes

    -property called_presentation_address: Tuple[str, int] | None
    +property called_presentation_address: Tuple[str, int] | None

    Get or set the Called Presentation Address parameter.

    Parameters:
    -

    value ((str, int) tuple) – A tuple containing a valid TCP/IP address string and the port +

    value ((str, int) tuple) – A tuple containing a valid TCP/IP address string and the port number as an int

    @@ -383,26 +383,26 @@

    pynetdicom.pdu_primitives.A_ASSOCIATE
    -property calling_ae_title: str
    +property calling_ae_title: str

    Get or set the Calling AE Title parameter.

    Parameters:
    -

    value (str or bytes) – The Calling AE Title as a string or bytes object. Cannot be an +

    value (str or bytes) – The Calling AE Title as a string or bytes object. Cannot be an empty string and will be truncated to 16 characters long.

    Return type:
    -

    bytes

    +

    bytes

    -property calling_presentation_address: Tuple[str, int] | None
    +property calling_presentation_address: Tuple[str, int] | None

    Get or set the Calling Presentation Address parameter.

    Parameters:
    -

    value ((str, int) tuple) – A tuple containing a valid TCP/IP address string and the port +

    value ((str, int) tuple) – A tuple containing a valid TCP/IP address string and the port number as an int

    @@ -410,11 +410,11 @@

    pynetdicom.pdu_primitives.A_ASSOCIATE
    -property diagnostic: int | None
    +property diagnostic: int | None

    Get or set the Diagnostic parameter.

    Parameters:
    -

    value (int) –

    If result_source is “UL service-user” then allowed values are:

    +

    value (int) –

    If result_source is “UL service-user” then allowed values are:

    • 1: no reason given

    • 2: application context name not supported

    • @@ -440,9 +440,9 @@

      pynetdicom.pdu_primitives.A_ASSOCIATE
      -property implementation_class_uid: UID | None
      +property implementation_class_uid: UID | None

      Get or set the Implementation Class UID as -UID.

      +UID.

      If the A_ASSOCIATE.user_information list contains an ImplementationClassUIDNotification item then set its implementation_class_uid value. If not then add a @@ -450,50 +450,50 @@

      pynetdicom.pdu_primitives.A_ASSOCIATE
      Parameters:
      -

      value (pydicom.uid.UID, bytes or str) – The value for the Implementation Class UID

      +

      value (pydicom.uid.UID, bytes or str) – The value for the Implementation Class UID

    -property maximum_length_received: int | None
    -

    Get or set the Maximum Length Received as int.

    +property maximum_length_received: int | None +

    Get or set the Maximum Length Received as int.

    If the A_ASSOCIATE.user_information list contains a MaximumLengthNotification item then set its maximum_length_received value. If not then add a MaximumLengthNotification item and set its maximum_length_received value.

    Parameters:
    -

    value (int) – The maximum length of each P-DATA in bytes

    +

    value (int) – The maximum length of each P-DATA in bytes

    -property mode: str
    -

    Return the Mode parameter as str.

    +property mode: str +

    Return the Mode parameter as str.

    -property presentation_context_definition_list: List[PresentationContext]
    +property presentation_context_definition_list: List[PresentationContext]

    Get or set the Presentation Context Definition List.

    Parameters:
    -

    value_list (list of presentation.PresentationContext) – The Presentation Contexts proposed by the Association Requestor

    +

    value_list (list of presentation.PresentationContext) – The Presentation Contexts proposed by the Association Requestor

    -property presentation_context_definition_results_list: List[PresentationContext]
    +property presentation_context_definition_results_list: List[PresentationContext]

    Get or set the Presentation Context Definition Results List.

    Parameters:
    -

    value_list (list of presentation.PresentationContext) – The results of the Presentation Contexts proposal by the +

    value_list (list of presentation.PresentationContext) – The results of the Presentation Contexts proposal by the Association Requestor

    @@ -501,35 +501,35 @@

    pynetdicom.pdu_primitives.A_ASSOCIATE
    -property presentation_requirements: str
    -

    Return the Presentation Kernel as str.

    +property presentation_requirements: str +

    Return the Presentation Kernel as str.

    -property reason_str: str
    +property reason_str: str

    Return the rejection reason as str.

    -property responding_ae_title: str | None
    +property responding_ae_title: str | None

    Return the Responding AE Title parameter.

    -property responding_presentation_address: Tuple[str, int] | None
    +property responding_presentation_address: Tuple[str, int] | None

    Get the Responding Presentation Address parameter.

    -property result: int | None
    +property result: int | None

    Get or set the Result parameter.

    Parameters:
    -

    value (int) –

    One of the following:

    +

    value (int) –

    One of the following:

    • 0: accepted

    • 1: rejected (permanent)

    • @@ -538,18 +538,18 @@

      pynetdicom.pdu_primitives.A_ASSOCIATEReturn type: -

      int

      +

      int

    -property result_source: int | None
    +property result_source: int | None

    Get or set the Result Source parameter.

    Parameters:
    -

    value (int) –

    One of the following:

    +

    value (int) –

    One of the following:

    • 1: UL service-user

    • 2: UL service-provider (ACSE related function)

    • @@ -558,36 +558,36 @@

      pynetdicom.pdu_primitives.A_ASSOCIATEReturn type: -

      int

      +

      int

    -property result_str: str
    +property result_str: str

    Return the result as str.

    -property session_requirements: str
    -

    Return the Session Requirements as str.

    +property session_requirements: str +

    Return the Session Requirements as str.

    -property source_str: str
    +property source_str: str

    Return the reject source as str.

    -property user_information: List[MaximumLengthNotification | ImplementationClassUIDNotification | ImplementationVersionNameNotification | AsynchronousOperationsWindowNegotiation | SCP_SCU_RoleSelectionNegotiation | SOPClassExtendedNegotiation | UserIdentityNegotiation | SOPClassCommonExtendedNegotiation]
    +property user_information: List[MaximumLengthNotification | ImplementationClassUIDNotification | ImplementationVersionNameNotification | AsynchronousOperationsWindowNegotiation | SCP_SCU_RoleSelectionNegotiation | SOPClassExtendedNegotiation | UserIdentityNegotiation | SOPClassCommonExtendedNegotiation]

    Get or set the User Information parameter.

    Parameters:
    -

    value_list (list of user information class objects) – A list of user information objects, must contain at least +

    value_list (list of user information class objects) – A list of user information objects, must contain at least MaximumLengthNotification and ImplementationClassUIDNotification

    diff --git a/dev/reference/generated/pynetdicom.pdu_primitives.A_P_ABORT.html b/dev/reference/generated/pynetdicom.pdu_primitives.A_P_ABORT.html index 0b7b5f3c1..715c3504f 100644 --- a/dev/reference/generated/pynetdicom.pdu_primitives.A_P_ABORT.html +++ b/dev/reference/generated/pynetdicom.pdu_primitives.A_P_ABORT.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -126,10 +126,10 @@
    -

    pynetdicom.pdu_primitives.A_P_ABORT

    +

    pynetdicom.pdu_primitives.A_P_ABORT

    -class pynetdicom.pdu_primitives.A_P_ABORT[source]
    +class pynetdicom.pdu_primitives.A_P_ABORT[source]

    An A-P-ABORT primitive.

    implementation_class_uid

    Get or set the Implementation Class UID as UID.

    Get or set the Implementation Class UID as UID.

    maximum_length_received

    Get or set the Maximum Length Received as int.

    Get or set the Maximum Length Received as int.

    mode

    Return the Mode parameter as str.

    Return the Mode parameter as str.

    presentation_context_definition_list

    Get or set the Presentation Context Definition List.

    presentation_requirements

    Return the Presentation Kernel as str.

    Return the Presentation Kernel as str.

    reason_str

    Return the rejection reason as str.

    session_requirements

    Return the Session Requirements as str.

    Return the Session Requirements as str.

    source_str

    Return the reject source as str.

    @@ -157,7 +157,7 @@

    pynetdicom.pdu_primitives.A_P_ABORT
    -__init__() None[source]
    +__init__() None[source]

    Methods

    @@ -178,11 +178,11 @@

    pynetdicom.pdu_primitives.A_P_ABORT
    -property provider_reason: int | None
    +property provider_reason: int | None

    Return the Provider Reason.

    Parameters:
    -

    value (int) –

    Indicates the reason for the abort. Allowed values are:

    +

    value (int) –

    Indicates the reason for the abort. Allowed values are:

    • 0: reason not specified

    • 1: unrecognised PDU

    • diff --git a/dev/reference/generated/pynetdicom.pdu_primitives.A_RELEASE.html b/dev/reference/generated/pynetdicom.pdu_primitives.A_RELEASE.html index eae74fca4..56a803866 100644 --- a/dev/reference/generated/pynetdicom.pdu_primitives.A_RELEASE.html +++ b/dev/reference/generated/pynetdicom.pdu_primitives.A_RELEASE.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -126,10 +126,10 @@
      -

      pynetdicom.pdu_primitives.A_RELEASE

      +

      pynetdicom.pdu_primitives.A_RELEASE

      -class pynetdicom.pdu_primitives.A_RELEASE[source]
      +class pynetdicom.pdu_primitives.A_RELEASE[source]

      An A-RELEASE primitive.

    @@ -174,7 +174,7 @@

    pynetdicom.pdu_primitives.A_RELEASE
    -__init__() None[source]
    +__init__() None[source]

    Methods

    @@ -198,17 +198,17 @@

    pynetdicom.pdu_primitives.A_RELEASE
    -property reason: str
    +property reason: str

    Return the Reason parameter.

    -property result: str | None
    +property result: str | None

    Get or set the Result parameter.

    Parameters:
    -

    value (str) – Must be None for request and indication, 'affirmative' +

    value (str) – Must be None for request and indication, 'affirmative' for response and confirmation.

    diff --git a/dev/reference/generated/pynetdicom.pdu_primitives.AsynchronousOperationsWindowNegotiation.html b/dev/reference/generated/pynetdicom.pdu_primitives.AsynchronousOperationsWindowNegotiation.html index f6dddecb6..20213935c 100644 --- a/dev/reference/generated/pynetdicom.pdu_primitives.AsynchronousOperationsWindowNegotiation.html +++ b/dev/reference/generated/pynetdicom.pdu_primitives.AsynchronousOperationsWindowNegotiation.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -126,10 +126,10 @@
    -

    pynetdicom.pdu_primitives.AsynchronousOperationsWindowNegotiation

    +

    pynetdicom.pdu_primitives.AsynchronousOperationsWindowNegotiation

    -class pynetdicom.pdu_primitives.AsynchronousOperationsWindowNegotiation[source]
    +class pynetdicom.pdu_primitives.AsynchronousOperationsWindowNegotiation[source]

    Representation of the Asynchronous Operations Window Negotiation primitive.

    Allows peer AEs to negotiate the maximum number of outstanding operation or sub-operation requests. This negotiation is optional.

    @@ -151,7 +151,7 @@

    pynetdicom.pdu_primitives.AsynchronousOperationsWindowNegotiation
    -__init__() None[source]
    +__init__() None[source]

    Methods

    @@ -178,7 +178,7 @@

    pynetdicom.pdu_primitives.AsynchronousOperationsWindowNegotiation
    -from_primitive() AsynchronousOperationsWindowSubItem[source]
    +from_primitive() AsynchronousOperationsWindowSubItem[source]

    Convert the primitive to a PDU item ready to be encoded.

    Returns:
    @@ -192,16 +192,16 @@

    pynetdicom.pdu_primitives.AsynchronousOperationsWindowNegotiation
    -property maximum_number_operations_invoked: int
    +property maximum_number_operations_invoked: int

    Get or set the Maximum Number Operations Invoked.

    Parameters:
    -

    value (int) – The maximum number of operations invoked

    +

    value (int) – The maximum number of operations invoked

    Raises:
    @@ -209,16 +209,16 @@

    pynetdicom.pdu_primitives.AsynchronousOperationsWindowNegotiation
    -property maximum_number_operations_performed: int
    +property maximum_number_operations_performed: int

    Get or set the Maximum Number Operations Performed.

    Parameters:
    -

    value (int) – The maximum number of operations performed

    +

    value (int) – The maximum number of operations performed

    Raises:
    diff --git a/dev/reference/generated/pynetdicom.pdu_primitives.ImplementationClassUIDNotification.html b/dev/reference/generated/pynetdicom.pdu_primitives.ImplementationClassUIDNotification.html index 76657ac37..0806e1bdc 100644 --- a/dev/reference/generated/pynetdicom.pdu_primitives.ImplementationClassUIDNotification.html +++ b/dev/reference/generated/pynetdicom.pdu_primitives.ImplementationClassUIDNotification.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -126,10 +126,10 @@
    -

    pynetdicom.pdu_primitives.ImplementationClassUIDNotification

    +

    pynetdicom.pdu_primitives.ImplementationClassUIDNotification

    -class pynetdicom.pdu_primitives.ImplementationClassUIDNotification[source]
    +class pynetdicom.pdu_primitives.ImplementationClassUIDNotification[source]

    A representation of a Implementation Class UID Notification primitive.

    The implementation identification notification allows implementations of communicating AEs to identify each other at association establishment time. @@ -158,7 +158,7 @@

    pynetdicom.pdu_primitives.ImplementationClassUIDNotification
    -__init__() None[source]
    +__init__() None[source]

    Methods

    @@ -182,7 +182,7 @@

    pynetdicom.pdu_primitives.ImplementationClassUIDNotification
    -from_primitive() ImplementationClassUIDSubItem[source]
    +from_primitive() ImplementationClassUIDSubItem[source]

    Convert the primitive to a PDU item ready to be encoded.

    Returns:
    @@ -192,18 +192,18 @@

    pynetdicom.pdu_primitives.ImplementationClassUIDNotification

    pdu_items.ImplementationClassUIDSubItem

    Raises:
    -

    ValueError – If no UID is set

    +

    ValueError – If no UID is set

    -property implementation_class_uid: UID | None
    +property implementation_class_uid: UID | None

    Get or set the Implementation Class UID.

    Parameters:
    -

    value (pydicom.uid.UID, bytes or str) – The value for the Implementation Class UID

    +

    value (pydicom.uid.UID, bytes or str) – The value for the Implementation Class UID

    diff --git a/dev/reference/generated/pynetdicom.pdu_primitives.ImplementationVersionNameNotification.html b/dev/reference/generated/pynetdicom.pdu_primitives.ImplementationVersionNameNotification.html index b3b40e101..01235a337 100644 --- a/dev/reference/generated/pynetdicom.pdu_primitives.ImplementationVersionNameNotification.html +++ b/dev/reference/generated/pynetdicom.pdu_primitives.ImplementationVersionNameNotification.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -126,10 +126,10 @@
    -

    pynetdicom.pdu_primitives.ImplementationVersionNameNotification

    +

    pynetdicom.pdu_primitives.ImplementationVersionNameNotification

    -class pynetdicom.pdu_primitives.ImplementationVersionNameNotification[source]
    +class pynetdicom.pdu_primitives.ImplementationVersionNameNotification[source]

    A representation of a Implementation Version Name Notification primitive.

    The implementation identification notification allows implementations of communicating AEs to identify each other at Association establishment time. @@ -157,7 +157,7 @@

    pynetdicom.pdu_primitives.ImplementationVersionNameNotification
    -__init__() None[source]
    +__init__() None[source]

    Methods

    @@ -181,7 +181,7 @@

    pynetdicom.pdu_primitives.ImplementationVersionNameNotification
    -from_primitive() ImplementationVersionNameSubItem[source]
    +from_primitive() ImplementationVersionNameSubItem[source]

    Convert the primitive to a PDU item ready to be encoded.

    Returns:
    @@ -191,23 +191,23 @@

    pynetdicom.pdu_primitives.ImplementationVersionNameNotification

    pdu_items.ImplementationVersionNameSubItem

    Raises:
    -

    ValueError – If no name is set

    +

    ValueError – If no name is set

    -property implementation_version_name: str | None
    +property implementation_version_name: str | None

    Get or set the Implementation Version Name.

    Parameters:
    -

    value (str or bytes) – The value for the Implementation Version Name

    +

    value (str or bytes) – The value for the Implementation Version Name

    Raises:
      -
    • TypeError – If value is not a str or bytes

    • -
    • ValueError – If value is empty or longer than 16 characters

    • +
    • TypeError – If value is not a str or bytes

    • +
    • ValueError – If value is empty or longer than 16 characters

    diff --git a/dev/reference/generated/pynetdicom.pdu_primitives.MaximumLengthNotification.html b/dev/reference/generated/pynetdicom.pdu_primitives.MaximumLengthNotification.html index 8fb05744c..552f304b0 100644 --- a/dev/reference/generated/pynetdicom.pdu_primitives.MaximumLengthNotification.html +++ b/dev/reference/generated/pynetdicom.pdu_primitives.MaximumLengthNotification.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -126,10 +126,10 @@
    -

    pynetdicom.pdu_primitives.MaximumLengthNotification

    +

    pynetdicom.pdu_primitives.MaximumLengthNotification

    -class pynetdicom.pdu_primitives.MaximumLengthNotification[source]
    +class pynetdicom.pdu_primitives.MaximumLengthNotification[source]

    A representation of a Maximum Length Negotiation primitive.

    The maximum length notification allows communicating AEs to limit the size of the data for each P-DATA indication. This notification is required for @@ -144,7 +144,7 @@

    pynetdicom.pdu_primitives.MaximumLengthNotification
    -__init__() None[source]
    +__init__() None[source]

    Methods

    @@ -162,13 +162,13 @@

    pynetdicom.pdu_primitives.MaximumLengthNotification

    - +

    maximum_length_received

    Get or set the Maximum Length Received using int.

    Get or set the Maximum Length Received using int.

    -from_primitive() MaximumLengthSubItem[source]
    +from_primitive() MaximumLengthSubItem[source]

    Convert the primitive to a PDU item ready to be encoded.

    Returns:
    @@ -182,18 +182,18 @@

    pynetdicom.pdu_primitives.MaximumLengthNotification
    -property maximum_length_received: int
    -

    Get or set the Maximum Length Received using int.

    +property maximum_length_received: int +

    Get or set the Maximum Length Received using int.

    Parameters:
    -

    val (int) – The maximum length of each P-DATA in bytes, must be equal to or +

    val (int) – The maximum length of each P-DATA in bytes, must be equal to or greater than 0. A value of 0 indicates unlimited length (31682 bytes default).

    Raises:
      -
    • ValueError – If maximum_length_received is negative

    • -
    • TypeError – If maximum_length_received is not an int

    • +
    • ValueError – If maximum_length_received is negative

    • +
    • TypeError – If maximum_length_received is not an int

    diff --git a/dev/reference/generated/pynetdicom.pdu_primitives.P_DATA.html b/dev/reference/generated/pynetdicom.pdu_primitives.P_DATA.html index b4598e504..1df71b1cc 100644 --- a/dev/reference/generated/pynetdicom.pdu_primitives.P_DATA.html +++ b/dev/reference/generated/pynetdicom.pdu_primitives.P_DATA.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -126,10 +126,10 @@
    -

    pynetdicom.pdu_primitives.P_DATA

    +

    pynetdicom.pdu_primitives.P_DATA

    -class pynetdicom.pdu_primitives.P_DATA[source]
    +class pynetdicom.pdu_primitives.P_DATA[source]

    A P-DATA primitive.

    @@ -158,7 +158,7 @@

    pynetdicom.pdu_primitives.P_DATA
    -__init__() None[source]
    +__init__() None[source]

    Methods

    @@ -179,11 +179,11 @@

    pynetdicom.pdu_primitives.P_DATA
    -property presentation_data_value_list: List[Tuple[int, bytes]]
    +property presentation_data_value_list: List[Tuple[int, bytes]]

    Get or set the Presentation Data Value List.

    Parameters:
    -

    presentation_data_value_list (list of [int, bytes]) – Contains one or more Presentation Data Values (PDV), each +

    presentation_data_value_list (list of [int, bytes]) – Contains one or more Presentation Data Values (PDV), each consisting of a Presentation Context ID and User Data values. The User Data values are taken from the Abstract Syntax and encoded in the Transfer Syntax identified by the Presentation diff --git a/dev/reference/generated/pynetdicom.pdu_primitives.SCP_SCU_RoleSelectionNegotiation.html b/dev/reference/generated/pynetdicom.pdu_primitives.SCP_SCU_RoleSelectionNegotiation.html index 60128cc00..c74e6d639 100644 --- a/dev/reference/generated/pynetdicom.pdu_primitives.SCP_SCU_RoleSelectionNegotiation.html +++ b/dev/reference/generated/pynetdicom.pdu_primitives.SCP_SCU_RoleSelectionNegotiation.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -126,10 +126,10 @@

    -

    pynetdicom.pdu_primitives.SCP_SCU_RoleSelectionNegotiation

    +

    pynetdicom.pdu_primitives.SCP_SCU_RoleSelectionNegotiation

    -class pynetdicom.pdu_primitives.SCP_SCU_RoleSelectionNegotiation[source]
    +class pynetdicom.pdu_primitives.SCP_SCU_RoleSelectionNegotiation[source]

    A representation of the SCP/SCU Role Selection Negotiation primitive.

    Allows peer AEs to negotiate the roles in which they will serve for each SOP Class or Meta SOP Class supported on the association. This negotiation @@ -159,7 +159,7 @@

    pynetdicom.pdu_primitives.SCP_SCU_RoleSelectionNegotiation
    -__init__() None[source]
    +__init__() None[source]

    Methods

    @@ -189,7 +189,7 @@

    pynetdicom.pdu_primitives.SCP_SCU_RoleSelectionNegotiation
    -from_primitive() SCP_SCU_RoleSelectionSubItem[source]
    +from_primitive() SCP_SCU_RoleSelectionSubItem[source]

    Convert the primitive to a PDU item ready to be encoded

    Returns:
    @@ -200,8 +200,8 @@

    pynetdicom.pdu_primitives.SCP_SCU_RoleSelectionNegotiationRaises:
      -
    • ValueError – If no SOP Class UID, SCU Role or SCP Role is set

    • -
    • ValueError – If SCU Role and SCP Role are both False

    • +
    • ValueError – If no SOP Class UID, SCU Role or SCP Role is set

    • +
    • ValueError – If SCU Role and SCP Role are both False

    @@ -209,42 +209,42 @@

    pynetdicom.pdu_primitives.SCP_SCU_RoleSelectionNegotiation
    -property scp_role: bool | None
    +property scp_role: bool | None

    Get or set the SCP Role.

    Parameters:
    -

    value (bool) – True if supported, False otherwise (default)

    +

    value (bool) – True if supported, False otherwise (default)

    Raises:
    -

    TypeError – If value is not a bool

    +

    TypeError – If value is not a bool

    -property scu_role: bool | None
    +property scu_role: bool | None

    Get or set the SCU Role.

    Parameters:
    -

    value (bool) – True if supported, False otherwise

    +

    value (bool) – True if supported, False otherwise

    Raises:
    -

    TypeError – If value is not a bool

    +

    TypeError – If value is not a bool

    -property sop_class_uid: UID | None
    +property sop_class_uid: UID | None

    Get or set the SOP Class UID.

    Parameters:
    -

    value (pydicom.uid.UID, bytes or str) – The corresponding Abstract Syntax UID

    +

    value (pydicom.uid.UID, bytes or str) – The corresponding Abstract Syntax UID

    Raises:
    -

    TypeError – If value is not a pydicom.uid.UID, bytes or str

    +

    TypeError – If value is not a pydicom.uid.UID, bytes or str

    diff --git a/dev/reference/generated/pynetdicom.pdu_primitives.SOPClassCommonExtendedNegotiation.html b/dev/reference/generated/pynetdicom.pdu_primitives.SOPClassCommonExtendedNegotiation.html index a12e2806b..cd4e14213 100644 --- a/dev/reference/generated/pynetdicom.pdu_primitives.SOPClassCommonExtendedNegotiation.html +++ b/dev/reference/generated/pynetdicom.pdu_primitives.SOPClassCommonExtendedNegotiation.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -126,10 +126,10 @@
    -

    pynetdicom.pdu_primitives.SOPClassCommonExtendedNegotiation

    +

    pynetdicom.pdu_primitives.SOPClassCommonExtendedNegotiation

    -class pynetdicom.pdu_primitives.SOPClassCommonExtendedNegotiation[source]
    +class pynetdicom.pdu_primitives.SOPClassCommonExtendedNegotiation[source]

    A representation of the SOP Class Common Extended Negotiation primitive.

    Allows peer AEs to exchange generic application information.

    The SOP Class Common Extended Negotiation is optional and there may only be @@ -152,7 +152,7 @@

    pynetdicom.pdu_primitives.SOPClassCommonExtendedNegotiation
    -__init__() None[source]
    +__init__() None[source]

    Methods

    @@ -182,7 +182,7 @@

    pynetdicom.pdu_primitives.SOPClassCommonExtendedNegotiation
    -from_primitive() SOPClassCommonExtendedNegotiationSubItem[source]
    +from_primitive() SOPClassCommonExtendedNegotiationSubItem[source]

    Convert the primitive to a PDU item ready to be encoded.

    Returns:
    @@ -192,24 +192,24 @@

    pynetdicom.pdu_primitives.SOPClassCommonExtendedNegotiation

    pdu_items.SOPClassCommonExtendedNegotiationSubItem

    Raises:
    -

    ValueError – If sop_class_uid or service_class_uid are not set

    +

    ValueError – If sop_class_uid or service_class_uid are not set

    -property related_general_sop_class_identification: List[UID]
    +property related_general_sop_class_identification: List[UID]

    Return the Related General SOP Class Identification.

    Parameters:
    -

    uid_list (list of (pydicom.uid.UID, bytes or str)) – A list containing UIDs to be used in the Related General SOP Class +

    uid_list (list of (pydicom.uid.UID, bytes or str)) – A list containing UIDs to be used in the Related General SOP Class Identification parameter

    Raises:
      -
    • TypeError – If uid_list is not a list

    • -
    • ValueError – If uid_list contains items that aren’t UIDs

    • +
    • TypeError – If uid_list is not a list

    • +
    • ValueError – If uid_list contains items that aren’t UIDs

    @@ -217,28 +217,28 @@

    pynetdicom.pdu_primitives.SOPClassCommonExtendedNegotiation
    -property service_class_uid: UID | None
    +property service_class_uid: UID | None

    Return the Service Class UID.

    Parameters:
    -

    value (pydicom.uid.UID, bytes or str) – The corresponding Service Class UID

    +

    value (pydicom.uid.UID, bytes or str) – The corresponding Service Class UID

    Raises:
    -

    TypeError – If value is not a pydicom.uid.UID, bytes or str

    +

    TypeError – If value is not a pydicom.uid.UID, bytes or str

    -property sop_class_uid: UID | None
    +property sop_class_uid: UID | None

    Return the SOP Class UID.

    Parameters:
    -

    value (pydicom.uid.UID, bytes or str) – The SOP Class UID

    +

    value (pydicom.uid.UID, bytes or str) – The SOP Class UID

    Raises:
    -

    TypeError – If value is not a pydicom.uid.UID, bytes or str

    +

    TypeError – If value is not a pydicom.uid.UID, bytes or str

    diff --git a/dev/reference/generated/pynetdicom.pdu_primitives.SOPClassExtendedNegotiation.html b/dev/reference/generated/pynetdicom.pdu_primitives.SOPClassExtendedNegotiation.html index c77eb0baa..2f1c7fa5e 100644 --- a/dev/reference/generated/pynetdicom.pdu_primitives.SOPClassExtendedNegotiation.html +++ b/dev/reference/generated/pynetdicom.pdu_primitives.SOPClassExtendedNegotiation.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -126,10 +126,10 @@
    -

    pynetdicom.pdu_primitives.SOPClassExtendedNegotiation

    +

    pynetdicom.pdu_primitives.SOPClassExtendedNegotiation

    -class pynetdicom.pdu_primitives.SOPClassExtendedNegotiation[source]
    +class pynetdicom.pdu_primitives.SOPClassExtendedNegotiation[source]

    A representation of the SOP Class Extended Negotiation primitive.

    Allows peer AEs to exchange application information defined by specific Service Class specifications. Each Service Class is required to document @@ -152,7 +152,7 @@

    pynetdicom.pdu_primitives.SOPClassExtendedNegotiation
    -__init__() None[source]
    +__init__() None[source]

    Methods

    @@ -179,7 +179,7 @@

    pynetdicom.pdu_primitives.SOPClassExtendedNegotiation
    -from_primitive() SOPClassExtendedNegotiationSubItem[source]
    +from_primitive() SOPClassExtendedNegotiationSubItem[source]

    Convert the primitive to a PDU item ready to be encoded.

    Returns:
    @@ -189,7 +189,7 @@

    pynetdicom.pdu_primitives.SOPClassExtendedNegotiation

    pdu_items.SOPClassExtendedNegotiationSubItem

    Raises:
    -

    ValueError – If sop_class_uid or service_class_application_information are +

    ValueError – If sop_class_uid or service_class_application_information are not set

    @@ -197,29 +197,29 @@

    pynetdicom.pdu_primitives.SOPClassExtendedNegotiation
    -property service_class_application_information: bytes | None
    +property service_class_application_information: bytes | None

    Get or set the Service Class Application Information.

    Parameters:
    -

    value (bytes) – The Service Class Application Information as per the Service Class +

    value (bytes) – The Service Class Application Information as per the Service Class Specifications (see PS3.4)

    Raises:
    -

    TypeError – If value is not a bytes object.

    +

    TypeError – If value is not a bytes object.

    -property sop_class_uid: UID | None
    +property sop_class_uid: UID | None

    Get or set the SOP Class UID.

    Parameters:
    -

    value (pydicom.uid.UID, bytes or str) – The corresponding Abstract Syntax UID

    +

    value (pydicom.uid.UID, bytes or str) – The corresponding Abstract Syntax UID

    Raises:
    -

    TypeError – If value is not a pydicom.uid.UID, bytes or str

    +

    TypeError – If value is not a pydicom.uid.UID, bytes or str

    diff --git a/dev/reference/generated/pynetdicom.pdu_primitives.UserIdentityNegotiation.html b/dev/reference/generated/pynetdicom.pdu_primitives.UserIdentityNegotiation.html index 9c6e9210c..d6d61900e 100644 --- a/dev/reference/generated/pynetdicom.pdu_primitives.UserIdentityNegotiation.html +++ b/dev/reference/generated/pynetdicom.pdu_primitives.UserIdentityNegotiation.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -126,10 +126,10 @@
    -

    pynetdicom.pdu_primitives.UserIdentityNegotiation

    +

    pynetdicom.pdu_primitives.UserIdentityNegotiation

    -class pynetdicom.pdu_primitives.UserIdentityNegotiation[source]
    +class pynetdicom.pdu_primitives.UserIdentityNegotiation[source]

    Representation of the User Identity Negotiation primitive.

    Allows peer AEs to exchange generic application information.

    The SOP Class Common Extended Negotiation is optional and there may only be @@ -169,7 +169,7 @@

    pynetdicom.pdu_primitives.UserIdentityNegotiation
    -__init__() None[source]
    +__init__() None[source]

    Methods

    @@ -205,7 +205,7 @@

    pynetdicom.pdu_primitives.UserIdentityNegotiation
    -from_primitive() UserIdentitySubItemAC | UserIdentitySubItemRQ[source]
    +from_primitive() UserIdentitySubItemAC | UserIdentitySubItemRQ[source]

    Convert the primitive to a PDU item ready to be encoded.

    Returns:
    @@ -216,9 +216,9 @@

    pynetdicom.pdu_primitives.UserIdentityNegotiation
    Raises:
      -
    • ValueError – If server_response is None and user_identity_type or primary_field +

    • ValueError – If server_response is None and user_identity_type or primary_field are None

    • -
    • ValueError – If server_response is None and user_identity_type is 2 and +

    • ValueError – If server_response is None and user_identity_type is 2 and secondary_field is None

    @@ -227,70 +227,70 @@

    pynetdicom.pdu_primitives.UserIdentityNegotiation
    -property positive_response_requested: bool
    +property positive_response_requested: bool

    Get or set Positive Response Requested.

    Parameters:
    -

    value (bool) – True if response requested, False otherwise

    +

    value (bool) – True if response requested, False otherwise

    Raises:
    -

    TypeError – If value is not a bool

    +

    TypeError – If value is not a bool

    -property primary_field: bytes | None
    +property primary_field: bytes | None

    Get or set Primary Field.

    Parameters:
    -

    value (bytes or None) – The username, Kerberos Service ticket or SAML assertion as a +

    value (bytes or None) – The username, Kerberos Service ticket or SAML assertion as a bytes object.

    Raises:
    -

    TypeError – If value is not bytes or None

    +

    TypeError – If value is not bytes or None

    -property secondary_field: bytes | None
    +property secondary_field: bytes | None

    Get or set the Secondary Field.

    Only used when User Identity Type is equal to 2.

    Parameters:
    -

    value (bytes) – The passcode as a bytes object

    +

    value (bytes) – The passcode as a bytes object

    -property server_response: bytes | None
    +property server_response: bytes | None

    Get or set the Server Response.

    A-ASSOCIATE-AC only.

    Parameters:
    -

    value (bytes or None) – The server response as a bytes object. The Kerberos Service +

    value (bytes or None) – The server response as a bytes object. The Kerberos Service ticket, SAML response or JSON web token if the user_identity_type is 3, 4 or 5. Shall be None if user_identity_type was 1 or 2.

    Raises:
    -

    TypeError – If value is not bytes or None

    +

    TypeError – If value is not bytes or None

    -property user_identity_type: int | None
    +property user_identity_type: int | None

    Return the User Identity Type.

    Parameters:
    -

    value (int) –

    One of the following:

    +

    value (int) –

    One of the following:

    • 1 - Username as string in UTF-8

    • 2 - Username as string in UTF-8 and passcode

    • @@ -302,8 +302,8 @@

      pynetdicom.pdu_primitives.UserIdentityNegotiation
      Raises:
        -
      • TypeError – If value is not an int or None

      • -
      • ValueError – If value is an int and is not 1, 2, 3 or 4

      • +
      • TypeError – If value is not an int or None

      • +
      • ValueError – If value is an int and is not 1, 2, 3 or 4

    diff --git a/dev/reference/generated/pynetdicom.presentation.AllStoragePresentationContexts.html b/dev/reference/generated/pynetdicom.presentation.AllStoragePresentationContexts.html index 539476219..9350a3ea6 100644 --- a/dev/reference/generated/pynetdicom.presentation.AllStoragePresentationContexts.html +++ b/dev/reference/generated/pynetdicom.presentation.AllStoragePresentationContexts.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -142,10 +142,10 @@
    -

    pynetdicom.presentation.AllStoragePresentationContexts

    +

    pynetdicom.presentation.AllStoragePresentationContexts

    -pynetdicom.presentation.AllStoragePresentationContexts = [Computed Radiography Image Storage, Digital X-Ray Image Storage - For Presentation, Digital X-Ray Image Storage - For Processing, Digital Mammography X-Ray Image Storage - For Presentation, Digital Mammography X-Ray Image Storage - For Processing, Digital Intra-Oral X-Ray Image Storage - For Presentation, Digital Intra-Oral X-Ray Image Storage - For Processing, Encapsulated PDF Storage, Encapsulated CDA Storage, Encapsulated STL Storage, Encapsulated OBJ Storage, Encapsulated MTL Storage, Grayscale Softcopy Presentation State Storage, Segmented Volume Rendering Volumetric Presentation State Storage, Multiple Volume Rendering Volumetric Presentation State Storage, Color Softcopy Presentation State Storage, Pseudo-Color Softcopy Presentation State Storage, Blending Softcopy Presentation State Storage, XA/XRF Grayscale Softcopy Presentation State Storage, Grayscale Planar MPR Volumetric Presentation State Storage, Compositing Planar MPR Volumetric Presentation State Storage, Advanced Blending Presentation State Storage, Volume Rendering Volumetric Presentation State Storage, X-Ray Angiographic Image Storage, Enhanced XA Image Storage, X-Ray Radiofluoroscopic Image Storage, Enhanced XRF Image Storage, Positron Emission Tomography Image Storage, Legacy Converted Enhanced PET Image Storage, X-Ray 3D Angiographic Image Storage, X-Ray 3D Craniofacial Image Storage, Breast Tomosynthesis Image Storage, Breast Projection X-Ray Image Storage - For Presentation, Breast Projection X-Ray Image Storage - For Processing, Enhanced PET Image Storage, Basic Structured Display Storage, Intravascular Optical Coherence Tomography Image Storage - For Presentation, Intravascular Optical Coherence Tomography Image Storage - For Processing, CT Image Storage, Enhanced CT Image Storage, Legacy Converted Enhanced CT Image Storage, Nuclear Medicine Image Storage, CT Performed Procedure Protocol Storage, XA Performed Procedure Protocol Storage, Ultrasound Multi-frame Image Storage, Parametric Map Storage, MR Image Storage, Enhanced MR Image Storage, MR Spectroscopy Storage, Enhanced MR Color Image Storage, Legacy Converted Enhanced MR Image Storage, RT Image Storage, RT Physician Intent Storage, RT Segment Annotation Storage, RT Radiation Set Storage, C-Arm Photon-Electron Radiation Storage, Tomotherapeutic Radiation Storage, Robotic-Arm Radiation Storage, RT Radiation Record Set Storage, RT Radiation Salvage Record Storage, Tomotherapeutic Radiation Record Storage, C-Arm Photon-Electron Radiation Record Storage, RT Dose Storage, Robotic Radiation Record Storage, RT Radiation Set Delivery Instruction Storage, RT Treatment Preparation Storage, RT Structure Set Storage, RT Beams Treatment Record Storage, RT Plan Storage, RT Brachy Treatment Record Storage, RT Treatment Summary Record Storage, RT Ion Plan Storage, RT Ion Beams Treatment Record Storage, Ultrasound Image Storage, Enhanced US Volume Storage, Raw Data Storage, Spatial Registration Storage, Spatial Fiducials Storage, Deformable Spatial Registration Storage, Segmentation Storage, Surface Segmentation Storage, Tractography Results Storage, Real World Value Mapping Storage, Surface Scan Mesh Storage, Surface Scan Point Cloud Storage, Secondary Capture Image Storage, Multi-frame Single Bit Secondary Capture Image Storage, Multi-frame Grayscale Byte Secondary Capture Image Storage, Multi-frame Grayscale Word Secondary Capture Image Storage, Multi-frame True Color Secondary Capture Image Storage, VL Endoscopic Image Storage, Video Endoscopic Image Storage, VL Microscopic Image Storage, Video Microscopic Image Storage, VL Slide-Coordinates Microscopic Image Storage, VL Photographic Image Storage, Video Photographic Image Storage, Ophthalmic Photography 8 Bit Image Storage, Ophthalmic Photography 16 Bit Image Storage, Stereometric Relationship Storage, Ophthalmic Tomography Image Storage, Wide Field Ophthalmic Photography Stereographic Projection Image Storage, Wide Field Ophthalmic Photography 3D Coordinates Image Storage, Ophthalmic Optical Coherence Tomography En Face Image Storage, Ophthalmic Optical Coherence Tomography B-scan Volume Analysis Storage, VL Whole Slide Microscopy Image Storage, Dermoscopic Photography Image Storage, Lensometry Measurements Storage, Autorefraction Measurements Storage, Keratometry Measurements Storage, Subjective Refraction Measurements Storage, Visual Acuity Measurements Storage, Spectacle Prescription Report Storage, Ophthalmic Axial Measurements Storage, Intraocular Lens Calculations Storage, Macular Grid Thickness and Volume Report Storage, Ophthalmic Visual Field Static Perimetry Measurements Storage, Ophthalmic Thickness Map Storage, Corneal Topography Map Storage, Basic Text SR Storage, Enhanced SR Storage, Comprehensive SR Storage, Comprehensive 3D SR Storage, Extensible SR Storage, Procedure Log Storage, Mammography CAD SR Storage, Key Object Selection Document Storage, Chest CAD SR Storage, X-Ray Radiation Dose SR Storage, Radiopharmaceutical Radiation Dose SR Storage, Colon CAD SR Storage, Implantation Plan SR Storage, Acquisition Context SR Storage, Simplified Adult Echo SR Storage, Patient Radiation Dose SR Storage, Planned Imaging Agent Administration SR Storage, Performed Imaging Agent Administration SR Storage, Enhanced X-Ray Radiation Dose SR Storage, 12-lead ECG Waveform Storage, General ECG Waveform Storage, Ambulatory ECG Waveform Storage, Hemodynamic Waveform Storage, Cardiac Electrophysiology Waveform Storage, Basic Voice Audio Waveform Storage, General Audio Waveform Storage, Arterial Pulse Waveform Storage, Respiratory Waveform Storage, Multi-channel Respiratory Waveform Storage, Routine Scalp Electroencephalogram Waveform Storage, Electromyogram Waveform Storage, Electrooculogram Waveform Storage, Sleep Electroencephalogram Waveform Storage, Body Position Waveform Storage, Content Assessment Results Storage, Microscopy Bulk Simple Annotations Storage, RT Brachy Application Setup Delivery Instruction Storage, RT Beams Delivery Instruction Storage]
    +pynetdicom.presentation.AllStoragePresentationContexts = [Computed Radiography Image Storage, Digital X-Ray Image Storage - For Presentation, Digital X-Ray Image Storage - For Processing, Digital Mammography X-Ray Image Storage - For Presentation, Digital Mammography X-Ray Image Storage - For Processing, Digital Intra-Oral X-Ray Image Storage - For Presentation, Digital Intra-Oral X-Ray Image Storage - For Processing, Encapsulated PDF Storage, Encapsulated CDA Storage, Encapsulated STL Storage, Encapsulated OBJ Storage, Encapsulated MTL Storage, Grayscale Softcopy Presentation State Storage, Segmented Volume Rendering Volumetric Presentation State Storage, Multiple Volume Rendering Volumetric Presentation State Storage, Color Softcopy Presentation State Storage, Pseudo-Color Softcopy Presentation State Storage, Blending Softcopy Presentation State Storage, XA/XRF Grayscale Softcopy Presentation State Storage, Grayscale Planar MPR Volumetric Presentation State Storage, Compositing Planar MPR Volumetric Presentation State Storage, Advanced Blending Presentation State Storage, Volume Rendering Volumetric Presentation State Storage, X-Ray Angiographic Image Storage, Enhanced XA Image Storage, X-Ray Radiofluoroscopic Image Storage, Enhanced XRF Image Storage, Positron Emission Tomography Image Storage, Legacy Converted Enhanced PET Image Storage, X-Ray 3D Angiographic Image Storage, X-Ray 3D Craniofacial Image Storage, Breast Tomosynthesis Image Storage, Breast Projection X-Ray Image Storage - For Presentation, Breast Projection X-Ray Image Storage - For Processing, Enhanced PET Image Storage, Basic Structured Display Storage, Intravascular Optical Coherence Tomography Image Storage - For Presentation, Intravascular Optical Coherence Tomography Image Storage - For Processing, CT Image Storage, Enhanced CT Image Storage, Legacy Converted Enhanced CT Image Storage, Nuclear Medicine Image Storage, CT Performed Procedure Protocol Storage, XA Performed Procedure Protocol Storage, Ultrasound Multi-frame Image Storage, Parametric Map Storage, MR Image Storage, Enhanced MR Image Storage, MR Spectroscopy Storage, Enhanced MR Color Image Storage, Legacy Converted Enhanced MR Image Storage, RT Image Storage, RT Physician Intent Storage, RT Segment Annotation Storage, RT Radiation Set Storage, C-Arm Photon-Electron Radiation Storage, Tomotherapeutic Radiation Storage, Robotic-Arm Radiation Storage, RT Radiation Record Set Storage, RT Radiation Salvage Record Storage, Tomotherapeutic Radiation Record Storage, C-Arm Photon-Electron Radiation Record Storage, RT Dose Storage, Robotic Radiation Record Storage, RT Radiation Set Delivery Instruction Storage, RT Treatment Preparation Storage, RT Structure Set Storage, RT Beams Treatment Record Storage, RT Plan Storage, RT Brachy Treatment Record Storage, RT Treatment Summary Record Storage, RT Ion Plan Storage, RT Ion Beams Treatment Record Storage, Ultrasound Image Storage, Enhanced US Volume Storage, Raw Data Storage, Spatial Registration Storage, Spatial Fiducials Storage, Deformable Spatial Registration Storage, Segmentation Storage, Surface Segmentation Storage, Tractography Results Storage, Real World Value Mapping Storage, Surface Scan Mesh Storage, Surface Scan Point Cloud Storage, Secondary Capture Image Storage, Multi-frame Single Bit Secondary Capture Image Storage, Multi-frame Grayscale Byte Secondary Capture Image Storage, Multi-frame Grayscale Word Secondary Capture Image Storage, Multi-frame True Color Secondary Capture Image Storage, VL Endoscopic Image Storage, Video Endoscopic Image Storage, VL Microscopic Image Storage, Video Microscopic Image Storage, VL Slide-Coordinates Microscopic Image Storage, VL Photographic Image Storage, Video Photographic Image Storage, Ophthalmic Photography 8 Bit Image Storage, Ophthalmic Photography 16 Bit Image Storage, Stereometric Relationship Storage, Ophthalmic Tomography Image Storage, Wide Field Ophthalmic Photography Stereographic Projection Image Storage, Wide Field Ophthalmic Photography 3D Coordinates Image Storage, Ophthalmic Optical Coherence Tomography En Face Image Storage, Ophthalmic Optical Coherence Tomography B-scan Volume Analysis Storage, VL Whole Slide Microscopy Image Storage, Dermoscopic Photography Image Storage, Lensometry Measurements Storage, Autorefraction Measurements Storage, Keratometry Measurements Storage, Subjective Refraction Measurements Storage, Visual Acuity Measurements Storage, Spectacle Prescription Report Storage, Ophthalmic Axial Measurements Storage, Intraocular Lens Calculations Storage, Macular Grid Thickness and Volume Report Storage, Ophthalmic Visual Field Static Perimetry Measurements Storage, Ophthalmic Thickness Map Storage, Corneal Topography Map Storage, Basic Text SR Storage, Enhanced SR Storage, Comprehensive SR Storage, Comprehensive 3D SR Storage, Extensible SR Storage, Procedure Log Storage, Mammography CAD SR Storage, Key Object Selection Document Storage, Chest CAD SR Storage, X-Ray Radiation Dose SR Storage, Radiopharmaceutical Radiation Dose SR Storage, Colon CAD SR Storage, Implantation Plan SR Storage, Acquisition Context SR Storage, Simplified Adult Echo SR Storage, Patient Radiation Dose SR Storage, Planned Imaging Agent Administration SR Storage, Performed Imaging Agent Administration SR Storage, Enhanced X-Ray Radiation Dose SR Storage, 12-lead ECG Waveform Storage, General ECG Waveform Storage, Ambulatory ECG Waveform Storage, Hemodynamic Waveform Storage, Cardiac Electrophysiology Waveform Storage, Basic Voice Audio Waveform Storage, General Audio Waveform Storage, Arterial Pulse Waveform Storage, Respiratory Waveform Storage, Multi-channel Respiratory Waveform Storage, Routine Scalp Electroencephalogram Waveform Storage, Electromyogram Waveform Storage, Electrooculogram Waveform Storage, Sleep Electroencephalogram Waveform Storage, Body Position Waveform Storage, Content Assessment Results Storage, Microscopy Bulk Simple Annotations Storage, RT Brachy Application Setup Delivery Instruction Storage, RT Beams Delivery Instruction Storage]

    Pre-built presentation contexts for Storage containing all SOP Classes.

    diff --git a/dev/reference/generated/pynetdicom.presentation.ApplicationEventLoggingPresentationContexts.html b/dev/reference/generated/pynetdicom.presentation.ApplicationEventLoggingPresentationContexts.html index c9cbf838b..015f2ba38 100644 --- a/dev/reference/generated/pynetdicom.presentation.ApplicationEventLoggingPresentationContexts.html +++ b/dev/reference/generated/pynetdicom.presentation.ApplicationEventLoggingPresentationContexts.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -142,10 +142,10 @@
    -

    pynetdicom.presentation.ApplicationEventLoggingPresentationContexts

    +

    pynetdicom.presentation.ApplicationEventLoggingPresentationContexts

    -pynetdicom.presentation.ApplicationEventLoggingPresentationContexts = [Procedural Event Logging SOP Class, Substance Administration Logging SOP Class]
    +pynetdicom.presentation.ApplicationEventLoggingPresentationContexts = [Procedural Event Logging SOP Class, Substance Administration Logging SOP Class]

    Pre-built presentation contexts for Application Event Logging.

    diff --git a/dev/reference/generated/pynetdicom.presentation.BasicWorklistManagementPresentationContexts.html b/dev/reference/generated/pynetdicom.presentation.BasicWorklistManagementPresentationContexts.html index 0636fef68..a0fd9a1f8 100644 --- a/dev/reference/generated/pynetdicom.presentation.BasicWorklistManagementPresentationContexts.html +++ b/dev/reference/generated/pynetdicom.presentation.BasicWorklistManagementPresentationContexts.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -142,10 +142,10 @@
    -

    pynetdicom.presentation.BasicWorklistManagementPresentationContexts

    +

    pynetdicom.presentation.BasicWorklistManagementPresentationContexts

    -pynetdicom.presentation.BasicWorklistManagementPresentationContexts = [Modality Worklist Information Model - FIND]
    +pynetdicom.presentation.BasicWorklistManagementPresentationContexts = [Modality Worklist Information Model - FIND]

    Pre-built presentation contexts for Basic Worklist Management.

    diff --git a/dev/reference/generated/pynetdicom.presentation.ColorPalettePresentationContexts.html b/dev/reference/generated/pynetdicom.presentation.ColorPalettePresentationContexts.html index 98d569a73..67702d5cd 100644 --- a/dev/reference/generated/pynetdicom.presentation.ColorPalettePresentationContexts.html +++ b/dev/reference/generated/pynetdicom.presentation.ColorPalettePresentationContexts.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -142,10 +142,10 @@
    -

    pynetdicom.presentation.ColorPalettePresentationContexts

    +

    pynetdicom.presentation.ColorPalettePresentationContexts

    -pynetdicom.presentation.ColorPalettePresentationContexts = [Color Palette Query/Retrieve Information Model - FIND, Color Palette Query/Retrieve Information Model - MOVE, Color Palette Query/Retrieve Information Model - GET]
    +pynetdicom.presentation.ColorPalettePresentationContexts = [Color Palette Query/Retrieve Information Model - FIND, Color Palette Query/Retrieve Information Model - MOVE, Color Palette Query/Retrieve Information Model - GET]

    Pre-built presentation contexts for Color Palette Query/Retrieve.

    diff --git a/dev/reference/generated/pynetdicom.presentation.DefinedProcedureProtocolPresentationContexts.html b/dev/reference/generated/pynetdicom.presentation.DefinedProcedureProtocolPresentationContexts.html index e45a3e451..8d7ea86de 100644 --- a/dev/reference/generated/pynetdicom.presentation.DefinedProcedureProtocolPresentationContexts.html +++ b/dev/reference/generated/pynetdicom.presentation.DefinedProcedureProtocolPresentationContexts.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -142,10 +142,10 @@
    -

    pynetdicom.presentation.DefinedProcedureProtocolPresentationContexts

    +

    pynetdicom.presentation.DefinedProcedureProtocolPresentationContexts

    -pynetdicom.presentation.DefinedProcedureProtocolPresentationContexts = [Defined Procedure Protocol Information Model - FIND, Defined Procedure Protocol Information Model - MOVE, Defined Procedure Protocol Information Model - GET]
    +pynetdicom.presentation.DefinedProcedureProtocolPresentationContexts = [Defined Procedure Protocol Information Model - FIND, Defined Procedure Protocol Information Model - MOVE, Defined Procedure Protocol Information Model - GET]

    Pre-built presentation contexts for Defined Procedure Protocol Query/Retrieve.

    diff --git a/dev/reference/generated/pynetdicom.presentation.DisplaySystemPresentationContexts.html b/dev/reference/generated/pynetdicom.presentation.DisplaySystemPresentationContexts.html index c030f0faf..bab3123e1 100644 --- a/dev/reference/generated/pynetdicom.presentation.DisplaySystemPresentationContexts.html +++ b/dev/reference/generated/pynetdicom.presentation.DisplaySystemPresentationContexts.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -142,10 +142,10 @@
    -

    pynetdicom.presentation.DisplaySystemPresentationContexts

    +

    pynetdicom.presentation.DisplaySystemPresentationContexts

    -pynetdicom.presentation.DisplaySystemPresentationContexts = [Display System SOP Class]
    +pynetdicom.presentation.DisplaySystemPresentationContexts = [Display System SOP Class]

    Pre-built presentation contexts for Display System Management.

    diff --git a/dev/reference/generated/pynetdicom.presentation.HangingProtocolPresentationContexts.html b/dev/reference/generated/pynetdicom.presentation.HangingProtocolPresentationContexts.html index b8ef0eeaa..ab34edd79 100644 --- a/dev/reference/generated/pynetdicom.presentation.HangingProtocolPresentationContexts.html +++ b/dev/reference/generated/pynetdicom.presentation.HangingProtocolPresentationContexts.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -142,10 +142,10 @@
    -

    pynetdicom.presentation.HangingProtocolPresentationContexts

    +

    pynetdicom.presentation.HangingProtocolPresentationContexts

    -pynetdicom.presentation.HangingProtocolPresentationContexts = [Hanging Protocol Information Model - FIND, Hanging Protocol Information Model - MOVE, Hanging Protocol Information Model - GET]
    +pynetdicom.presentation.HangingProtocolPresentationContexts = [Hanging Protocol Information Model - FIND, Hanging Protocol Information Model - MOVE, Hanging Protocol Information Model - GET]

    Pre-built presentation contexts for Hanging Protocol Query/Retrieve.

    diff --git a/dev/reference/generated/pynetdicom.presentation.ImplantTemplatePresentationContexts.html b/dev/reference/generated/pynetdicom.presentation.ImplantTemplatePresentationContexts.html index 1bcf7e739..2490b8a7e 100644 --- a/dev/reference/generated/pynetdicom.presentation.ImplantTemplatePresentationContexts.html +++ b/dev/reference/generated/pynetdicom.presentation.ImplantTemplatePresentationContexts.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -142,10 +142,10 @@
    -

    pynetdicom.presentation.ImplantTemplatePresentationContexts

    +

    pynetdicom.presentation.ImplantTemplatePresentationContexts

    -pynetdicom.presentation.ImplantTemplatePresentationContexts = [Generic Implant Template Information Model - FIND, Generic Implant Template Information Model - MOVE, Generic Implant Template Information Model - GET, Implant Assembly Template Information Model - FIND, Implant Assembly Template Information Model - MOVE, Implant Assembly Template Information Model - GET, Implant Template Group Information Model - FIND, Implant Template Group Information Model - MOVE, Implant Template Group Information Model - GET]
    +pynetdicom.presentation.ImplantTemplatePresentationContexts = [Generic Implant Template Information Model - FIND, Generic Implant Template Information Model - MOVE, Generic Implant Template Information Model - GET, Implant Assembly Template Information Model - FIND, Implant Assembly Template Information Model - MOVE, Implant Assembly Template Information Model - GET, Implant Template Group Information Model - FIND, Implant Template Group Information Model - MOVE, Implant Template Group Information Model - GET]

    Pre-built presentation contexts for Implant Template Query/Retrieve.

    diff --git a/dev/reference/generated/pynetdicom.presentation.InstanceAvailabilityPresentationContexts.html b/dev/reference/generated/pynetdicom.presentation.InstanceAvailabilityPresentationContexts.html index 6f41e908b..1d7a462c0 100644 --- a/dev/reference/generated/pynetdicom.presentation.InstanceAvailabilityPresentationContexts.html +++ b/dev/reference/generated/pynetdicom.presentation.InstanceAvailabilityPresentationContexts.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -142,10 +142,10 @@
    -

    pynetdicom.presentation.InstanceAvailabilityPresentationContexts

    +

    pynetdicom.presentation.InstanceAvailabilityPresentationContexts

    -pynetdicom.presentation.InstanceAvailabilityPresentationContexts = [Instance Availability Notification SOP Class]
    +pynetdicom.presentation.InstanceAvailabilityPresentationContexts = [Instance Availability Notification SOP Class]

    Pre-built presentation contexts for Instance Availability Notification.

    diff --git a/dev/reference/generated/pynetdicom.presentation.MediaCreationManagementPresentationContexts.html b/dev/reference/generated/pynetdicom.presentation.MediaCreationManagementPresentationContexts.html index 896b2bc1b..626b87f44 100644 --- a/dev/reference/generated/pynetdicom.presentation.MediaCreationManagementPresentationContexts.html +++ b/dev/reference/generated/pynetdicom.presentation.MediaCreationManagementPresentationContexts.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -142,10 +142,10 @@
    -

    pynetdicom.presentation.MediaCreationManagementPresentationContexts

    +

    pynetdicom.presentation.MediaCreationManagementPresentationContexts

    -pynetdicom.presentation.MediaCreationManagementPresentationContexts = [Media Creation Management SOP Class UID]
    +pynetdicom.presentation.MediaCreationManagementPresentationContexts = [Media Creation Management SOP Class UID]

    Pre-built presentation contexts for Media Creation Management.

    diff --git a/dev/reference/generated/pynetdicom.presentation.MediaStoragePresentationContexts.html b/dev/reference/generated/pynetdicom.presentation.MediaStoragePresentationContexts.html index b0ef31780..fd063c3c4 100644 --- a/dev/reference/generated/pynetdicom.presentation.MediaStoragePresentationContexts.html +++ b/dev/reference/generated/pynetdicom.presentation.MediaStoragePresentationContexts.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -142,10 +142,10 @@
    -

    pynetdicom.presentation.MediaStoragePresentationContexts

    +

    pynetdicom.presentation.MediaStoragePresentationContexts

    -pynetdicom.presentation.MediaStoragePresentationContexts = [Media Storage Directory Storage]
    +pynetdicom.presentation.MediaStoragePresentationContexts = [Media Storage Directory Storage]

    Pre-built presentation contexts for Media Storage.

    diff --git a/dev/reference/generated/pynetdicom.presentation.ModalityPerformedPresentationContexts.html b/dev/reference/generated/pynetdicom.presentation.ModalityPerformedPresentationContexts.html index 9694fc1c6..ee49aa6df 100644 --- a/dev/reference/generated/pynetdicom.presentation.ModalityPerformedPresentationContexts.html +++ b/dev/reference/generated/pynetdicom.presentation.ModalityPerformedPresentationContexts.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -142,10 +142,10 @@
    -

    pynetdicom.presentation.ModalityPerformedPresentationContexts

    +

    pynetdicom.presentation.ModalityPerformedPresentationContexts

    -pynetdicom.presentation.ModalityPerformedPresentationContexts = [Modality Performed Procedure Step SOP Class, Modality Performed Procedure Step Retrieve SOP Class, Modality Performed Procedure Step Notification SOP Class]
    +pynetdicom.presentation.ModalityPerformedPresentationContexts = [Modality Performed Procedure Step SOP Class, Modality Performed Procedure Step Retrieve SOP Class, Modality Performed Procedure Step Notification SOP Class]

    Pre-built presentation contexts for Modality Performed Procedure Step.

    diff --git a/dev/reference/generated/pynetdicom.presentation.NonPatientObjectPresentationContexts.html b/dev/reference/generated/pynetdicom.presentation.NonPatientObjectPresentationContexts.html index 84ad2fd24..ff3944d61 100644 --- a/dev/reference/generated/pynetdicom.presentation.NonPatientObjectPresentationContexts.html +++ b/dev/reference/generated/pynetdicom.presentation.NonPatientObjectPresentationContexts.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -142,10 +142,10 @@
    -

    pynetdicom.presentation.NonPatientObjectPresentationContexts

    +

    pynetdicom.presentation.NonPatientObjectPresentationContexts

    -pynetdicom.presentation.NonPatientObjectPresentationContexts = [CT Defined Procedure Protocol Storage, Protocol Approval Storage, XA Defined Procedure Protocol Storage, Hanging Protocol Storage, Color Palette Storage, Generic Implant Template Storage, Implant Assembly Template Storage, Implant Template Group Storage]
    +pynetdicom.presentation.NonPatientObjectPresentationContexts = [CT Defined Procedure Protocol Storage, Protocol Approval Storage, XA Defined Procedure Protocol Storage, Hanging Protocol Storage, Color Palette Storage, Generic Implant Template Storage, Implant Assembly Template Storage, Implant Template Group Storage]

    Pre-built presentation contexts for Non-Patient Object Storage.

    diff --git a/dev/reference/generated/pynetdicom.presentation.PresentationContext.html b/dev/reference/generated/pynetdicom.presentation.PresentationContext.html index 73418cebb..0d2c039e9 100644 --- a/dev/reference/generated/pynetdicom.presentation.PresentationContext.html +++ b/dev/reference/generated/pynetdicom.presentation.PresentationContext.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -122,10 +122,10 @@
    -

    pynetdicom.presentation.PresentationContext

    +

    pynetdicom.presentation.PresentationContext

    -class pynetdicom.presentation.PresentationContext[source]
    +class pynetdicom.presentation.PresentationContext[source]

    A Presentation Context primitive.

    Rules

      @@ -257,13 +257,13 @@

      pynetdicom.presentation.PresentationContext
      -result
      +result

      If part of an A-ASSOCIATE (request) then None. If part of an A-ASSOCIATE (response) then one of 0x00, 0x01, 0x02, 0x03, 0x04.

      Type:
      -

      int or None

      +

      int or None

    @@ -277,7 +277,7 @@

    pynetdicom.presentation.PresentationContext
    -__init__() None[source]
    +__init__() None[source]

    Create a new object.

    @@ -296,7 +296,7 @@

    pynetdicom.presentation.PresentationContext

    - + @@ -305,10 +305,10 @@

    pynetdicom.presentation.PresentationContextTrue if can act as an SCU for the context.

    - + - + @@ -317,39 +317,39 @@

    pynetdicom.presentation.PresentationContext

    - + - +

    abstract_syntax

    Get or set the context's Abstract Syntax as UID.

    Get or set the context's Abstract Syntax as UID.

    as_scp

    Return True if can act as an SCP for the context.

    as_tuple

    Return a namedtuple representation of the presentation context.

    Return a namedtuple representation of the presentation context.

    context_id

    Return the context's ID parameter as an int.

    Return the context's ID parameter as an int.

    scp_role

    Get or set if a proposed SCP role will be accepted.

    status

    Return a descriptive str of the context's Result.

    Return a descriptive str of the context's Result.

    transfer_syntax

    Get or set the context's Transfer Syntaxes as a list.

    Get or set the context's Transfer Syntaxes as a list.

    -property abstract_syntax: UID | None
    +property abstract_syntax: UID | None

    Get or set the context’s Abstract Syntax as -UID.

    +UID.

    Parameters:
    -

    value (str or bytes or pydicom.uid.UID) – The abstract syntax UID.

    +

    value (str or bytes or pydicom.uid.UID) – The abstract syntax UID.

    -add_transfer_syntax(syntax: None | str | bytes | UID) None[source]
    +add_transfer_syntax(syntax: None | str | bytes | UID) None[source]

    Append a transfer syntax to the presentation context.

    Parameters:
    -

    syntax (pydicom.uid.UID, bytes or str) – The transfer syntax to add to the presentation context.

    +

    syntax (pydicom.uid.UID, bytes or str) – The transfer syntax to add to the presentation context.

    -property as_scp: bool | None
    +property as_scp: bool | None

    Return True if can act as an SCP for the context.

    If True then the association Acceptor can act as SCP for the current context, otherwise it cannot. A non-None value is only @@ -358,7 +358,7 @@

    pynetdicom.presentation.PresentationContext
    -property as_scu: bool | None
    +property as_scu: bool | None

    Return True if can act as an SCU for the context.

    If True then the association Acceptor can act as SCU for the current context, otherwise it cannot. A non-None value is only @@ -367,8 +367,8 @@

    pynetdicom.presentation.PresentationContext
    -property as_tuple: PresentationContextTuple
    -

    Return a namedtuple representation +property as_tuple: PresentationContextTuple +

    Return a namedtuple representation of the presentation context.

    Intended to be used when the result is 0x00 (accepted) as only the first transfer syntax item is returned in the tuple.

    @@ -384,17 +384,17 @@

    pynetdicom.presentation.PresentationContext
    -property context_id: int | None
    -

    Return the context’s ID parameter as an int.

    +property context_id: int | None +

    Return the context’s ID parameter as an int.

    -property scp_role: bool | None
    +property scp_role: bool | None

    Get or set if a proposed SCP role will be accepted.

    Parameters:
    -

    val (bool or None) – If True then accept if the association Requestor proposes +

    val (bool or None) – If True then accept if the association Requestor proposes the SCP role for itself, False to reject the proposal. If None (default) then no SCP/SCU Role Selection reply will be sent. If either of scu_role or scp_role is None @@ -405,11 +405,11 @@

    pynetdicom.presentation.PresentationContext
    -property scu_role: bool | None
    +property scu_role: bool | None

    Get or set if a proposed SCU role will be accepted.

    Parameters:
    -

    val (bool or None) – If True then accept if the association Requestor proposes +

    val (bool or None) – If True then accept if the association Requestor proposes the SCU role for itself, False to reject the proposal. If None (default) then no SCP/SCU Role Selection reply will be sent. If either of scu_role or scp_role is None @@ -420,28 +420,28 @@

    pynetdicom.presentation.PresentationContext
    -property status: str
    -

    Return a descriptive str of the context’s Result.

    +property status: str +

    Return a descriptive str of the context’s Result.

    Returns:

    The string representation of the negotiated result.

    Return type:
    -

    str

    +

    str

    -property transfer_syntax: List[UID]
    -

    Get or set the context’s Transfer Syntaxes as a list.

    +property transfer_syntax: List[UID] +

    Get or set the context’s Transfer Syntaxes as a list.

    Returns:

    The context’s transfer syntaxes.

    Return type:
    -

    list of pydicom.uid.UID

    +

    list of pydicom.uid.UID

    diff --git a/dev/reference/generated/pynetdicom.presentation.PresentationContextTuple.html b/dev/reference/generated/pynetdicom.presentation.PresentationContextTuple.html index b9d701eff..cf2f7c2de 100644 --- a/dev/reference/generated/pynetdicom.presentation.PresentationContextTuple.html +++ b/dev/reference/generated/pynetdicom.presentation.PresentationContextTuple.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -122,15 +122,15 @@
    -

    pynetdicom.presentation.PresentationContextTuple

    +

    pynetdicom.presentation.PresentationContextTuple

    -class pynetdicom.presentation.PresentationContextTuple(context_id: int, abstract_syntax: UID, transfer_syntax: UID)[source]
    -

    namedtuple representation of an accepted +class pynetdicom.presentation.PresentationContextTuple(context_id: int, abstract_syntax: UID, transfer_syntax: UID)[source] +

    namedtuple representation of an accepted PresentationContext.

    -__init__()
    +__init__()

    Methods

    @@ -163,19 +163,19 @@

    pynetdicom.presentation.PresentationContextTuple
    -abstract_syntax: UID
    +abstract_syntax: UID

    Alias for field number 1

    -context_id: int
    +context_id: int

    Alias for field number 0

    -transfer_syntax: UID
    +transfer_syntax: UID

    Alias for field number 2

    diff --git a/dev/reference/generated/pynetdicom.presentation.PrintManagementPresentationContexts.html b/dev/reference/generated/pynetdicom.presentation.PrintManagementPresentationContexts.html index 91a418689..2590c283b 100644 --- a/dev/reference/generated/pynetdicom.presentation.PrintManagementPresentationContexts.html +++ b/dev/reference/generated/pynetdicom.presentation.PrintManagementPresentationContexts.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -142,10 +142,10 @@
    -

    pynetdicom.presentation.PrintManagementPresentationContexts

    +

    pynetdicom.presentation.PrintManagementPresentationContexts

    -pynetdicom.presentation.PrintManagementPresentationContexts = [Basic Film Session SOP Class, Print Job SOP Class, Basic Annotation Box SOP Class, Printer SOP Class, Printer Configuration Retrieval SOP Class, Basic Color Print Management Meta SOP Class, Basic Film Box SOP Class, Presentation LUT SOP Class, Basic Grayscale Image Box SOP Class, Basic Color Image Box SOP Class, Basic Grayscale Print Management Meta SOP Class]
    +pynetdicom.presentation.PrintManagementPresentationContexts = [Basic Film Session SOP Class, Print Job SOP Class, Basic Annotation Box SOP Class, Printer SOP Class, Printer Configuration Retrieval SOP Class, Basic Color Print Management Meta SOP Class, Basic Film Box SOP Class, Presentation LUT SOP Class, Basic Grayscale Image Box SOP Class, Basic Color Image Box SOP Class, Basic Grayscale Print Management Meta SOP Class]

    Pre-built presentation contexts for Print Management.

    diff --git a/dev/reference/generated/pynetdicom.presentation.ProcedureStepPresentationContexts.html b/dev/reference/generated/pynetdicom.presentation.ProcedureStepPresentationContexts.html index e619d8a61..3b1dbd14e 100644 --- a/dev/reference/generated/pynetdicom.presentation.ProcedureStepPresentationContexts.html +++ b/dev/reference/generated/pynetdicom.presentation.ProcedureStepPresentationContexts.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -142,10 +142,10 @@
    -

    pynetdicom.presentation.ProcedureStepPresentationContexts

    +

    pynetdicom.presentation.ProcedureStepPresentationContexts

    -pynetdicom.presentation.ProcedureStepPresentationContexts = [Modality Performed Procedure Step SOP Class, Modality Performed Procedure Step Retrieve SOP Class, Modality Performed Procedure Step Notification SOP Class]
    +pynetdicom.presentation.ProcedureStepPresentationContexts = [Modality Performed Procedure Step SOP Class, Modality Performed Procedure Step Retrieve SOP Class, Modality Performed Procedure Step Notification SOP Class]

    Pre-built presentation contexts for Procedure Step.

    diff --git a/dev/reference/generated/pynetdicom.presentation.ProtocolApprovalPresentationContexts.html b/dev/reference/generated/pynetdicom.presentation.ProtocolApprovalPresentationContexts.html index dfa5274b9..2b2a95e97 100644 --- a/dev/reference/generated/pynetdicom.presentation.ProtocolApprovalPresentationContexts.html +++ b/dev/reference/generated/pynetdicom.presentation.ProtocolApprovalPresentationContexts.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -142,10 +142,10 @@
    -

    pynetdicom.presentation.ProtocolApprovalPresentationContexts

    +

    pynetdicom.presentation.ProtocolApprovalPresentationContexts

    -pynetdicom.presentation.ProtocolApprovalPresentationContexts = [Protocol Approval Information Model - FIND, Protocol Approval Information Model - MOVE, Protocol Approval Information Model - GET]
    +pynetdicom.presentation.ProtocolApprovalPresentationContexts = [Protocol Approval Information Model - FIND, Protocol Approval Information Model - MOVE, Protocol Approval Information Model - GET]

    Pre-built presentation contexts for Protocol Approval Query/Retrieve.

    diff --git a/dev/reference/generated/pynetdicom.presentation.QueryRetrievePresentationContexts.html b/dev/reference/generated/pynetdicom.presentation.QueryRetrievePresentationContexts.html index 449f46e13..4af4a6fe5 100644 --- a/dev/reference/generated/pynetdicom.presentation.QueryRetrievePresentationContexts.html +++ b/dev/reference/generated/pynetdicom.presentation.QueryRetrievePresentationContexts.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -142,10 +142,10 @@
    -

    pynetdicom.presentation.QueryRetrievePresentationContexts

    +

    pynetdicom.presentation.QueryRetrievePresentationContexts

    -pynetdicom.presentation.QueryRetrievePresentationContexts = [Patient Root Query/Retrieve Information Model - FIND, Patient Root Query/Retrieve Information Model - MOVE, Patient Root Query/Retrieve Information Model - GET, Study Root Query/Retrieve Information Model - FIND, Study Root Query/Retrieve Information Model - MOVE, Study Root Query/Retrieve Information Model - GET, Patient/Study Only Query/Retrieve Information Model - FIND, Patient/Study Only Query/Retrieve Information Model - MOVE, Patient/Study Only Query/Retrieve Information Model - GET, Composite Instance Root Retrieve - MOVE, Composite Instance Root Retrieve - GET, Composite Instance Retrieve Without Bulk Data - GET]
    +pynetdicom.presentation.QueryRetrievePresentationContexts = [Patient Root Query/Retrieve Information Model - FIND, Patient Root Query/Retrieve Information Model - MOVE, Patient Root Query/Retrieve Information Model - GET, Study Root Query/Retrieve Information Model - FIND, Study Root Query/Retrieve Information Model - MOVE, Study Root Query/Retrieve Information Model - GET, Patient/Study Only Query/Retrieve Information Model - FIND, Patient/Study Only Query/Retrieve Information Model - MOVE, Patient/Study Only Query/Retrieve Information Model - GET, Composite Instance Root Retrieve - MOVE, Composite Instance Root Retrieve - GET, Composite Instance Retrieve Without Bulk Data - GET]

    Pre-built presentation contexts for Query/Retrieve.

    diff --git a/dev/reference/generated/pynetdicom.presentation.RTMachineVerificationPresentationContexts.html b/dev/reference/generated/pynetdicom.presentation.RTMachineVerificationPresentationContexts.html index 799dd7630..755e1d56a 100644 --- a/dev/reference/generated/pynetdicom.presentation.RTMachineVerificationPresentationContexts.html +++ b/dev/reference/generated/pynetdicom.presentation.RTMachineVerificationPresentationContexts.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -142,10 +142,10 @@
    -

    pynetdicom.presentation.RTMachineVerificationPresentationContexts

    +

    pynetdicom.presentation.RTMachineVerificationPresentationContexts

    -pynetdicom.presentation.RTMachineVerificationPresentationContexts = [RT Conventional Machine Verification, RT Ion Machine Verification]
    +pynetdicom.presentation.RTMachineVerificationPresentationContexts = [RT Conventional Machine Verification, RT Ion Machine Verification]

    Pre-built presentation contexts for RT Machine Verification.

    diff --git a/dev/reference/generated/pynetdicom.presentation.RelevantPatientInformationPresentationContexts.html b/dev/reference/generated/pynetdicom.presentation.RelevantPatientInformationPresentationContexts.html index a598517d8..6bdae1fe4 100644 --- a/dev/reference/generated/pynetdicom.presentation.RelevantPatientInformationPresentationContexts.html +++ b/dev/reference/generated/pynetdicom.presentation.RelevantPatientInformationPresentationContexts.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -142,10 +142,10 @@
    -

    pynetdicom.presentation.RelevantPatientInformationPresentationContexts

    +

    pynetdicom.presentation.RelevantPatientInformationPresentationContexts

    -pynetdicom.presentation.RelevantPatientInformationPresentationContexts = [General Relevant Patient Information Query, Breast Imaging Relevant Patient Information Query, Cardiac Relevant Patient Information Query]
    +pynetdicom.presentation.RelevantPatientInformationPresentationContexts = [General Relevant Patient Information Query, Breast Imaging Relevant Patient Information Query, Cardiac Relevant Patient Information Query]

    Pre-built presentation contexts for Relevant Patient Information Query.

    diff --git a/dev/reference/generated/pynetdicom.presentation.StorageCommitmentPresentationContexts.html b/dev/reference/generated/pynetdicom.presentation.StorageCommitmentPresentationContexts.html index f03958829..15b8899bb 100644 --- a/dev/reference/generated/pynetdicom.presentation.StorageCommitmentPresentationContexts.html +++ b/dev/reference/generated/pynetdicom.presentation.StorageCommitmentPresentationContexts.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -142,10 +142,10 @@
    -

    pynetdicom.presentation.StorageCommitmentPresentationContexts

    +

    pynetdicom.presentation.StorageCommitmentPresentationContexts

    -pynetdicom.presentation.StorageCommitmentPresentationContexts = [Storage Commitment Push Model SOP Class]
    +pynetdicom.presentation.StorageCommitmentPresentationContexts = [Storage Commitment Push Model SOP Class]

    Pre-built presentation contexts for Storage Commitment.

    diff --git a/dev/reference/generated/pynetdicom.presentation.StoragePresentationContexts.html b/dev/reference/generated/pynetdicom.presentation.StoragePresentationContexts.html index 3cae7ebd1..95c99d691 100644 --- a/dev/reference/generated/pynetdicom.presentation.StoragePresentationContexts.html +++ b/dev/reference/generated/pynetdicom.presentation.StoragePresentationContexts.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -142,10 +142,10 @@
    -

    pynetdicom.presentation.StoragePresentationContexts

    +

    pynetdicom.presentation.StoragePresentationContexts

    -pynetdicom.presentation.StoragePresentationContexts = [Computed Radiography Image Storage, Digital X-Ray Image Storage - For Presentation, Digital X-Ray Image Storage - For Processing, Digital Mammography X-Ray Image Storage - For Presentation, Digital Mammography X-Ray Image Storage - For Processing, Digital Intra-Oral X-Ray Image Storage - For Presentation, Digital Intra-Oral X-Ray Image Storage - For Processing, Encapsulated PDF Storage, Encapsulated CDA Storage, Encapsulated STL Storage, Encapsulated OBJ Storage, Encapsulated MTL Storage, Grayscale Softcopy Presentation State Storage, Segmented Volume Rendering Volumetric Presentation State Storage, Multiple Volume Rendering Volumetric Presentation State Storage, Color Softcopy Presentation State Storage, Pseudo-Color Softcopy Presentation State Storage, Blending Softcopy Presentation State Storage, XA/XRF Grayscale Softcopy Presentation State Storage, Grayscale Planar MPR Volumetric Presentation State Storage, Compositing Planar MPR Volumetric Presentation State Storage, Advanced Blending Presentation State Storage, Volume Rendering Volumetric Presentation State Storage, X-Ray Angiographic Image Storage, Enhanced XA Image Storage, X-Ray Radiofluoroscopic Image Storage, Enhanced XRF Image Storage, Positron Emission Tomography Image Storage, Legacy Converted Enhanced PET Image Storage, X-Ray 3D Angiographic Image Storage, X-Ray 3D Craniofacial Image Storage, Breast Tomosynthesis Image Storage, Breast Projection X-Ray Image Storage - For Presentation, Breast Projection X-Ray Image Storage - For Processing, Enhanced PET Image Storage, Basic Structured Display Storage, Intravascular Optical Coherence Tomography Image Storage - For Presentation, Intravascular Optical Coherence Tomography Image Storage - For Processing, CT Image Storage, Enhanced CT Image Storage, Legacy Converted Enhanced CT Image Storage, Nuclear Medicine Image Storage, CT Performed Procedure Protocol Storage, XA Performed Procedure Protocol Storage, Ultrasound Multi-frame Image Storage, Parametric Map Storage, MR Image Storage, Enhanced MR Image Storage, MR Spectroscopy Storage, Enhanced MR Color Image Storage, Legacy Converted Enhanced MR Image Storage, RT Image Storage, RT Physician Intent Storage, RT Segment Annotation Storage, RT Radiation Set Storage, C-Arm Photon-Electron Radiation Storage, Tomotherapeutic Radiation Storage, Robotic-Arm Radiation Storage, RT Radiation Record Set Storage, RT Radiation Salvage Record Storage, Tomotherapeutic Radiation Record Storage, C-Arm Photon-Electron Radiation Record Storage, RT Dose Storage, Robotic Radiation Record Storage, RT Radiation Set Delivery Instruction Storage, RT Treatment Preparation Storage, RT Structure Set Storage, RT Beams Treatment Record Storage, RT Plan Storage, RT Brachy Treatment Record Storage, RT Treatment Summary Record Storage, RT Ion Plan Storage, RT Ion Beams Treatment Record Storage, Ultrasound Image Storage, Enhanced US Volume Storage, Raw Data Storage, Spatial Registration Storage, Spatial Fiducials Storage, Deformable Spatial Registration Storage, Segmentation Storage, Surface Segmentation Storage, Tractography Results Storage, Real World Value Mapping Storage, Surface Scan Mesh Storage, Surface Scan Point Cloud Storage, Secondary Capture Image Storage, Multi-frame Single Bit Secondary Capture Image Storage, Multi-frame Grayscale Byte Secondary Capture Image Storage, Multi-frame Grayscale Word Secondary Capture Image Storage, Multi-frame True Color Secondary Capture Image Storage, VL Endoscopic Image Storage, Video Endoscopic Image Storage, VL Microscopic Image Storage, Video Microscopic Image Storage, VL Slide-Coordinates Microscopic Image Storage, VL Photographic Image Storage, Video Photographic Image Storage, Ophthalmic Photography 8 Bit Image Storage, Ophthalmic Photography 16 Bit Image Storage, Stereometric Relationship Storage, Ophthalmic Tomography Image Storage, Wide Field Ophthalmic Photography Stereographic Projection Image Storage, Wide Field Ophthalmic Photography 3D Coordinates Image Storage, Ophthalmic Optical Coherence Tomography En Face Image Storage, Ophthalmic Optical Coherence Tomography B-scan Volume Analysis Storage, VL Whole Slide Microscopy Image Storage, Dermoscopic Photography Image Storage, Lensometry Measurements Storage, Autorefraction Measurements Storage, Keratometry Measurements Storage, Subjective Refraction Measurements Storage, Visual Acuity Measurements Storage, Spectacle Prescription Report Storage, Ophthalmic Axial Measurements Storage, Intraocular Lens Calculations Storage, Macular Grid Thickness and Volume Report Storage, Ophthalmic Visual Field Static Perimetry Measurements Storage, Ophthalmic Thickness Map Storage, Corneal Topography Map Storage, Basic Text SR Storage, Enhanced SR Storage, Comprehensive SR Storage, Comprehensive 3D SR Storage, Extensible SR Storage, Procedure Log Storage, Mammography CAD SR Storage, Key Object Selection Document Storage, Chest CAD SR Storage]
    +pynetdicom.presentation.StoragePresentationContexts = [Computed Radiography Image Storage, Digital X-Ray Image Storage - For Presentation, Digital X-Ray Image Storage - For Processing, Digital Mammography X-Ray Image Storage - For Presentation, Digital Mammography X-Ray Image Storage - For Processing, Digital Intra-Oral X-Ray Image Storage - For Presentation, Digital Intra-Oral X-Ray Image Storage - For Processing, Encapsulated PDF Storage, Encapsulated CDA Storage, Encapsulated STL Storage, Encapsulated OBJ Storage, Encapsulated MTL Storage, Grayscale Softcopy Presentation State Storage, Segmented Volume Rendering Volumetric Presentation State Storage, Multiple Volume Rendering Volumetric Presentation State Storage, Color Softcopy Presentation State Storage, Pseudo-Color Softcopy Presentation State Storage, Blending Softcopy Presentation State Storage, XA/XRF Grayscale Softcopy Presentation State Storage, Grayscale Planar MPR Volumetric Presentation State Storage, Compositing Planar MPR Volumetric Presentation State Storage, Advanced Blending Presentation State Storage, Volume Rendering Volumetric Presentation State Storage, X-Ray Angiographic Image Storage, Enhanced XA Image Storage, X-Ray Radiofluoroscopic Image Storage, Enhanced XRF Image Storage, Positron Emission Tomography Image Storage, Legacy Converted Enhanced PET Image Storage, X-Ray 3D Angiographic Image Storage, X-Ray 3D Craniofacial Image Storage, Breast Tomosynthesis Image Storage, Breast Projection X-Ray Image Storage - For Presentation, Breast Projection X-Ray Image Storage - For Processing, Enhanced PET Image Storage, Basic Structured Display Storage, Intravascular Optical Coherence Tomography Image Storage - For Presentation, Intravascular Optical Coherence Tomography Image Storage - For Processing, CT Image Storage, Enhanced CT Image Storage, Legacy Converted Enhanced CT Image Storage, Nuclear Medicine Image Storage, CT Performed Procedure Protocol Storage, XA Performed Procedure Protocol Storage, Ultrasound Multi-frame Image Storage, Parametric Map Storage, MR Image Storage, Enhanced MR Image Storage, MR Spectroscopy Storage, Enhanced MR Color Image Storage, Legacy Converted Enhanced MR Image Storage, RT Image Storage, RT Physician Intent Storage, RT Segment Annotation Storage, RT Radiation Set Storage, C-Arm Photon-Electron Radiation Storage, Tomotherapeutic Radiation Storage, Robotic-Arm Radiation Storage, RT Radiation Record Set Storage, RT Radiation Salvage Record Storage, Tomotherapeutic Radiation Record Storage, C-Arm Photon-Electron Radiation Record Storage, RT Dose Storage, Robotic Radiation Record Storage, RT Radiation Set Delivery Instruction Storage, RT Treatment Preparation Storage, RT Structure Set Storage, RT Beams Treatment Record Storage, RT Plan Storage, RT Brachy Treatment Record Storage, RT Treatment Summary Record Storage, RT Ion Plan Storage, RT Ion Beams Treatment Record Storage, Ultrasound Image Storage, Enhanced US Volume Storage, Raw Data Storage, Spatial Registration Storage, Spatial Fiducials Storage, Deformable Spatial Registration Storage, Segmentation Storage, Surface Segmentation Storage, Tractography Results Storage, Real World Value Mapping Storage, Surface Scan Mesh Storage, Surface Scan Point Cloud Storage, Secondary Capture Image Storage, Multi-frame Single Bit Secondary Capture Image Storage, Multi-frame Grayscale Byte Secondary Capture Image Storage, Multi-frame Grayscale Word Secondary Capture Image Storage, Multi-frame True Color Secondary Capture Image Storage, VL Endoscopic Image Storage, Video Endoscopic Image Storage, VL Microscopic Image Storage, Video Microscopic Image Storage, VL Slide-Coordinates Microscopic Image Storage, VL Photographic Image Storage, Video Photographic Image Storage, Ophthalmic Photography 8 Bit Image Storage, Ophthalmic Photography 16 Bit Image Storage, Stereometric Relationship Storage, Ophthalmic Tomography Image Storage, Wide Field Ophthalmic Photography Stereographic Projection Image Storage, Wide Field Ophthalmic Photography 3D Coordinates Image Storage, Ophthalmic Optical Coherence Tomography En Face Image Storage, Ophthalmic Optical Coherence Tomography B-scan Volume Analysis Storage, VL Whole Slide Microscopy Image Storage, Dermoscopic Photography Image Storage, Lensometry Measurements Storage, Autorefraction Measurements Storage, Keratometry Measurements Storage, Subjective Refraction Measurements Storage, Visual Acuity Measurements Storage, Spectacle Prescription Report Storage, Ophthalmic Axial Measurements Storage, Intraocular Lens Calculations Storage, Macular Grid Thickness and Volume Report Storage, Ophthalmic Visual Field Static Perimetry Measurements Storage, Ophthalmic Thickness Map Storage, Corneal Topography Map Storage, Basic Text SR Storage, Enhanced SR Storage, Comprehensive SR Storage, Comprehensive 3D SR Storage, Extensible SR Storage, Procedure Log Storage, Mammography CAD SR Storage, Key Object Selection Document Storage, Chest CAD SR Storage]

    Pre-built presentation contexts for Storage containing the first 128 SOP Classes.

    diff --git a/dev/reference/generated/pynetdicom.presentation.SubstanceAdministrationPresentationContexts.html b/dev/reference/generated/pynetdicom.presentation.SubstanceAdministrationPresentationContexts.html index 431b67585..4976df692 100644 --- a/dev/reference/generated/pynetdicom.presentation.SubstanceAdministrationPresentationContexts.html +++ b/dev/reference/generated/pynetdicom.presentation.SubstanceAdministrationPresentationContexts.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -142,10 +142,10 @@
    -

    pynetdicom.presentation.SubstanceAdministrationPresentationContexts

    +

    pynetdicom.presentation.SubstanceAdministrationPresentationContexts

    -pynetdicom.presentation.SubstanceAdministrationPresentationContexts = [Product Characteristics Query SOP Class, Substance Approval Query SOP Class]
    +pynetdicom.presentation.SubstanceAdministrationPresentationContexts = [Product Characteristics Query SOP Class, Substance Approval Query SOP Class]

    Pre-built presentation contexts for Substance Administration Query.

    diff --git a/dev/reference/generated/pynetdicom.presentation.UnifiedProcedurePresentationContexts.html b/dev/reference/generated/pynetdicom.presentation.UnifiedProcedurePresentationContexts.html index d88e0d7b5..6d15b6aff 100644 --- a/dev/reference/generated/pynetdicom.presentation.UnifiedProcedurePresentationContexts.html +++ b/dev/reference/generated/pynetdicom.presentation.UnifiedProcedurePresentationContexts.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -142,10 +142,10 @@
    -

    pynetdicom.presentation.UnifiedProcedurePresentationContexts

    +

    pynetdicom.presentation.UnifiedProcedurePresentationContexts

    -pynetdicom.presentation.UnifiedProcedurePresentationContexts = [Unified Procedure Step - Push SOP Class, Unified Procedure Step - Watch SOP Class, Unified Procedure Step - Pull SOP Class, Unified Procedure Step - Event SOP Class, Unified Procedure Step - Query SOP Class]
    +pynetdicom.presentation.UnifiedProcedurePresentationContexts = [Unified Procedure Step - Push SOP Class, Unified Procedure Step - Watch SOP Class, Unified Procedure Step - Pull SOP Class, Unified Procedure Step - Event SOP Class, Unified Procedure Step - Query SOP Class]

    Pre-built presentation contexts for Unified Procedure Step.

    diff --git a/dev/reference/generated/pynetdicom.presentation.VerificationPresentationContexts.html b/dev/reference/generated/pynetdicom.presentation.VerificationPresentationContexts.html index d646b6c7e..d3674c604 100644 --- a/dev/reference/generated/pynetdicom.presentation.VerificationPresentationContexts.html +++ b/dev/reference/generated/pynetdicom.presentation.VerificationPresentationContexts.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -142,10 +142,10 @@
    -

    pynetdicom.presentation.VerificationPresentationContexts

    +

    pynetdicom.presentation.VerificationPresentationContexts

    -pynetdicom.presentation.VerificationPresentationContexts = [Verification SOP Class]
    +pynetdicom.presentation.VerificationPresentationContexts = [Verification SOP Class]

    Pre-built presentation contexts for Verification.

    diff --git a/dev/reference/generated/pynetdicom.presentation.build_context.html b/dev/reference/generated/pynetdicom.presentation.build_context.html index 32c4220d2..e302687ab 100644 --- a/dev/reference/generated/pynetdicom.presentation.build_context.html +++ b/dev/reference/generated/pynetdicom.presentation.build_context.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -122,18 +122,18 @@
    -

    pynetdicom.presentation.build_context

    +

    pynetdicom.presentation.build_context

    -pynetdicom.presentation.build_context(abstract_syntax: str | UID, transfer_syntax: str | UID | List[str | UID] | None = None) PresentationContext[source]
    +pynetdicom.presentation.build_context(abstract_syntax: str | UID, transfer_syntax: str | UID | List[str | UID] | None = None) PresentationContext[source]

    Return a PresentationContext built from the abstract_syntax.

    Parameters:
      -
    • abstract_syntax (str or UID or sop_class.SOPClass) – The UID or subclass of +

    • abstract_syntax (str or UID or sop_class.SOPClass) – The UID or subclass of SOPClass instance to use as the abstract syntax.

    • -
    • transfer_syntax (str/UID or list of str/UID) – The transfer syntax UID(s) to use (default: +

    • transfer_syntax (str/UID or list of str/UID) – The transfer syntax UID(s) to use (default: [Implicit VR Little Endian, Explicit VR Little Endian, Deflated Explicit VR Little Endian, Implicit VR Big Endian])

    diff --git a/dev/reference/generated/pynetdicom.presentation.build_role.html b/dev/reference/generated/pynetdicom.presentation.build_role.html index 5ea34f5cf..755dd93f7 100644 --- a/dev/reference/generated/pynetdicom.presentation.build_role.html +++ b/dev/reference/generated/pynetdicom.presentation.build_role.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -122,10 +122,10 @@
    -

    pynetdicom.presentation.build_role

    +

    pynetdicom.presentation.build_role

    -pynetdicom.presentation.build_role(uid: str | UID, scu_role: bool = False, scp_role: bool = False) SCP_SCU_RoleSelectionNegotiation[source]
    +pynetdicom.presentation.build_role(uid: str | UID, scu_role: bool = False, scp_role: bool = False) SCP_SCU_RoleSelectionNegotiation[source]

    Return a SCP/SCU Role Selection Negotiation item.

    New in version 1.2.

    @@ -133,12 +133,12 @@

    pynetdicom.presentation.build_role
    Parameters:
      -
    • uid (str or UID or sop_class.SOPClass) – The UID or subclass of +

    • uid (str or UID or sop_class.SOPClass) – The UID or subclass of SOPClass instance to use as the SOP Class UID parameter value.

    • -
    • scu_role (bool, optional) – True to propose the SCU role for the Requestor, False +

    • scu_role (bool, optional) – True to propose the SCU role for the Requestor, False otherwise (default).

    • -
    • scp_role (bool, optional) – True to propose the SCP role for the Requestor, False +

    • scp_role (bool, optional) – True to propose the SCP role for the Requestor, False otherwise (default).

    diff --git a/dev/reference/generated/pynetdicom.presentation.negotiate_as_acceptor.html b/dev/reference/generated/pynetdicom.presentation.negotiate_as_acceptor.html index fa884d21d..ab55a2423 100644 --- a/dev/reference/generated/pynetdicom.presentation.negotiate_as_acceptor.html +++ b/dev/reference/generated/pynetdicom.presentation.negotiate_as_acceptor.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -120,21 +120,21 @@
    -

    pynetdicom.presentation.negotiate_as_acceptor

    +

    pynetdicom.presentation.negotiate_as_acceptor

    -pynetdicom.presentation.negotiate_as_acceptor(rq_contexts: List[PresentationContext], ac_contexts: List[PresentationContext], roles: Dict[UID, Tuple[bool | None, bool | None]] | None = None) Tuple[List[PresentationContext], List[SCP_SCU_RoleSelectionNegotiation]][source]
    +pynetdicom.presentation.negotiate_as_acceptor(rq_contexts: List[PresentationContext], ac_contexts: List[PresentationContext], roles: Dict[UID, Tuple[bool | None, bool | None]] | None = None) Tuple[List[PresentationContext], List[SCP_SCU_RoleSelectionNegotiation]][source]

    Process the Presentation Contexts as an Association Acceptor.

    Parameters:
      -
    • rq_contexts (list of PresentationContext) – The Presentation Contexts proposed by the peer. Each item has +

    • rq_contexts (list of PresentationContext) – The Presentation Contexts proposed by the peer. Each item has values for Context ID, Abstract Syntax and Transfer Syntax.

    • -
    • ac_contexts (list of PresentationContext) – The Presentation Contexts supported by the local AE when acting +

    • ac_contexts (list of PresentationContext) – The Presentation Contexts supported by the local AE when acting as an Association Acceptor. Each item has values for Context ID, Abstract Syntax and Transfer Syntax.

    • -
    • roles (dict or None) – If the Requestor has included one or more SCP/SCU Role Selection -Negotiation items then this will be a dict of +

    • roles (dict or None) – If the Requestor has included one or more SCP/SCU Role Selection +Negotiation items then this will be a dict of {'SOP Class UID' : (SCU role, SCP role)}, otherwise None (default)

    @@ -144,7 +144,7 @@

    pynetdicom.presentation.negotiate_as_acceptorNone then this is a list of SCP/SCU Role +
  • list of SCP_SCU_RoleSelectionNegotiation – If roles is not None then this is a list of SCP/SCU Role Selection Negotiation items that can be sent back to the Requestor.

  • diff --git a/dev/reference/generated/pynetdicom.presentation.negotiate_as_requestor.html b/dev/reference/generated/pynetdicom.presentation.negotiate_as_requestor.html index 2c155f4f6..c86c2cdcd 100644 --- a/dev/reference/generated/pynetdicom.presentation.negotiate_as_requestor.html +++ b/dev/reference/generated/pynetdicom.presentation.negotiate_as_requestor.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -120,10 +120,10 @@
    -

    pynetdicom.presentation.negotiate_as_requestor

    +

    pynetdicom.presentation.negotiate_as_requestor

    -pynetdicom.presentation.negotiate_as_requestor(rq_contexts: List[PresentationContext], ac_contexts: List[PresentationContext], roles: Dict[UID, Tuple[bool | None, bool | None]] | None = None) List[PresentationContext][source]
    +pynetdicom.presentation.negotiate_as_requestor(rq_contexts: List[PresentationContext], ac_contexts: List[PresentationContext], roles: Dict[UID, Tuple[bool | None, bool | None]] | None = None) List[PresentationContext][source]

    Process the Presentation Contexts as an Association Requestor.

    The Acceptor has processed the Requestor’s presentation context definition list and returned the results. We want to do two things:

    @@ -147,12 +147,12 @@

    pynetdicom.presentation.negotiate_as_requestor
    Parameters:
      -
    • rq_contexts (list of PresentationContext) – The Presentation Contexts sent to the peer as the A-ASSOCIATE’s +

    • rq_contexts (list of PresentationContext) – The Presentation Contexts sent to the peer as the A-ASSOCIATE’s Presentation Context Definition List.

    • -
    • ac_contexts (list of PresentationContext) – The Presentation Contexts return by the peer as the A-ASSOCIATE’s +

    • ac_contexts (list of PresentationContext) – The Presentation Contexts return by the peer as the A-ASSOCIATE’s Presentation Context Definition Result List.

    • -
    • roles (dict or None) – If the Acceptor has included one or more SCP/SCU Role Selection -Negotiation items then this will be a dict of +

    • roles (dict or None) – If the Acceptor has included one or more SCP/SCU Role Selection +Negotiation items then this will be a dict of {'SOP Class UID' : (SCU role, SCP role)}, otherwise None (default)

    @@ -164,7 +164,7 @@

    pynetdicom.presentation.negotiate_as_requestorReturn type: -

    list of PresentationContext

    +

    list of PresentationContext

    diff --git a/dev/reference/generated/pynetdicom.service_class.BasicWorklistManagementServiceClass.html b/dev/reference/generated/pynetdicom.service_class.BasicWorklistManagementServiceClass.html index 97dc9bbca..585ff6f73 100644 --- a/dev/reference/generated/pynetdicom.service_class.BasicWorklistManagementServiceClass.html +++ b/dev/reference/generated/pynetdicom.service_class.BasicWorklistManagementServiceClass.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -137,14 +137,14 @@
    -

    pynetdicom.service_class.BasicWorklistManagementServiceClass

    +

    pynetdicom.service_class.BasicWorklistManagementServiceClass

    -class pynetdicom.service_class.BasicWorklistManagementServiceClass(assoc: Association)[source]
    +class pynetdicom.service_class.BasicWorklistManagementServiceClass(assoc: Association)[source]

    Implementation of the Basic Worklist Management Service Class.

    -__init__(assoc: Association) None[source]
    +__init__(assoc: Association) None[source]

    Create a new ServiceClass.

    @@ -184,7 +184,7 @@

    pynetdicom.service_class.BasicWorklistManagementServiceClass
    -SCP(req: _QR, context: PresentationContext) None[source]
    +SCP(req: _QR, context: PresentationContext) None[source]

    The SCP implementation for Basic Worklist Management.

    Parameters:
    diff --git a/dev/reference/generated/pynetdicom.service_class.ColorPaletteQueryRetrieveServiceClass.html b/dev/reference/generated/pynetdicom.service_class.ColorPaletteQueryRetrieveServiceClass.html index cdccf0d5b..79f6fd503 100644 --- a/dev/reference/generated/pynetdicom.service_class.ColorPaletteQueryRetrieveServiceClass.html +++ b/dev/reference/generated/pynetdicom.service_class.ColorPaletteQueryRetrieveServiceClass.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -137,14 +137,14 @@
    -

    pynetdicom.service_class.ColorPaletteQueryRetrieveServiceClass

    +

    pynetdicom.service_class.ColorPaletteQueryRetrieveServiceClass

    -class pynetdicom.service_class.ColorPaletteQueryRetrieveServiceClass(assoc: Association)[source]
    +class pynetdicom.service_class.ColorPaletteQueryRetrieveServiceClass(assoc: Association)[source]

    Implementation of the Color Palette QR Service.

    -__init__(assoc: Association) None[source]
    +__init__(assoc: Association) None[source]

    Create a new ServiceClass.

    diff --git a/dev/reference/generated/pynetdicom.service_class.DefinedProcedureProtocolQueryRetrieveServiceClass.html b/dev/reference/generated/pynetdicom.service_class.DefinedProcedureProtocolQueryRetrieveServiceClass.html index cc6ab89ad..4fcd7a608 100644 --- a/dev/reference/generated/pynetdicom.service_class.DefinedProcedureProtocolQueryRetrieveServiceClass.html +++ b/dev/reference/generated/pynetdicom.service_class.DefinedProcedureProtocolQueryRetrieveServiceClass.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -137,14 +137,14 @@
    -

    pynetdicom.service_class.DefinedProcedureProtocolQueryRetrieveServiceClass

    +

    pynetdicom.service_class.DefinedProcedureProtocolQueryRetrieveServiceClass

    -class pynetdicom.service_class.DefinedProcedureProtocolQueryRetrieveServiceClass(assoc: Association)[source]
    +class pynetdicom.service_class.DefinedProcedureProtocolQueryRetrieveServiceClass(assoc: Association)[source]

    Implementation of the Defined Procedure Protocol QR Service.

    -__init__(assoc: Association) None[source]
    +__init__(assoc: Association) None[source]

    Create a new ServiceClass.

    diff --git a/dev/reference/generated/pynetdicom.service_class.HangingProtocolQueryRetrieveServiceClass.html b/dev/reference/generated/pynetdicom.service_class.HangingProtocolQueryRetrieveServiceClass.html index 0d305542c..2d0deda0f 100644 --- a/dev/reference/generated/pynetdicom.service_class.HangingProtocolQueryRetrieveServiceClass.html +++ b/dev/reference/generated/pynetdicom.service_class.HangingProtocolQueryRetrieveServiceClass.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -137,14 +137,14 @@
    -

    pynetdicom.service_class.HangingProtocolQueryRetrieveServiceClass

    +

    pynetdicom.service_class.HangingProtocolQueryRetrieveServiceClass

    -class pynetdicom.service_class.HangingProtocolQueryRetrieveServiceClass(assoc: Association)[source]
    +class pynetdicom.service_class.HangingProtocolQueryRetrieveServiceClass(assoc: Association)[source]

    Implementation of the Hanging Protocol QR Service.

    -__init__(assoc: Association) None[source]
    +__init__(assoc: Association) None[source]

    Create a new ServiceClass.

    diff --git a/dev/reference/generated/pynetdicom.service_class.ImplantTemplateQueryRetrieveServiceClass.html b/dev/reference/generated/pynetdicom.service_class.ImplantTemplateQueryRetrieveServiceClass.html index 0546a9c5d..9a075dd92 100644 --- a/dev/reference/generated/pynetdicom.service_class.ImplantTemplateQueryRetrieveServiceClass.html +++ b/dev/reference/generated/pynetdicom.service_class.ImplantTemplateQueryRetrieveServiceClass.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -137,14 +137,14 @@
    -

    pynetdicom.service_class.ImplantTemplateQueryRetrieveServiceClass

    +

    pynetdicom.service_class.ImplantTemplateQueryRetrieveServiceClass

    -class pynetdicom.service_class.ImplantTemplateQueryRetrieveServiceClass(assoc: Association)[source]
    +class pynetdicom.service_class.ImplantTemplateQueryRetrieveServiceClass(assoc: Association)[source]

    Implementation of the Implant Template QR Service.

    -__init__(assoc: Association) None[source]
    +__init__(assoc: Association) None[source]

    Create a new ServiceClass.

    diff --git a/dev/reference/generated/pynetdicom.service_class.NonPatientObjectStorageServiceClass.html b/dev/reference/generated/pynetdicom.service_class.NonPatientObjectStorageServiceClass.html index 894bd9c47..9e2260ecb 100644 --- a/dev/reference/generated/pynetdicom.service_class.NonPatientObjectStorageServiceClass.html +++ b/dev/reference/generated/pynetdicom.service_class.NonPatientObjectStorageServiceClass.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -137,14 +137,14 @@
    -

    pynetdicom.service_class.NonPatientObjectStorageServiceClass

    +

    pynetdicom.service_class.NonPatientObjectStorageServiceClass

    -class pynetdicom.service_class.NonPatientObjectStorageServiceClass(assoc: Association)[source]
    +class pynetdicom.service_class.NonPatientObjectStorageServiceClass(assoc: Association)[source]

    Implementation of the Non-Patient Object Storage Service

    -__init__(assoc: Association) None[source]
    +__init__(assoc: Association) None[source]

    Create a new ServiceClass.

    diff --git a/dev/reference/generated/pynetdicom.service_class.ProtocolApprovalQueryRetrieveServiceClass.html b/dev/reference/generated/pynetdicom.service_class.ProtocolApprovalQueryRetrieveServiceClass.html index d3b2c2d2e..5c7b9a785 100644 --- a/dev/reference/generated/pynetdicom.service_class.ProtocolApprovalQueryRetrieveServiceClass.html +++ b/dev/reference/generated/pynetdicom.service_class.ProtocolApprovalQueryRetrieveServiceClass.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -137,14 +137,14 @@
    -

    pynetdicom.service_class.ProtocolApprovalQueryRetrieveServiceClass

    +

    pynetdicom.service_class.ProtocolApprovalQueryRetrieveServiceClass

    -class pynetdicom.service_class.ProtocolApprovalQueryRetrieveServiceClass(assoc: Association)[source]
    +class pynetdicom.service_class.ProtocolApprovalQueryRetrieveServiceClass(assoc: Association)[source]

    Implementation of the Protocol Approval QR Service.

    -__init__(assoc: Association) None[source]
    +__init__(assoc: Association) None[source]

    Create a new ServiceClass.

    diff --git a/dev/reference/generated/pynetdicom.service_class.QueryRetrieveServiceClass.html b/dev/reference/generated/pynetdicom.service_class.QueryRetrieveServiceClass.html index 2ebe26af9..e123bb7cf 100644 --- a/dev/reference/generated/pynetdicom.service_class.QueryRetrieveServiceClass.html +++ b/dev/reference/generated/pynetdicom.service_class.QueryRetrieveServiceClass.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -137,14 +137,14 @@
    -

    pynetdicom.service_class.QueryRetrieveServiceClass

    +

    pynetdicom.service_class.QueryRetrieveServiceClass

    -class pynetdicom.service_class.QueryRetrieveServiceClass(assoc: Association)[source]
    +class pynetdicom.service_class.QueryRetrieveServiceClass(assoc: Association)[source]

    Implementation of the Query/Retrieve Service Class.

    -__init__(assoc: Association) None[source]
    +__init__(assoc: Association) None[source]

    Create a new ServiceClass.

    @@ -184,7 +184,7 @@

    pynetdicom.service_class.QueryRetrieveServiceClass
    -SCP(req: _QR, context: PresentationContext) None[source]
    +SCP(req: _QR, context: PresentationContext) None[source]

    The SCP implementation for the Query/Retrieve Service Class.

    Parameters:
    diff --git a/dev/reference/generated/pynetdicom.service_class.RelevantPatientInformationQueryServiceClass.html b/dev/reference/generated/pynetdicom.service_class.RelevantPatientInformationQueryServiceClass.html index ac88f81f7..7676e2d1d 100644 --- a/dev/reference/generated/pynetdicom.service_class.RelevantPatientInformationQueryServiceClass.html +++ b/dev/reference/generated/pynetdicom.service_class.RelevantPatientInformationQueryServiceClass.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -137,14 +137,14 @@
    -

    pynetdicom.service_class.RelevantPatientInformationQueryServiceClass

    +

    pynetdicom.service_class.RelevantPatientInformationQueryServiceClass

    -class pynetdicom.service_class.RelevantPatientInformationQueryServiceClass(assoc: Association)[source]
    +class pynetdicom.service_class.RelevantPatientInformationQueryServiceClass(assoc: Association)[source]

    Implementation of the Relevant Patient Information Query

    -__init__(assoc: Association) None[source]
    +__init__(assoc: Association) None[source]

    Create a new ServiceClass.

    @@ -184,7 +184,7 @@

    pynetdicom.service_class.RelevantPatientInformationQueryServiceClass
    -SCP(req: C_FIND, context: PresentationContext) None[source]
    +SCP(req: C_FIND, context: PresentationContext) None[source]

    The SCP implementation for the Relevant Patient Information Query Service Class.

    diff --git a/dev/reference/generated/pynetdicom.service_class.StorageServiceClass.html b/dev/reference/generated/pynetdicom.service_class.StorageServiceClass.html index 365282326..fbcc0f41f 100644 --- a/dev/reference/generated/pynetdicom.service_class.StorageServiceClass.html +++ b/dev/reference/generated/pynetdicom.service_class.StorageServiceClass.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -137,14 +137,14 @@
    -

    pynetdicom.service_class.StorageServiceClass

    +

    pynetdicom.service_class.StorageServiceClass

    -class pynetdicom.service_class.StorageServiceClass(assoc: Association)[source]
    +class pynetdicom.service_class.StorageServiceClass(assoc: Association)[source]

    Implementation of the Storage Service Class.

    -__init__(assoc: Association) None[source]
    +__init__(assoc: Association) None[source]

    Create a new ServiceClass.

    @@ -187,7 +187,7 @@

    pynetdicom.service_class.StorageServiceClass
    -SCP(req: C_STORE, context: PresentationContext) None[source]
    +SCP(req: C_STORE, context: PresentationContext) None[source]

    The SCP implementation for the Storage Service Class.

    Parameters:
    diff --git a/dev/reference/generated/pynetdicom.service_class.SubstanceAdministrationQueryServiceClass.html b/dev/reference/generated/pynetdicom.service_class.SubstanceAdministrationQueryServiceClass.html index b9edf5ab0..361e7c961 100644 --- a/dev/reference/generated/pynetdicom.service_class.SubstanceAdministrationQueryServiceClass.html +++ b/dev/reference/generated/pynetdicom.service_class.SubstanceAdministrationQueryServiceClass.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -137,14 +137,14 @@
    -

    pynetdicom.service_class.SubstanceAdministrationQueryServiceClass

    +

    pynetdicom.service_class.SubstanceAdministrationQueryServiceClass

    -class pynetdicom.service_class.SubstanceAdministrationQueryServiceClass(assoc: Association)[source]
    +class pynetdicom.service_class.SubstanceAdministrationQueryServiceClass(assoc: Association)[source]

    Implementation of the Substance Administration Query Service

    -__init__(assoc: Association) None[source]
    +__init__(assoc: Association) None[source]

    Create a new ServiceClass.

    @@ -184,7 +184,7 @@

    pynetdicom.service_class.SubstanceAdministrationQueryServiceClass
    -SCP(req: _QR, context: PresentationContext) None[source]
    +SCP(req: _QR, context: PresentationContext) None[source]

    The SCP implementation for the Relevant Patient Information Query Service Class.

    diff --git a/dev/reference/generated/pynetdicom.service_class.VerificationServiceClass.html b/dev/reference/generated/pynetdicom.service_class.VerificationServiceClass.html index ef9fed466..0161df1c0 100644 --- a/dev/reference/generated/pynetdicom.service_class.VerificationServiceClass.html +++ b/dev/reference/generated/pynetdicom.service_class.VerificationServiceClass.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -137,14 +137,14 @@
    -

    pynetdicom.service_class.VerificationServiceClass

    +

    pynetdicom.service_class.VerificationServiceClass

    -class pynetdicom.service_class.VerificationServiceClass(assoc: Association)[source]
    +class pynetdicom.service_class.VerificationServiceClass(assoc: Association)[source]

    Implementation of the Verification Service Class.

    -__init__(assoc: Association) None[source]
    +__init__(assoc: Association) None[source]

    Create a new ServiceClass.

    @@ -184,7 +184,7 @@

    pynetdicom.service_class.VerificationServiceClass
    -SCP(req: C_ECHO, context: PresentationContext) None[source]
    +SCP(req: C_ECHO, context: PresentationContext) None[source]

    The SCP implementation for the Verification Service Class.

    Will always return 0x0000 (Success) unless the user returns a different (valid) status value from the handler bound to evt.EVT_C_ECHO.

    diff --git a/dev/reference/generated/pynetdicom.service_class_n.ApplicationEventLoggingServiceClass.html b/dev/reference/generated/pynetdicom.service_class_n.ApplicationEventLoggingServiceClass.html index b1895b6ac..bbb057208 100644 --- a/dev/reference/generated/pynetdicom.service_class_n.ApplicationEventLoggingServiceClass.html +++ b/dev/reference/generated/pynetdicom.service_class_n.ApplicationEventLoggingServiceClass.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -137,17 +137,17 @@
    -

    pynetdicom.service_class_n.ApplicationEventLoggingServiceClass

    +

    pynetdicom.service_class_n.ApplicationEventLoggingServiceClass

    -class pynetdicom.service_class_n.ApplicationEventLoggingServiceClass(assoc: Association)[source]
    +class pynetdicom.service_class_n.ApplicationEventLoggingServiceClass(assoc: Association)[source]

    Implementation of the Application Event Logging Service Class

    New in version 1.4.

    -__init__(assoc: Association) None[source]
    +__init__(assoc: Association) None[source]

    Create a new ServiceClass.

    @@ -187,7 +187,7 @@

    pynetdicom.service_class_n.ApplicationEventLoggingServiceClass
    -SCP(req: N_ACTION, context: PresentationContext) None[source]
    +SCP(req: N_ACTION, context: PresentationContext) None[source]

    The SCP implementation for Application Event Logging Service Class.

    Parameters:
    diff --git a/dev/reference/generated/pynetdicom.service_class_n.DisplaySystemManagementServiceClass.html b/dev/reference/generated/pynetdicom.service_class_n.DisplaySystemManagementServiceClass.html index d05189429..4f0ef5f3f 100644 --- a/dev/reference/generated/pynetdicom.service_class_n.DisplaySystemManagementServiceClass.html +++ b/dev/reference/generated/pynetdicom.service_class_n.DisplaySystemManagementServiceClass.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -137,14 +137,14 @@
    -

    pynetdicom.service_class_n.DisplaySystemManagementServiceClass

    +

    pynetdicom.service_class_n.DisplaySystemManagementServiceClass

    -class pynetdicom.service_class_n.DisplaySystemManagementServiceClass(assoc: Association)[source]
    +class pynetdicom.service_class_n.DisplaySystemManagementServiceClass(assoc: Association)[source]

    Implementation of the Display System Management Service Class.

    -__init__(assoc: Association) None[source]
    +__init__(assoc: Association) None[source]

    Create a new ServiceClass.

    @@ -184,7 +184,7 @@

    pynetdicom.service_class_n.DisplaySystemManagementServiceClass
    -SCP(req: N_GET, context: PresentationContext) None[source]
    +SCP(req: N_GET, context: PresentationContext) None[source]

    The SCP implementation for Display System Management.

    Parameters:
    diff --git a/dev/reference/generated/pynetdicom.service_class_n.InstanceAvailabilityNotificationServiceClass.html b/dev/reference/generated/pynetdicom.service_class_n.InstanceAvailabilityNotificationServiceClass.html index d18521872..cd7921237 100644 --- a/dev/reference/generated/pynetdicom.service_class_n.InstanceAvailabilityNotificationServiceClass.html +++ b/dev/reference/generated/pynetdicom.service_class_n.InstanceAvailabilityNotificationServiceClass.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -137,17 +137,17 @@
    -

    pynetdicom.service_class_n.InstanceAvailabilityNotificationServiceClass

    +

    pynetdicom.service_class_n.InstanceAvailabilityNotificationServiceClass

    -class pynetdicom.service_class_n.InstanceAvailabilityNotificationServiceClass(assoc: Association)[source]
    +class pynetdicom.service_class_n.InstanceAvailabilityNotificationServiceClass(assoc: Association)[source]

    Implementation of the Instance Availability Service Class

    New in version 1.4.

    -__init__(assoc: Association) None[source]
    +__init__(assoc: Association) None[source]

    Create a new ServiceClass.

    @@ -187,7 +187,7 @@

    pynetdicom.service_class_n.InstanceAvailabilityNotificationServiceClass
    -SCP(req: N_CREATE, context: PresentationContext) None[source]
    +SCP(req: N_CREATE, context: PresentationContext) None[source]

    The SCP implementation for Instance Availability Service Class.

    Parameters:
    diff --git a/dev/reference/generated/pynetdicom.service_class_n.MediaCreationManagementServiceClass.html b/dev/reference/generated/pynetdicom.service_class_n.MediaCreationManagementServiceClass.html index 9cc3fbe01..af030a73d 100644 --- a/dev/reference/generated/pynetdicom.service_class_n.MediaCreationManagementServiceClass.html +++ b/dev/reference/generated/pynetdicom.service_class_n.MediaCreationManagementServiceClass.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -137,17 +137,17 @@
    -

    pynetdicom.service_class_n.MediaCreationManagementServiceClass

    +

    pynetdicom.service_class_n.MediaCreationManagementServiceClass

    -class pynetdicom.service_class_n.MediaCreationManagementServiceClass(assoc: Association)[source]
    +class pynetdicom.service_class_n.MediaCreationManagementServiceClass(assoc: Association)[source]

    Implementation of the Media Creation Management Service Class

    New in version 1.4.

    -__init__(assoc: Association) None[source]
    +__init__(assoc: Association) None[source]

    Create a new ServiceClass.

    @@ -187,7 +187,7 @@

    pynetdicom.service_class_n.MediaCreationManagementServiceClass
    -SCP(req: _MCM, context: PresentationContext) None[source]
    +SCP(req: _MCM, context: PresentationContext) None[source]

    The SCP implementation for Media Creation Management Service Class.

    Parameters:
    diff --git a/dev/reference/generated/pynetdicom.service_class_n.PrintManagementServiceClass.html b/dev/reference/generated/pynetdicom.service_class_n.PrintManagementServiceClass.html index be98b9a42..372e29d1f 100644 --- a/dev/reference/generated/pynetdicom.service_class_n.PrintManagementServiceClass.html +++ b/dev/reference/generated/pynetdicom.service_class_n.PrintManagementServiceClass.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -137,17 +137,17 @@
    -

    pynetdicom.service_class_n.PrintManagementServiceClass

    +

    pynetdicom.service_class_n.PrintManagementServiceClass

    -class pynetdicom.service_class_n.PrintManagementServiceClass(assoc: Association)[source]
    +class pynetdicom.service_class_n.PrintManagementServiceClass(assoc: Association)[source]

    Implementation of the Print Management Service Class

    New in version 1.4.

    -__init__(assoc: Association) None[source]
    +__init__(assoc: Association) None[source]

    Create a new ServiceClass.

    @@ -187,7 +187,7 @@

    pynetdicom.service_class_n.PrintManagementServiceClass
    -SCP(req: _PJ, context: PresentationContext) None[source]
    +SCP(req: _PJ, context: PresentationContext) None[source]

    The SCP implementation for Print Management Service Class.

    Parameters:
    diff --git a/dev/reference/generated/pynetdicom.service_class_n.ProcedureStepServiceClass.html b/dev/reference/generated/pynetdicom.service_class_n.ProcedureStepServiceClass.html index b90df686d..ea8dc9d90 100644 --- a/dev/reference/generated/pynetdicom.service_class_n.ProcedureStepServiceClass.html +++ b/dev/reference/generated/pynetdicom.service_class_n.ProcedureStepServiceClass.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -137,17 +137,17 @@
    -

    pynetdicom.service_class_n.ProcedureStepServiceClass

    +

    pynetdicom.service_class_n.ProcedureStepServiceClass

    -class pynetdicom.service_class_n.ProcedureStepServiceClass(assoc: Association)[source]
    +class pynetdicom.service_class_n.ProcedureStepServiceClass(assoc: Association)[source]

    Implementation of the Modality Performed Procedure Step Service Class

    New in version 1.3.

    -__init__(assoc: Association) None[source]
    +__init__(assoc: Association) None[source]

    Create a new ServiceClass.

    @@ -187,7 +187,7 @@

    pynetdicom.service_class_n.ProcedureStepServiceClass
    -SCP(req: _PS, context: PresentationContext) None[source]
    +SCP(req: _PS, context: PresentationContext) None[source]

    The SCP implementation for Modality Performed Procedure Step.

    Parameters:
    diff --git a/dev/reference/generated/pynetdicom.service_class_n.RTMachineVerificationServiceClass.html b/dev/reference/generated/pynetdicom.service_class_n.RTMachineVerificationServiceClass.html index 8ff30571c..32b070098 100644 --- a/dev/reference/generated/pynetdicom.service_class_n.RTMachineVerificationServiceClass.html +++ b/dev/reference/generated/pynetdicom.service_class_n.RTMachineVerificationServiceClass.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -137,17 +137,17 @@
    -

    pynetdicom.service_class_n.RTMachineVerificationServiceClass

    +

    pynetdicom.service_class_n.RTMachineVerificationServiceClass

    -class pynetdicom.service_class_n.RTMachineVerificationServiceClass(assoc: Association)[source]
    +class pynetdicom.service_class_n.RTMachineVerificationServiceClass(assoc: Association)[source]

    Implementation of the RT Machine Verification Service Class

    New in version 1.4.

    -__init__(assoc: Association) None[source]
    +__init__(assoc: Association) None[source]

    Create a new ServiceClass.

    @@ -187,7 +187,7 @@

    pynetdicom.service_class_n.RTMachineVerificationServiceClass
    -SCP(req: _PJ, context: PresentationContext) None[source]
    +SCP(req: _PJ, context: PresentationContext) None[source]

    The SCP implementation for RT Machine Verification Service Class.

    Parameters:
    diff --git a/dev/reference/generated/pynetdicom.service_class_n.StorageCommitmentServiceClass.html b/dev/reference/generated/pynetdicom.service_class_n.StorageCommitmentServiceClass.html index 7bb238d30..e35d18e15 100644 --- a/dev/reference/generated/pynetdicom.service_class_n.StorageCommitmentServiceClass.html +++ b/dev/reference/generated/pynetdicom.service_class_n.StorageCommitmentServiceClass.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -137,17 +137,17 @@
    -

    pynetdicom.service_class_n.StorageCommitmentServiceClass

    +

    pynetdicom.service_class_n.StorageCommitmentServiceClass

    -class pynetdicom.service_class_n.StorageCommitmentServiceClass(assoc: Association)[source]
    +class pynetdicom.service_class_n.StorageCommitmentServiceClass(assoc: Association)[source]

    Implementation of the Storage Commitment Service Class

    New in version 1.4.

    -__init__(assoc: Association) None[source]
    +__init__(assoc: Association) None[source]

    Create a new ServiceClass.

    @@ -187,7 +187,7 @@

    pynetdicom.service_class_n.StorageCommitmentServiceClass
    -SCP(req: _SCS, context: PresentationContext) None[source]
    +SCP(req: _SCS, context: PresentationContext) None[source]

    The SCP implementation for Storage Commitment Service Class.

    Parameters:
    diff --git a/dev/reference/generated/pynetdicom.service_class_n.UnifiedProcedureStepServiceClass.html b/dev/reference/generated/pynetdicom.service_class_n.UnifiedProcedureStepServiceClass.html index 3895f8496..1b6da3476 100644 --- a/dev/reference/generated/pynetdicom.service_class_n.UnifiedProcedureStepServiceClass.html +++ b/dev/reference/generated/pynetdicom.service_class_n.UnifiedProcedureStepServiceClass.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -137,17 +137,17 @@
    -

    pynetdicom.service_class_n.UnifiedProcedureStepServiceClass

    +

    pynetdicom.service_class_n.UnifiedProcedureStepServiceClass

    -class pynetdicom.service_class_n.UnifiedProcedureStepServiceClass(assoc: Association)[source]
    +class pynetdicom.service_class_n.UnifiedProcedureStepServiceClass(assoc: Association)[source]

    Implementation of the Unified Procedure Step Service Class

    New in version 1.4.

    -__init__(assoc: Association) None[source]
    +__init__(assoc: Association) None[source]

    Create a new ServiceClass.

    @@ -187,7 +187,7 @@

    pynetdicom.service_class_n.UnifiedProcedureStepServiceClass
    -SCP(req: _UPS, context: PresentationContext) None[source]
    +SCP(req: _UPS, context: PresentationContext) None[source]

    The SCP implementation for Unified Procedure Step Service Class.

    Parameters:
    diff --git a/dev/reference/generated/pynetdicom.sop_class.AcquisitionContextSRStorage.html b/dev/reference/generated/pynetdicom.sop_class.AcquisitionContextSRStorage.html index a8513fa1f..3015107cf 100644 --- a/dev/reference/generated/pynetdicom.sop_class.AcquisitionContextSRStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.AcquisitionContextSRStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.AcquisitionContextSRStorage

    +

    pynetdicom.sop_class.AcquisitionContextSRStorage

    -pynetdicom.sop_class.AcquisitionContextSRStorage = '1.2.840.10008.5.1.4.1.1.88.71'[source]
    +pynetdicom.sop_class.AcquisitionContextSRStorage = '1.2.840.10008.5.1.4.1.1.88.71'[source]

    1.2.840.10008.5.1.4.1.1.88.71

    diff --git a/dev/reference/generated/pynetdicom.sop_class.AdvancedBlendingPresentationStateStorage.html b/dev/reference/generated/pynetdicom.sop_class.AdvancedBlendingPresentationStateStorage.html index 998a54c4e..ad5d2a73b 100644 --- a/dev/reference/generated/pynetdicom.sop_class.AdvancedBlendingPresentationStateStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.AdvancedBlendingPresentationStateStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.AdvancedBlendingPresentationStateStorage

    +

    pynetdicom.sop_class.AdvancedBlendingPresentationStateStorage

    -pynetdicom.sop_class.AdvancedBlendingPresentationStateStorage = '1.2.840.10008.5.1.4.1.1.11.8'[source]
    +pynetdicom.sop_class.AdvancedBlendingPresentationStateStorage = '1.2.840.10008.5.1.4.1.1.11.8'[source]

    1.2.840.10008.5.1.4.1.1.11.8

    diff --git a/dev/reference/generated/pynetdicom.sop_class.AmbulatoryECGWaveformStorage.html b/dev/reference/generated/pynetdicom.sop_class.AmbulatoryECGWaveformStorage.html index b721941c5..099f3e913 100644 --- a/dev/reference/generated/pynetdicom.sop_class.AmbulatoryECGWaveformStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.AmbulatoryECGWaveformStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.AmbulatoryECGWaveformStorage

    +

    pynetdicom.sop_class.AmbulatoryECGWaveformStorage

    -pynetdicom.sop_class.AmbulatoryECGWaveformStorage = '1.2.840.10008.5.1.4.1.1.9.1.3'[source]
    +pynetdicom.sop_class.AmbulatoryECGWaveformStorage = '1.2.840.10008.5.1.4.1.1.9.1.3'[source]

    1.2.840.10008.5.1.4.1.1.9.1.3

    diff --git a/dev/reference/generated/pynetdicom.sop_class.ArterialPulseWaveformStorage.html b/dev/reference/generated/pynetdicom.sop_class.ArterialPulseWaveformStorage.html index a35953ba9..aa49cc791 100644 --- a/dev/reference/generated/pynetdicom.sop_class.ArterialPulseWaveformStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.ArterialPulseWaveformStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.ArterialPulseWaveformStorage

    +

    pynetdicom.sop_class.ArterialPulseWaveformStorage

    -pynetdicom.sop_class.ArterialPulseWaveformStorage = '1.2.840.10008.5.1.4.1.1.9.5.1'[source]
    +pynetdicom.sop_class.ArterialPulseWaveformStorage = '1.2.840.10008.5.1.4.1.1.9.5.1'[source]

    1.2.840.10008.5.1.4.1.1.9.5.1

    diff --git a/dev/reference/generated/pynetdicom.sop_class.AutorefractionMeasurementsStorage.html b/dev/reference/generated/pynetdicom.sop_class.AutorefractionMeasurementsStorage.html index 22bbca7c2..23eb772a1 100644 --- a/dev/reference/generated/pynetdicom.sop_class.AutorefractionMeasurementsStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.AutorefractionMeasurementsStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.AutorefractionMeasurementsStorage

    +

    pynetdicom.sop_class.AutorefractionMeasurementsStorage

    -pynetdicom.sop_class.AutorefractionMeasurementsStorage = '1.2.840.10008.5.1.4.1.1.78.2'[source]
    +pynetdicom.sop_class.AutorefractionMeasurementsStorage = '1.2.840.10008.5.1.4.1.1.78.2'[source]

    1.2.840.10008.5.1.4.1.1.78.2

    diff --git a/dev/reference/generated/pynetdicom.sop_class.BasicAnnotationBox.html b/dev/reference/generated/pynetdicom.sop_class.BasicAnnotationBox.html index 7235e42a5..465c81705 100644 --- a/dev/reference/generated/pynetdicom.sop_class.BasicAnnotationBox.html +++ b/dev/reference/generated/pynetdicom.sop_class.BasicAnnotationBox.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.BasicAnnotationBox

    +

    pynetdicom.sop_class.BasicAnnotationBox

    -pynetdicom.sop_class.BasicAnnotationBox = '1.2.840.10008.5.1.1.15'[source]
    +pynetdicom.sop_class.BasicAnnotationBox = '1.2.840.10008.5.1.1.15'[source]

    1.2.840.10008.5.1.1.15

    diff --git a/dev/reference/generated/pynetdicom.sop_class.BasicColorImageBox.html b/dev/reference/generated/pynetdicom.sop_class.BasicColorImageBox.html index f67e09ed7..6a13c704a 100644 --- a/dev/reference/generated/pynetdicom.sop_class.BasicColorImageBox.html +++ b/dev/reference/generated/pynetdicom.sop_class.BasicColorImageBox.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.BasicColorImageBox

    +

    pynetdicom.sop_class.BasicColorImageBox

    -pynetdicom.sop_class.BasicColorImageBox = '1.2.840.10008.5.1.1.4.1'[source]
    +pynetdicom.sop_class.BasicColorImageBox = '1.2.840.10008.5.1.1.4.1'[source]

    1.2.840.10008.5.1.1.4.1

    diff --git a/dev/reference/generated/pynetdicom.sop_class.BasicColorPrintManagementMeta.html b/dev/reference/generated/pynetdicom.sop_class.BasicColorPrintManagementMeta.html index 2552ad644..b2693a83f 100644 --- a/dev/reference/generated/pynetdicom.sop_class.BasicColorPrintManagementMeta.html +++ b/dev/reference/generated/pynetdicom.sop_class.BasicColorPrintManagementMeta.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.BasicColorPrintManagementMeta

    +

    pynetdicom.sop_class.BasicColorPrintManagementMeta

    -pynetdicom.sop_class.BasicColorPrintManagementMeta = '1.2.840.10008.5.1.1.18'[source]
    +pynetdicom.sop_class.BasicColorPrintManagementMeta = '1.2.840.10008.5.1.1.18'[source]

    1.2.840.10008.5.1.1.18

    diff --git a/dev/reference/generated/pynetdicom.sop_class.BasicFilmBox.html b/dev/reference/generated/pynetdicom.sop_class.BasicFilmBox.html index b85f5a719..6b5de174d 100644 --- a/dev/reference/generated/pynetdicom.sop_class.BasicFilmBox.html +++ b/dev/reference/generated/pynetdicom.sop_class.BasicFilmBox.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.BasicFilmBox

    +

    pynetdicom.sop_class.BasicFilmBox

    -pynetdicom.sop_class.BasicFilmBox = '1.2.840.10008.5.1.1.2'[source]
    +pynetdicom.sop_class.BasicFilmBox = '1.2.840.10008.5.1.1.2'[source]

    1.2.840.10008.5.1.1.2

    diff --git a/dev/reference/generated/pynetdicom.sop_class.BasicFilmSession.html b/dev/reference/generated/pynetdicom.sop_class.BasicFilmSession.html index f49731bcc..eddc22e5b 100644 --- a/dev/reference/generated/pynetdicom.sop_class.BasicFilmSession.html +++ b/dev/reference/generated/pynetdicom.sop_class.BasicFilmSession.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.BasicFilmSession

    +

    pynetdicom.sop_class.BasicFilmSession

    -pynetdicom.sop_class.BasicFilmSession = '1.2.840.10008.5.1.1.1'[source]
    +pynetdicom.sop_class.BasicFilmSession = '1.2.840.10008.5.1.1.1'[source]

    1.2.840.10008.5.1.1.1

    diff --git a/dev/reference/generated/pynetdicom.sop_class.BasicGrayscaleImageBox.html b/dev/reference/generated/pynetdicom.sop_class.BasicGrayscaleImageBox.html index 0f8641e34..1ea0bcbb3 100644 --- a/dev/reference/generated/pynetdicom.sop_class.BasicGrayscaleImageBox.html +++ b/dev/reference/generated/pynetdicom.sop_class.BasicGrayscaleImageBox.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.BasicGrayscaleImageBox

    +

    pynetdicom.sop_class.BasicGrayscaleImageBox

    -pynetdicom.sop_class.BasicGrayscaleImageBox = '1.2.840.10008.5.1.1.4'[source]
    +pynetdicom.sop_class.BasicGrayscaleImageBox = '1.2.840.10008.5.1.1.4'[source]

    1.2.840.10008.5.1.1.4

    diff --git a/dev/reference/generated/pynetdicom.sop_class.BasicGrayscalePrintManagementMeta.html b/dev/reference/generated/pynetdicom.sop_class.BasicGrayscalePrintManagementMeta.html index 55391201e..3987713e3 100644 --- a/dev/reference/generated/pynetdicom.sop_class.BasicGrayscalePrintManagementMeta.html +++ b/dev/reference/generated/pynetdicom.sop_class.BasicGrayscalePrintManagementMeta.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.BasicGrayscalePrintManagementMeta

    +

    pynetdicom.sop_class.BasicGrayscalePrintManagementMeta

    -pynetdicom.sop_class.BasicGrayscalePrintManagementMeta = '1.2.840.10008.5.1.1.9'[source]
    +pynetdicom.sop_class.BasicGrayscalePrintManagementMeta = '1.2.840.10008.5.1.1.9'[source]

    1.2.840.10008.5.1.1.9

    diff --git a/dev/reference/generated/pynetdicom.sop_class.BasicStructuredDisplayStorage.html b/dev/reference/generated/pynetdicom.sop_class.BasicStructuredDisplayStorage.html index 7ff6985d6..3b7175c3f 100644 --- a/dev/reference/generated/pynetdicom.sop_class.BasicStructuredDisplayStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.BasicStructuredDisplayStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.BasicStructuredDisplayStorage

    +

    pynetdicom.sop_class.BasicStructuredDisplayStorage

    -pynetdicom.sop_class.BasicStructuredDisplayStorage = '1.2.840.10008.5.1.4.1.1.131'[source]
    +pynetdicom.sop_class.BasicStructuredDisplayStorage = '1.2.840.10008.5.1.4.1.1.131'[source]

    1.2.840.10008.5.1.4.1.1.131

    diff --git a/dev/reference/generated/pynetdicom.sop_class.BasicTextSRStorage.html b/dev/reference/generated/pynetdicom.sop_class.BasicTextSRStorage.html index cdfbbcf96..8380c6907 100644 --- a/dev/reference/generated/pynetdicom.sop_class.BasicTextSRStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.BasicTextSRStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.BasicTextSRStorage

    +

    pynetdicom.sop_class.BasicTextSRStorage

    -pynetdicom.sop_class.BasicTextSRStorage = '1.2.840.10008.5.1.4.1.1.88.11'[source]
    +pynetdicom.sop_class.BasicTextSRStorage = '1.2.840.10008.5.1.4.1.1.88.11'[source]

    1.2.840.10008.5.1.4.1.1.88.11

    diff --git a/dev/reference/generated/pynetdicom.sop_class.BasicVoiceAudioWaveformStorage.html b/dev/reference/generated/pynetdicom.sop_class.BasicVoiceAudioWaveformStorage.html index cf06009ee..087d88638 100644 --- a/dev/reference/generated/pynetdicom.sop_class.BasicVoiceAudioWaveformStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.BasicVoiceAudioWaveformStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.BasicVoiceAudioWaveformStorage

    +

    pynetdicom.sop_class.BasicVoiceAudioWaveformStorage

    -pynetdicom.sop_class.BasicVoiceAudioWaveformStorage = '1.2.840.10008.5.1.4.1.1.9.4.1'[source]
    +pynetdicom.sop_class.BasicVoiceAudioWaveformStorage = '1.2.840.10008.5.1.4.1.1.9.4.1'[source]

    1.2.840.10008.5.1.4.1.1.9.4.1

    diff --git a/dev/reference/generated/pynetdicom.sop_class.BlendingSoftcopyPresentationStateStorage.html b/dev/reference/generated/pynetdicom.sop_class.BlendingSoftcopyPresentationStateStorage.html index d78a8597b..19af2e30d 100644 --- a/dev/reference/generated/pynetdicom.sop_class.BlendingSoftcopyPresentationStateStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.BlendingSoftcopyPresentationStateStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.BlendingSoftcopyPresentationStateStorage

    +

    pynetdicom.sop_class.BlendingSoftcopyPresentationStateStorage

    -pynetdicom.sop_class.BlendingSoftcopyPresentationStateStorage = '1.2.840.10008.5.1.4.1.1.11.4'[source]
    +pynetdicom.sop_class.BlendingSoftcopyPresentationStateStorage = '1.2.840.10008.5.1.4.1.1.11.4'[source]

    1.2.840.10008.5.1.4.1.1.11.4

    diff --git a/dev/reference/generated/pynetdicom.sop_class.BodyPositionWaveformStorage.html b/dev/reference/generated/pynetdicom.sop_class.BodyPositionWaveformStorage.html index 370a38833..498c58380 100644 --- a/dev/reference/generated/pynetdicom.sop_class.BodyPositionWaveformStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.BodyPositionWaveformStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.BodyPositionWaveformStorage

    +

    pynetdicom.sop_class.BodyPositionWaveformStorage

    -pynetdicom.sop_class.BodyPositionWaveformStorage = '1.2.840.10008.5.1.4.1.1.9.8.1'[source]
    +pynetdicom.sop_class.BodyPositionWaveformStorage = '1.2.840.10008.5.1.4.1.1.9.8.1'[source]

    1.2.840.10008.5.1.4.1.1.9.8.1

    diff --git a/dev/reference/generated/pynetdicom.sop_class.BreastImagingRelevantPatientInformationQuery.html b/dev/reference/generated/pynetdicom.sop_class.BreastImagingRelevantPatientInformationQuery.html index 8e4d65ddb..cf5036207 100644 --- a/dev/reference/generated/pynetdicom.sop_class.BreastImagingRelevantPatientInformationQuery.html +++ b/dev/reference/generated/pynetdicom.sop_class.BreastImagingRelevantPatientInformationQuery.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.BreastImagingRelevantPatientInformationQuery

    +

    pynetdicom.sop_class.BreastImagingRelevantPatientInformationQuery

    -pynetdicom.sop_class.BreastImagingRelevantPatientInformationQuery = '1.2.840.10008.5.1.4.37.2'[source]
    +pynetdicom.sop_class.BreastImagingRelevantPatientInformationQuery = '1.2.840.10008.5.1.4.37.2'[source]

    1.2.840.10008.5.1.4.37.2

    diff --git a/dev/reference/generated/pynetdicom.sop_class.BreastProjectionXRayImageStorageForPresentation.html b/dev/reference/generated/pynetdicom.sop_class.BreastProjectionXRayImageStorageForPresentation.html index 90a176c75..82946ae0d 100644 --- a/dev/reference/generated/pynetdicom.sop_class.BreastProjectionXRayImageStorageForPresentation.html +++ b/dev/reference/generated/pynetdicom.sop_class.BreastProjectionXRayImageStorageForPresentation.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.BreastProjectionXRayImageStorageForPresentation

    +

    pynetdicom.sop_class.BreastProjectionXRayImageStorageForPresentation

    -pynetdicom.sop_class.BreastProjectionXRayImageStorageForPresentation = '1.2.840.10008.5.1.4.1.1.13.1.4'[source]
    +pynetdicom.sop_class.BreastProjectionXRayImageStorageForPresentation = '1.2.840.10008.5.1.4.1.1.13.1.4'[source]

    1.2.840.10008.5.1.4.1.1.13.1.4

    diff --git a/dev/reference/generated/pynetdicom.sop_class.BreastProjectionXRayImageStorageForProcessing.html b/dev/reference/generated/pynetdicom.sop_class.BreastProjectionXRayImageStorageForProcessing.html index d690d112e..c49f9a70e 100644 --- a/dev/reference/generated/pynetdicom.sop_class.BreastProjectionXRayImageStorageForProcessing.html +++ b/dev/reference/generated/pynetdicom.sop_class.BreastProjectionXRayImageStorageForProcessing.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.BreastProjectionXRayImageStorageForProcessing

    +

    pynetdicom.sop_class.BreastProjectionXRayImageStorageForProcessing

    -pynetdicom.sop_class.BreastProjectionXRayImageStorageForProcessing = '1.2.840.10008.5.1.4.1.1.13.1.5'[source]
    +pynetdicom.sop_class.BreastProjectionXRayImageStorageForProcessing = '1.2.840.10008.5.1.4.1.1.13.1.5'[source]

    1.2.840.10008.5.1.4.1.1.13.1.5

    diff --git a/dev/reference/generated/pynetdicom.sop_class.BreastTomosynthesisImageStorage.html b/dev/reference/generated/pynetdicom.sop_class.BreastTomosynthesisImageStorage.html index e59d122ee..7bd124e37 100644 --- a/dev/reference/generated/pynetdicom.sop_class.BreastTomosynthesisImageStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.BreastTomosynthesisImageStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.BreastTomosynthesisImageStorage

    +

    pynetdicom.sop_class.BreastTomosynthesisImageStorage

    -pynetdicom.sop_class.BreastTomosynthesisImageStorage = '1.2.840.10008.5.1.4.1.1.13.1.3'[source]
    +pynetdicom.sop_class.BreastTomosynthesisImageStorage = '1.2.840.10008.5.1.4.1.1.13.1.3'[source]

    1.2.840.10008.5.1.4.1.1.13.1.3

    diff --git a/dev/reference/generated/pynetdicom.sop_class.CArmPhotonElectronRadiationRecordStorage.html b/dev/reference/generated/pynetdicom.sop_class.CArmPhotonElectronRadiationRecordStorage.html index a809b35b8..2eacbea98 100644 --- a/dev/reference/generated/pynetdicom.sop_class.CArmPhotonElectronRadiationRecordStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.CArmPhotonElectronRadiationRecordStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.CArmPhotonElectronRadiationRecordStorage

    +

    pynetdicom.sop_class.CArmPhotonElectronRadiationRecordStorage

    -pynetdicom.sop_class.CArmPhotonElectronRadiationRecordStorage = '1.2.840.10008.5.1.4.1.1.481.19'[source]
    +pynetdicom.sop_class.CArmPhotonElectronRadiationRecordStorage = '1.2.840.10008.5.1.4.1.1.481.19'[source]

    1.2.840.10008.5.1.4.1.1.481.19

    diff --git a/dev/reference/generated/pynetdicom.sop_class.CArmPhotonElectronRadiationStorage.html b/dev/reference/generated/pynetdicom.sop_class.CArmPhotonElectronRadiationStorage.html index 74655f766..93a155000 100644 --- a/dev/reference/generated/pynetdicom.sop_class.CArmPhotonElectronRadiationStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.CArmPhotonElectronRadiationStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.CArmPhotonElectronRadiationStorage

    +

    pynetdicom.sop_class.CArmPhotonElectronRadiationStorage

    -pynetdicom.sop_class.CArmPhotonElectronRadiationStorage = '1.2.840.10008.5.1.4.1.1.481.13'[source]
    +pynetdicom.sop_class.CArmPhotonElectronRadiationStorage = '1.2.840.10008.5.1.4.1.1.481.13'[source]

    1.2.840.10008.5.1.4.1.1.481.13

    diff --git a/dev/reference/generated/pynetdicom.sop_class.CTDefinedProcedureProtocolStorage.html b/dev/reference/generated/pynetdicom.sop_class.CTDefinedProcedureProtocolStorage.html index 8e9f22bdc..23876a90e 100644 --- a/dev/reference/generated/pynetdicom.sop_class.CTDefinedProcedureProtocolStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.CTDefinedProcedureProtocolStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.CTDefinedProcedureProtocolStorage

    +

    pynetdicom.sop_class.CTDefinedProcedureProtocolStorage

    -pynetdicom.sop_class.CTDefinedProcedureProtocolStorage = '1.2.840.10008.5.1.4.1.1.200.1'[source]
    +pynetdicom.sop_class.CTDefinedProcedureProtocolStorage = '1.2.840.10008.5.1.4.1.1.200.1'[source]

    1.2.840.10008.5.1.4.1.1.200.1

    diff --git a/dev/reference/generated/pynetdicom.sop_class.CTImageStorage.html b/dev/reference/generated/pynetdicom.sop_class.CTImageStorage.html index a7f8b2e25..e7ffaf77a 100644 --- a/dev/reference/generated/pynetdicom.sop_class.CTImageStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.CTImageStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.CTImageStorage

    +

    pynetdicom.sop_class.CTImageStorage

    -pynetdicom.sop_class.CTImageStorage = '1.2.840.10008.5.1.4.1.1.2'[source]
    +pynetdicom.sop_class.CTImageStorage = '1.2.840.10008.5.1.4.1.1.2'[source]

    1.2.840.10008.5.1.4.1.1.2

    diff --git a/dev/reference/generated/pynetdicom.sop_class.CTPerformedProcedureProtocolStorage.html b/dev/reference/generated/pynetdicom.sop_class.CTPerformedProcedureProtocolStorage.html index 5b15e8f07..2f0540776 100644 --- a/dev/reference/generated/pynetdicom.sop_class.CTPerformedProcedureProtocolStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.CTPerformedProcedureProtocolStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.CTPerformedProcedureProtocolStorage

    +

    pynetdicom.sop_class.CTPerformedProcedureProtocolStorage

    -pynetdicom.sop_class.CTPerformedProcedureProtocolStorage = '1.2.840.10008.5.1.4.1.1.200.2'[source]
    +pynetdicom.sop_class.CTPerformedProcedureProtocolStorage = '1.2.840.10008.5.1.4.1.1.200.2'[source]

    1.2.840.10008.5.1.4.1.1.200.2

    diff --git a/dev/reference/generated/pynetdicom.sop_class.CardiacElectrophysiologyWaveformStorage.html b/dev/reference/generated/pynetdicom.sop_class.CardiacElectrophysiologyWaveformStorage.html index 27b1ada82..c9d770938 100644 --- a/dev/reference/generated/pynetdicom.sop_class.CardiacElectrophysiologyWaveformStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.CardiacElectrophysiologyWaveformStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.CardiacElectrophysiologyWaveformStorage

    +

    pynetdicom.sop_class.CardiacElectrophysiologyWaveformStorage

    -pynetdicom.sop_class.CardiacElectrophysiologyWaveformStorage = '1.2.840.10008.5.1.4.1.1.9.3.1'[source]
    +pynetdicom.sop_class.CardiacElectrophysiologyWaveformStorage = '1.2.840.10008.5.1.4.1.1.9.3.1'[source]

    1.2.840.10008.5.1.4.1.1.9.3.1

    diff --git a/dev/reference/generated/pynetdicom.sop_class.CardiacRelevantPatientInformationQuery.html b/dev/reference/generated/pynetdicom.sop_class.CardiacRelevantPatientInformationQuery.html index e6e924e5e..d7db1f5fd 100644 --- a/dev/reference/generated/pynetdicom.sop_class.CardiacRelevantPatientInformationQuery.html +++ b/dev/reference/generated/pynetdicom.sop_class.CardiacRelevantPatientInformationQuery.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.CardiacRelevantPatientInformationQuery

    +

    pynetdicom.sop_class.CardiacRelevantPatientInformationQuery

    -pynetdicom.sop_class.CardiacRelevantPatientInformationQuery = '1.2.840.10008.5.1.4.37.3'[source]
    +pynetdicom.sop_class.CardiacRelevantPatientInformationQuery = '1.2.840.10008.5.1.4.37.3'[source]

    1.2.840.10008.5.1.4.37.3

    diff --git a/dev/reference/generated/pynetdicom.sop_class.ChestCADSRStorage.html b/dev/reference/generated/pynetdicom.sop_class.ChestCADSRStorage.html index 0fcbc4e46..f9f08767f 100644 --- a/dev/reference/generated/pynetdicom.sop_class.ChestCADSRStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.ChestCADSRStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.ChestCADSRStorage

    +

    pynetdicom.sop_class.ChestCADSRStorage

    -pynetdicom.sop_class.ChestCADSRStorage = '1.2.840.10008.5.1.4.1.1.88.65'[source]
    +pynetdicom.sop_class.ChestCADSRStorage = '1.2.840.10008.5.1.4.1.1.88.65'[source]

    1.2.840.10008.5.1.4.1.1.88.65

    diff --git a/dev/reference/generated/pynetdicom.sop_class.ColonCADSRStorage.html b/dev/reference/generated/pynetdicom.sop_class.ColonCADSRStorage.html index a8579748b..315c6fce5 100644 --- a/dev/reference/generated/pynetdicom.sop_class.ColonCADSRStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.ColonCADSRStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.ColonCADSRStorage

    +

    pynetdicom.sop_class.ColonCADSRStorage

    -pynetdicom.sop_class.ColonCADSRStorage = '1.2.840.10008.5.1.4.1.1.88.69'[source]
    +pynetdicom.sop_class.ColonCADSRStorage = '1.2.840.10008.5.1.4.1.1.88.69'[source]

    1.2.840.10008.5.1.4.1.1.88.69

    diff --git a/dev/reference/generated/pynetdicom.sop_class.ColorPaletteInformationModelFind.html b/dev/reference/generated/pynetdicom.sop_class.ColorPaletteInformationModelFind.html index 496a04f78..1ed25c0c0 100644 --- a/dev/reference/generated/pynetdicom.sop_class.ColorPaletteInformationModelFind.html +++ b/dev/reference/generated/pynetdicom.sop_class.ColorPaletteInformationModelFind.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.ColorPaletteInformationModelFind

    +

    pynetdicom.sop_class.ColorPaletteInformationModelFind

    -pynetdicom.sop_class.ColorPaletteInformationModelFind = '1.2.840.10008.5.1.4.39.2'[source]
    +pynetdicom.sop_class.ColorPaletteInformationModelFind = '1.2.840.10008.5.1.4.39.2'[source]

    1.2.840.10008.5.1.4.39.2

    diff --git a/dev/reference/generated/pynetdicom.sop_class.ColorPaletteInformationModelGet.html b/dev/reference/generated/pynetdicom.sop_class.ColorPaletteInformationModelGet.html index 771d16e4d..57bb1d399 100644 --- a/dev/reference/generated/pynetdicom.sop_class.ColorPaletteInformationModelGet.html +++ b/dev/reference/generated/pynetdicom.sop_class.ColorPaletteInformationModelGet.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.ColorPaletteInformationModelGet

    +

    pynetdicom.sop_class.ColorPaletteInformationModelGet

    -pynetdicom.sop_class.ColorPaletteInformationModelGet = '1.2.840.10008.5.1.4.39.4'[source]
    +pynetdicom.sop_class.ColorPaletteInformationModelGet = '1.2.840.10008.5.1.4.39.4'[source]

    1.2.840.10008.5.1.4.39.4

    diff --git a/dev/reference/generated/pynetdicom.sop_class.ColorPaletteInformationModelMove.html b/dev/reference/generated/pynetdicom.sop_class.ColorPaletteInformationModelMove.html index da748596b..7277ac9f1 100644 --- a/dev/reference/generated/pynetdicom.sop_class.ColorPaletteInformationModelMove.html +++ b/dev/reference/generated/pynetdicom.sop_class.ColorPaletteInformationModelMove.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.ColorPaletteInformationModelMove

    +

    pynetdicom.sop_class.ColorPaletteInformationModelMove

    -pynetdicom.sop_class.ColorPaletteInformationModelMove = '1.2.840.10008.5.1.4.39.3'[source]
    +pynetdicom.sop_class.ColorPaletteInformationModelMove = '1.2.840.10008.5.1.4.39.3'[source]

    1.2.840.10008.5.1.4.39.3

    diff --git a/dev/reference/generated/pynetdicom.sop_class.ColorPaletteStorage.html b/dev/reference/generated/pynetdicom.sop_class.ColorPaletteStorage.html index b616ad1fe..a0e21d13a 100644 --- a/dev/reference/generated/pynetdicom.sop_class.ColorPaletteStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.ColorPaletteStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.ColorPaletteStorage

    +

    pynetdicom.sop_class.ColorPaletteStorage

    -pynetdicom.sop_class.ColorPaletteStorage = '1.2.840.10008.5.1.4.39.1'[source]
    +pynetdicom.sop_class.ColorPaletteStorage = '1.2.840.10008.5.1.4.39.1'[source]

    1.2.840.10008.5.1.4.39.1

    diff --git a/dev/reference/generated/pynetdicom.sop_class.ColorSoftcopyPresentationStateStorage.html b/dev/reference/generated/pynetdicom.sop_class.ColorSoftcopyPresentationStateStorage.html index 013e6549d..46636635b 100644 --- a/dev/reference/generated/pynetdicom.sop_class.ColorSoftcopyPresentationStateStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.ColorSoftcopyPresentationStateStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.ColorSoftcopyPresentationStateStorage

    +

    pynetdicom.sop_class.ColorSoftcopyPresentationStateStorage

    -pynetdicom.sop_class.ColorSoftcopyPresentationStateStorage = '1.2.840.10008.5.1.4.1.1.11.2'[source]
    +pynetdicom.sop_class.ColorSoftcopyPresentationStateStorage = '1.2.840.10008.5.1.4.1.1.11.2'[source]

    1.2.840.10008.5.1.4.1.1.11.2

    diff --git a/dev/reference/generated/pynetdicom.sop_class.CompositeInstanceRetrieveWithoutBulkDataGet.html b/dev/reference/generated/pynetdicom.sop_class.CompositeInstanceRetrieveWithoutBulkDataGet.html index 38c9fd5ad..9305eefba 100644 --- a/dev/reference/generated/pynetdicom.sop_class.CompositeInstanceRetrieveWithoutBulkDataGet.html +++ b/dev/reference/generated/pynetdicom.sop_class.CompositeInstanceRetrieveWithoutBulkDataGet.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.CompositeInstanceRetrieveWithoutBulkDataGet

    +

    pynetdicom.sop_class.CompositeInstanceRetrieveWithoutBulkDataGet

    -pynetdicom.sop_class.CompositeInstanceRetrieveWithoutBulkDataGet = '1.2.840.10008.5.1.4.1.2.5.3'[source]
    +pynetdicom.sop_class.CompositeInstanceRetrieveWithoutBulkDataGet = '1.2.840.10008.5.1.4.1.2.5.3'[source]

    1.2.840.10008.5.1.4.1.2.5.3

    diff --git a/dev/reference/generated/pynetdicom.sop_class.CompositeInstanceRootRetrieveGet.html b/dev/reference/generated/pynetdicom.sop_class.CompositeInstanceRootRetrieveGet.html index e3033aa60..a4ce3e9f7 100644 --- a/dev/reference/generated/pynetdicom.sop_class.CompositeInstanceRootRetrieveGet.html +++ b/dev/reference/generated/pynetdicom.sop_class.CompositeInstanceRootRetrieveGet.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.CompositeInstanceRootRetrieveGet

    +

    pynetdicom.sop_class.CompositeInstanceRootRetrieveGet

    -pynetdicom.sop_class.CompositeInstanceRootRetrieveGet = '1.2.840.10008.5.1.4.1.2.4.3'[source]
    +pynetdicom.sop_class.CompositeInstanceRootRetrieveGet = '1.2.840.10008.5.1.4.1.2.4.3'[source]

    1.2.840.10008.5.1.4.1.2.4.3

    diff --git a/dev/reference/generated/pynetdicom.sop_class.CompositeInstanceRootRetrieveMove.html b/dev/reference/generated/pynetdicom.sop_class.CompositeInstanceRootRetrieveMove.html index f53052520..c55b7d14d 100644 --- a/dev/reference/generated/pynetdicom.sop_class.CompositeInstanceRootRetrieveMove.html +++ b/dev/reference/generated/pynetdicom.sop_class.CompositeInstanceRootRetrieveMove.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.CompositeInstanceRootRetrieveMove

    +

    pynetdicom.sop_class.CompositeInstanceRootRetrieveMove

    -pynetdicom.sop_class.CompositeInstanceRootRetrieveMove = '1.2.840.10008.5.1.4.1.2.4.2'[source]
    +pynetdicom.sop_class.CompositeInstanceRootRetrieveMove = '1.2.840.10008.5.1.4.1.2.4.2'[source]

    1.2.840.10008.5.1.4.1.2.4.2

    diff --git a/dev/reference/generated/pynetdicom.sop_class.CompositingPlanarMPRVolumetricPresentationStateStorage.html b/dev/reference/generated/pynetdicom.sop_class.CompositingPlanarMPRVolumetricPresentationStateStorage.html index 39d6c6b04..007b11240 100644 --- a/dev/reference/generated/pynetdicom.sop_class.CompositingPlanarMPRVolumetricPresentationStateStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.CompositingPlanarMPRVolumetricPresentationStateStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.CompositingPlanarMPRVolumetricPresentationStateStorage

    +

    pynetdicom.sop_class.CompositingPlanarMPRVolumetricPresentationStateStorage

    -pynetdicom.sop_class.CompositingPlanarMPRVolumetricPresentationStateStorage = '1.2.840.10008.5.1.4.1.1.11.7'[source]
    +pynetdicom.sop_class.CompositingPlanarMPRVolumetricPresentationStateStorage = '1.2.840.10008.5.1.4.1.1.11.7'[source]

    1.2.840.10008.5.1.4.1.1.11.7

    diff --git a/dev/reference/generated/pynetdicom.sop_class.Comprehensive3DSRStorage.html b/dev/reference/generated/pynetdicom.sop_class.Comprehensive3DSRStorage.html index 03c55cba8..a1d0ddcc6 100644 --- a/dev/reference/generated/pynetdicom.sop_class.Comprehensive3DSRStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.Comprehensive3DSRStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.Comprehensive3DSRStorage

    +

    pynetdicom.sop_class.Comprehensive3DSRStorage

    -pynetdicom.sop_class.Comprehensive3DSRStorage = '1.2.840.10008.5.1.4.1.1.88.34'[source]
    +pynetdicom.sop_class.Comprehensive3DSRStorage = '1.2.840.10008.5.1.4.1.1.88.34'[source]

    1.2.840.10008.5.1.4.1.1.88.34

    diff --git a/dev/reference/generated/pynetdicom.sop_class.ComprehensiveSRStorage.html b/dev/reference/generated/pynetdicom.sop_class.ComprehensiveSRStorage.html index e7d8667ad..273d659b7 100644 --- a/dev/reference/generated/pynetdicom.sop_class.ComprehensiveSRStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.ComprehensiveSRStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.ComprehensiveSRStorage

    +

    pynetdicom.sop_class.ComprehensiveSRStorage

    -pynetdicom.sop_class.ComprehensiveSRStorage = '1.2.840.10008.5.1.4.1.1.88.33'[source]
    +pynetdicom.sop_class.ComprehensiveSRStorage = '1.2.840.10008.5.1.4.1.1.88.33'[source]

    1.2.840.10008.5.1.4.1.1.88.33

    diff --git a/dev/reference/generated/pynetdicom.sop_class.ComputedRadiographyImageStorage.html b/dev/reference/generated/pynetdicom.sop_class.ComputedRadiographyImageStorage.html index b316b4048..8fb8c6363 100644 --- a/dev/reference/generated/pynetdicom.sop_class.ComputedRadiographyImageStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.ComputedRadiographyImageStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.ComputedRadiographyImageStorage

    +

    pynetdicom.sop_class.ComputedRadiographyImageStorage

    -pynetdicom.sop_class.ComputedRadiographyImageStorage = '1.2.840.10008.5.1.4.1.1.1'[source]
    +pynetdicom.sop_class.ComputedRadiographyImageStorage = '1.2.840.10008.5.1.4.1.1.1'[source]

    1.2.840.10008.5.1.4.1.1.1

    diff --git a/dev/reference/generated/pynetdicom.sop_class.ContentAssessmentResultsStorage.html b/dev/reference/generated/pynetdicom.sop_class.ContentAssessmentResultsStorage.html index a233d1fd2..0a210ad27 100644 --- a/dev/reference/generated/pynetdicom.sop_class.ContentAssessmentResultsStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.ContentAssessmentResultsStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.ContentAssessmentResultsStorage

    +

    pynetdicom.sop_class.ContentAssessmentResultsStorage

    -pynetdicom.sop_class.ContentAssessmentResultsStorage = '1.2.840.10008.5.1.4.1.1.90.1'[source]
    +pynetdicom.sop_class.ContentAssessmentResultsStorage = '1.2.840.10008.5.1.4.1.1.90.1'[source]

    1.2.840.10008.5.1.4.1.1.90.1

    diff --git a/dev/reference/generated/pynetdicom.sop_class.CornealTopographyMapStorage.html b/dev/reference/generated/pynetdicom.sop_class.CornealTopographyMapStorage.html index 6f9eb3869..08dd59aa5 100644 --- a/dev/reference/generated/pynetdicom.sop_class.CornealTopographyMapStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.CornealTopographyMapStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.CornealTopographyMapStorage

    +

    pynetdicom.sop_class.CornealTopographyMapStorage

    -pynetdicom.sop_class.CornealTopographyMapStorage = '1.2.840.10008.5.1.4.1.1.82.1'[source]
    +pynetdicom.sop_class.CornealTopographyMapStorage = '1.2.840.10008.5.1.4.1.1.82.1'[source]

    1.2.840.10008.5.1.4.1.1.82.1

    diff --git a/dev/reference/generated/pynetdicom.sop_class.DefinedProcedureProtocolInformationModelFind.html b/dev/reference/generated/pynetdicom.sop_class.DefinedProcedureProtocolInformationModelFind.html index 30397cf64..2fffda4dd 100644 --- a/dev/reference/generated/pynetdicom.sop_class.DefinedProcedureProtocolInformationModelFind.html +++ b/dev/reference/generated/pynetdicom.sop_class.DefinedProcedureProtocolInformationModelFind.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.DefinedProcedureProtocolInformationModelFind

    +

    pynetdicom.sop_class.DefinedProcedureProtocolInformationModelFind

    -pynetdicom.sop_class.DefinedProcedureProtocolInformationModelFind = '1.2.840.10008.5.1.4.20.1'[source]
    +pynetdicom.sop_class.DefinedProcedureProtocolInformationModelFind = '1.2.840.10008.5.1.4.20.1'[source]

    1.2.840.10008.5.1.4.20.1

    diff --git a/dev/reference/generated/pynetdicom.sop_class.DefinedProcedureProtocolInformationModelGet.html b/dev/reference/generated/pynetdicom.sop_class.DefinedProcedureProtocolInformationModelGet.html index 0aebdc4c9..e9e1f5365 100644 --- a/dev/reference/generated/pynetdicom.sop_class.DefinedProcedureProtocolInformationModelGet.html +++ b/dev/reference/generated/pynetdicom.sop_class.DefinedProcedureProtocolInformationModelGet.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.DefinedProcedureProtocolInformationModelGet

    +

    pynetdicom.sop_class.DefinedProcedureProtocolInformationModelGet

    -pynetdicom.sop_class.DefinedProcedureProtocolInformationModelGet = '1.2.840.10008.5.1.4.20.3'[source]
    +pynetdicom.sop_class.DefinedProcedureProtocolInformationModelGet = '1.2.840.10008.5.1.4.20.3'[source]

    1.2.840.10008.5.1.4.20.3

    diff --git a/dev/reference/generated/pynetdicom.sop_class.DefinedProcedureProtocolInformationModelMove.html b/dev/reference/generated/pynetdicom.sop_class.DefinedProcedureProtocolInformationModelMove.html index 0d0b73c03..553e0def1 100644 --- a/dev/reference/generated/pynetdicom.sop_class.DefinedProcedureProtocolInformationModelMove.html +++ b/dev/reference/generated/pynetdicom.sop_class.DefinedProcedureProtocolInformationModelMove.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.DefinedProcedureProtocolInformationModelMove

    +

    pynetdicom.sop_class.DefinedProcedureProtocolInformationModelMove

    -pynetdicom.sop_class.DefinedProcedureProtocolInformationModelMove = '1.2.840.10008.5.1.4.20.2'[source]
    +pynetdicom.sop_class.DefinedProcedureProtocolInformationModelMove = '1.2.840.10008.5.1.4.20.2'[source]

    1.2.840.10008.5.1.4.20.2

    diff --git a/dev/reference/generated/pynetdicom.sop_class.DeformableSpatialRegistrationStorage.html b/dev/reference/generated/pynetdicom.sop_class.DeformableSpatialRegistrationStorage.html index 4f4214bbb..fe009de89 100644 --- a/dev/reference/generated/pynetdicom.sop_class.DeformableSpatialRegistrationStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.DeformableSpatialRegistrationStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.DeformableSpatialRegistrationStorage

    +

    pynetdicom.sop_class.DeformableSpatialRegistrationStorage

    -pynetdicom.sop_class.DeformableSpatialRegistrationStorage = '1.2.840.10008.5.1.4.1.1.66.3'[source]
    +pynetdicom.sop_class.DeformableSpatialRegistrationStorage = '1.2.840.10008.5.1.4.1.1.66.3'[source]

    1.2.840.10008.5.1.4.1.1.66.3

    diff --git a/dev/reference/generated/pynetdicom.sop_class.DermoscopicPhotographyImageStorage.html b/dev/reference/generated/pynetdicom.sop_class.DermoscopicPhotographyImageStorage.html index ec960d5fc..8cb97bc65 100644 --- a/dev/reference/generated/pynetdicom.sop_class.DermoscopicPhotographyImageStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.DermoscopicPhotographyImageStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.DermoscopicPhotographyImageStorage

    +

    pynetdicom.sop_class.DermoscopicPhotographyImageStorage

    -pynetdicom.sop_class.DermoscopicPhotographyImageStorage = '1.2.840.10008.5.1.4.1.1.77.1.7'[source]
    +pynetdicom.sop_class.DermoscopicPhotographyImageStorage = '1.2.840.10008.5.1.4.1.1.77.1.7'[source]

    1.2.840.10008.5.1.4.1.1.77.1.7

    diff --git a/dev/reference/generated/pynetdicom.sop_class.DigitalIntraOralXRayImageStorageForPresentation.html b/dev/reference/generated/pynetdicom.sop_class.DigitalIntraOralXRayImageStorageForPresentation.html index ea7d5d2d9..e09a7a4f1 100644 --- a/dev/reference/generated/pynetdicom.sop_class.DigitalIntraOralXRayImageStorageForPresentation.html +++ b/dev/reference/generated/pynetdicom.sop_class.DigitalIntraOralXRayImageStorageForPresentation.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.DigitalIntraOralXRayImageStorageForPresentation

    +

    pynetdicom.sop_class.DigitalIntraOralXRayImageStorageForPresentation

    -pynetdicom.sop_class.DigitalIntraOralXRayImageStorageForPresentation = '1.2.840.10008.5.1.4.1.1.1.3'[source]
    +pynetdicom.sop_class.DigitalIntraOralXRayImageStorageForPresentation = '1.2.840.10008.5.1.4.1.1.1.3'[source]

    1.2.840.10008.5.1.4.1.1.1.3

    diff --git a/dev/reference/generated/pynetdicom.sop_class.DigitalIntraOralXRayImageStorageForProcessing.html b/dev/reference/generated/pynetdicom.sop_class.DigitalIntraOralXRayImageStorageForProcessing.html index da1480c57..bd10b9906 100644 --- a/dev/reference/generated/pynetdicom.sop_class.DigitalIntraOralXRayImageStorageForProcessing.html +++ b/dev/reference/generated/pynetdicom.sop_class.DigitalIntraOralXRayImageStorageForProcessing.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.DigitalIntraOralXRayImageStorageForProcessing

    +

    pynetdicom.sop_class.DigitalIntraOralXRayImageStorageForProcessing

    -pynetdicom.sop_class.DigitalIntraOralXRayImageStorageForProcessing = '1.2.840.10008.5.1.4.1.1.1.3.1'[source]
    +pynetdicom.sop_class.DigitalIntraOralXRayImageStorageForProcessing = '1.2.840.10008.5.1.4.1.1.1.3.1'[source]

    1.2.840.10008.5.1.4.1.1.1.3.1

    diff --git a/dev/reference/generated/pynetdicom.sop_class.DigitalMammographyXRayImageStorageForPresentation.html b/dev/reference/generated/pynetdicom.sop_class.DigitalMammographyXRayImageStorageForPresentation.html index c9db353c8..251955cf4 100644 --- a/dev/reference/generated/pynetdicom.sop_class.DigitalMammographyXRayImageStorageForPresentation.html +++ b/dev/reference/generated/pynetdicom.sop_class.DigitalMammographyXRayImageStorageForPresentation.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.DigitalMammographyXRayImageStorageForPresentation

    +

    pynetdicom.sop_class.DigitalMammographyXRayImageStorageForPresentation

    -pynetdicom.sop_class.DigitalMammographyXRayImageStorageForPresentation = '1.2.840.10008.5.1.4.1.1.1.2'[source]
    +pynetdicom.sop_class.DigitalMammographyXRayImageStorageForPresentation = '1.2.840.10008.5.1.4.1.1.1.2'[source]

    1.2.840.10008.5.1.4.1.1.1.2

    diff --git a/dev/reference/generated/pynetdicom.sop_class.DigitalMammographyXRayImageStorageForProcessing.html b/dev/reference/generated/pynetdicom.sop_class.DigitalMammographyXRayImageStorageForProcessing.html index 06e5cdbb9..a73b252d5 100644 --- a/dev/reference/generated/pynetdicom.sop_class.DigitalMammographyXRayImageStorageForProcessing.html +++ b/dev/reference/generated/pynetdicom.sop_class.DigitalMammographyXRayImageStorageForProcessing.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.DigitalMammographyXRayImageStorageForProcessing

    +

    pynetdicom.sop_class.DigitalMammographyXRayImageStorageForProcessing

    -pynetdicom.sop_class.DigitalMammographyXRayImageStorageForProcessing = '1.2.840.10008.5.1.4.1.1.1.2.1'[source]
    +pynetdicom.sop_class.DigitalMammographyXRayImageStorageForProcessing = '1.2.840.10008.5.1.4.1.1.1.2.1'[source]

    1.2.840.10008.5.1.4.1.1.1.2.1

    diff --git a/dev/reference/generated/pynetdicom.sop_class.DigitalXRayImageStorageForPresentation.html b/dev/reference/generated/pynetdicom.sop_class.DigitalXRayImageStorageForPresentation.html index 8858ae85c..aeaae8b58 100644 --- a/dev/reference/generated/pynetdicom.sop_class.DigitalXRayImageStorageForPresentation.html +++ b/dev/reference/generated/pynetdicom.sop_class.DigitalXRayImageStorageForPresentation.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.DigitalXRayImageStorageForPresentation

    +

    pynetdicom.sop_class.DigitalXRayImageStorageForPresentation

    -pynetdicom.sop_class.DigitalXRayImageStorageForPresentation = '1.2.840.10008.5.1.4.1.1.1.1'[source]
    +pynetdicom.sop_class.DigitalXRayImageStorageForPresentation = '1.2.840.10008.5.1.4.1.1.1.1'[source]

    1.2.840.10008.5.1.4.1.1.1.1

    diff --git a/dev/reference/generated/pynetdicom.sop_class.DigitalXRayImageStorageForProcessing.html b/dev/reference/generated/pynetdicom.sop_class.DigitalXRayImageStorageForProcessing.html index 5b7aeecd0..f8c2743a3 100644 --- a/dev/reference/generated/pynetdicom.sop_class.DigitalXRayImageStorageForProcessing.html +++ b/dev/reference/generated/pynetdicom.sop_class.DigitalXRayImageStorageForProcessing.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.DigitalXRayImageStorageForProcessing

    +

    pynetdicom.sop_class.DigitalXRayImageStorageForProcessing

    -pynetdicom.sop_class.DigitalXRayImageStorageForProcessing = '1.2.840.10008.5.1.4.1.1.1.1.1'[source]
    +pynetdicom.sop_class.DigitalXRayImageStorageForProcessing = '1.2.840.10008.5.1.4.1.1.1.1.1'[source]

    1.2.840.10008.5.1.4.1.1.1.1.1

    diff --git a/dev/reference/generated/pynetdicom.sop_class.DisplaySystem.html b/dev/reference/generated/pynetdicom.sop_class.DisplaySystem.html index 6ea6106ba..5d2bab83b 100644 --- a/dev/reference/generated/pynetdicom.sop_class.DisplaySystem.html +++ b/dev/reference/generated/pynetdicom.sop_class.DisplaySystem.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.DisplaySystem

    +

    pynetdicom.sop_class.DisplaySystem

    -pynetdicom.sop_class.DisplaySystem = '1.2.840.10008.5.1.1.40'[source]
    +pynetdicom.sop_class.DisplaySystem = '1.2.840.10008.5.1.1.40'[source]

    1.2.840.10008.5.1.1.40

    diff --git a/dev/reference/generated/pynetdicom.sop_class.DisplaySystemInstance.html b/dev/reference/generated/pynetdicom.sop_class.DisplaySystemInstance.html index 22cd38fd2..8dd926ec6 100644 --- a/dev/reference/generated/pynetdicom.sop_class.DisplaySystemInstance.html +++ b/dev/reference/generated/pynetdicom.sop_class.DisplaySystemInstance.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -126,10 +126,10 @@
    -

    pynetdicom.sop_class.DisplaySystemInstance

    +

    pynetdicom.sop_class.DisplaySystemInstance

    -pynetdicom.sop_class.DisplaySystemInstance = '1.2.840.10008.5.1.1.40.1'[source]
    +pynetdicom.sop_class.DisplaySystemInstance = '1.2.840.10008.5.1.1.40.1'[source]

    1.2.840.10008.5.1.1.40.1

    New in version 1.5.

    diff --git a/dev/reference/generated/pynetdicom.sop_class.ElectromyogramWaveformStorage.html b/dev/reference/generated/pynetdicom.sop_class.ElectromyogramWaveformStorage.html index 17fca78d5..151302111 100644 --- a/dev/reference/generated/pynetdicom.sop_class.ElectromyogramWaveformStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.ElectromyogramWaveformStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.ElectromyogramWaveformStorage

    +

    pynetdicom.sop_class.ElectromyogramWaveformStorage

    -pynetdicom.sop_class.ElectromyogramWaveformStorage = '1.2.840.10008.5.1.4.1.1.9.7.2'[source]
    +pynetdicom.sop_class.ElectromyogramWaveformStorage = '1.2.840.10008.5.1.4.1.1.9.7.2'[source]

    1.2.840.10008.5.1.4.1.1.9.7.2

    diff --git a/dev/reference/generated/pynetdicom.sop_class.ElectrooculogramWaveformStorage.html b/dev/reference/generated/pynetdicom.sop_class.ElectrooculogramWaveformStorage.html index bf7b4899b..b2d75f77c 100644 --- a/dev/reference/generated/pynetdicom.sop_class.ElectrooculogramWaveformStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.ElectrooculogramWaveformStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.ElectrooculogramWaveformStorage

    +

    pynetdicom.sop_class.ElectrooculogramWaveformStorage

    -pynetdicom.sop_class.ElectrooculogramWaveformStorage = '1.2.840.10008.5.1.4.1.1.9.7.3'[source]
    +pynetdicom.sop_class.ElectrooculogramWaveformStorage = '1.2.840.10008.5.1.4.1.1.9.7.3'[source]

    1.2.840.10008.5.1.4.1.1.9.7.3

    diff --git a/dev/reference/generated/pynetdicom.sop_class.EncapsulatedCDAStorage.html b/dev/reference/generated/pynetdicom.sop_class.EncapsulatedCDAStorage.html index 7f56f33ea..d1d449a6d 100644 --- a/dev/reference/generated/pynetdicom.sop_class.EncapsulatedCDAStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.EncapsulatedCDAStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.EncapsulatedCDAStorage

    +

    pynetdicom.sop_class.EncapsulatedCDAStorage

    -pynetdicom.sop_class.EncapsulatedCDAStorage = '1.2.840.10008.5.1.4.1.1.104.2'[source]
    +pynetdicom.sop_class.EncapsulatedCDAStorage = '1.2.840.10008.5.1.4.1.1.104.2'[source]

    1.2.840.10008.5.1.4.1.1.104.2

    diff --git a/dev/reference/generated/pynetdicom.sop_class.EncapsulatedMTLStorage.html b/dev/reference/generated/pynetdicom.sop_class.EncapsulatedMTLStorage.html index aa542b0c1..ac2f14f1f 100644 --- a/dev/reference/generated/pynetdicom.sop_class.EncapsulatedMTLStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.EncapsulatedMTLStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.EncapsulatedMTLStorage

    +

    pynetdicom.sop_class.EncapsulatedMTLStorage

    -pynetdicom.sop_class.EncapsulatedMTLStorage = '1.2.840.10008.5.1.4.1.1.104.5'[source]
    +pynetdicom.sop_class.EncapsulatedMTLStorage = '1.2.840.10008.5.1.4.1.1.104.5'[source]

    1.2.840.10008.5.1.4.1.1.104.5

    diff --git a/dev/reference/generated/pynetdicom.sop_class.EncapsulatedOBJStorage.html b/dev/reference/generated/pynetdicom.sop_class.EncapsulatedOBJStorage.html index 875c5b842..c3bef0892 100644 --- a/dev/reference/generated/pynetdicom.sop_class.EncapsulatedOBJStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.EncapsulatedOBJStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.EncapsulatedOBJStorage

    +

    pynetdicom.sop_class.EncapsulatedOBJStorage

    -pynetdicom.sop_class.EncapsulatedOBJStorage = '1.2.840.10008.5.1.4.1.1.104.4'[source]
    +pynetdicom.sop_class.EncapsulatedOBJStorage = '1.2.840.10008.5.1.4.1.1.104.4'[source]

    1.2.840.10008.5.1.4.1.1.104.4

    diff --git a/dev/reference/generated/pynetdicom.sop_class.EncapsulatedPDFStorage.html b/dev/reference/generated/pynetdicom.sop_class.EncapsulatedPDFStorage.html index b23d9c600..2f9354116 100644 --- a/dev/reference/generated/pynetdicom.sop_class.EncapsulatedPDFStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.EncapsulatedPDFStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.EncapsulatedPDFStorage

    +

    pynetdicom.sop_class.EncapsulatedPDFStorage

    -pynetdicom.sop_class.EncapsulatedPDFStorage = '1.2.840.10008.5.1.4.1.1.104.1'[source]
    +pynetdicom.sop_class.EncapsulatedPDFStorage = '1.2.840.10008.5.1.4.1.1.104.1'[source]

    1.2.840.10008.5.1.4.1.1.104.1

    diff --git a/dev/reference/generated/pynetdicom.sop_class.EncapsulatedSTLStorage.html b/dev/reference/generated/pynetdicom.sop_class.EncapsulatedSTLStorage.html index 606ca3631..6bce0a4b0 100644 --- a/dev/reference/generated/pynetdicom.sop_class.EncapsulatedSTLStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.EncapsulatedSTLStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.EncapsulatedSTLStorage

    +

    pynetdicom.sop_class.EncapsulatedSTLStorage

    -pynetdicom.sop_class.EncapsulatedSTLStorage = '1.2.840.10008.5.1.4.1.1.104.3'[source]
    +pynetdicom.sop_class.EncapsulatedSTLStorage = '1.2.840.10008.5.1.4.1.1.104.3'[source]

    1.2.840.10008.5.1.4.1.1.104.3

    diff --git a/dev/reference/generated/pynetdicom.sop_class.EnhancedCTImageStorage.html b/dev/reference/generated/pynetdicom.sop_class.EnhancedCTImageStorage.html index 05629e88d..2d387ffa6 100644 --- a/dev/reference/generated/pynetdicom.sop_class.EnhancedCTImageStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.EnhancedCTImageStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.EnhancedCTImageStorage

    +

    pynetdicom.sop_class.EnhancedCTImageStorage

    -pynetdicom.sop_class.EnhancedCTImageStorage = '1.2.840.10008.5.1.4.1.1.2.1'[source]
    +pynetdicom.sop_class.EnhancedCTImageStorage = '1.2.840.10008.5.1.4.1.1.2.1'[source]

    1.2.840.10008.5.1.4.1.1.2.1

    diff --git a/dev/reference/generated/pynetdicom.sop_class.EnhancedMRColorImageStorage.html b/dev/reference/generated/pynetdicom.sop_class.EnhancedMRColorImageStorage.html index 7b04678aa..cb685d7b4 100644 --- a/dev/reference/generated/pynetdicom.sop_class.EnhancedMRColorImageStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.EnhancedMRColorImageStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.EnhancedMRColorImageStorage

    +

    pynetdicom.sop_class.EnhancedMRColorImageStorage

    -pynetdicom.sop_class.EnhancedMRColorImageStorage = '1.2.840.10008.5.1.4.1.1.4.3'[source]
    +pynetdicom.sop_class.EnhancedMRColorImageStorage = '1.2.840.10008.5.1.4.1.1.4.3'[source]

    1.2.840.10008.5.1.4.1.1.4.3

    diff --git a/dev/reference/generated/pynetdicom.sop_class.EnhancedMRImageStorage.html b/dev/reference/generated/pynetdicom.sop_class.EnhancedMRImageStorage.html index 59bc163bf..b2de87231 100644 --- a/dev/reference/generated/pynetdicom.sop_class.EnhancedMRImageStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.EnhancedMRImageStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.EnhancedMRImageStorage

    +

    pynetdicom.sop_class.EnhancedMRImageStorage

    -pynetdicom.sop_class.EnhancedMRImageStorage = '1.2.840.10008.5.1.4.1.1.4.1'[source]
    +pynetdicom.sop_class.EnhancedMRImageStorage = '1.2.840.10008.5.1.4.1.1.4.1'[source]

    1.2.840.10008.5.1.4.1.1.4.1

    diff --git a/dev/reference/generated/pynetdicom.sop_class.EnhancedPETImageStorage.html b/dev/reference/generated/pynetdicom.sop_class.EnhancedPETImageStorage.html index 5c6e21e29..863a784e2 100644 --- a/dev/reference/generated/pynetdicom.sop_class.EnhancedPETImageStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.EnhancedPETImageStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.EnhancedPETImageStorage

    +

    pynetdicom.sop_class.EnhancedPETImageStorage

    -pynetdicom.sop_class.EnhancedPETImageStorage = '1.2.840.10008.5.1.4.1.1.130'[source]
    +pynetdicom.sop_class.EnhancedPETImageStorage = '1.2.840.10008.5.1.4.1.1.130'[source]

    1.2.840.10008.5.1.4.1.1.130

    diff --git a/dev/reference/generated/pynetdicom.sop_class.EnhancedSRStorage.html b/dev/reference/generated/pynetdicom.sop_class.EnhancedSRStorage.html index 8807a5166..60478360f 100644 --- a/dev/reference/generated/pynetdicom.sop_class.EnhancedSRStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.EnhancedSRStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.EnhancedSRStorage

    +

    pynetdicom.sop_class.EnhancedSRStorage

    -pynetdicom.sop_class.EnhancedSRStorage = '1.2.840.10008.5.1.4.1.1.88.22'[source]
    +pynetdicom.sop_class.EnhancedSRStorage = '1.2.840.10008.5.1.4.1.1.88.22'[source]

    1.2.840.10008.5.1.4.1.1.88.22

    diff --git a/dev/reference/generated/pynetdicom.sop_class.EnhancedUSVolumeStorage.html b/dev/reference/generated/pynetdicom.sop_class.EnhancedUSVolumeStorage.html index f4a400988..9e80574e0 100644 --- a/dev/reference/generated/pynetdicom.sop_class.EnhancedUSVolumeStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.EnhancedUSVolumeStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.EnhancedUSVolumeStorage

    +

    pynetdicom.sop_class.EnhancedUSVolumeStorage

    -pynetdicom.sop_class.EnhancedUSVolumeStorage = '1.2.840.10008.5.1.4.1.1.6.2'[source]
    +pynetdicom.sop_class.EnhancedUSVolumeStorage = '1.2.840.10008.5.1.4.1.1.6.2'[source]

    1.2.840.10008.5.1.4.1.1.6.2

    diff --git a/dev/reference/generated/pynetdicom.sop_class.EnhancedXAImageStorage.html b/dev/reference/generated/pynetdicom.sop_class.EnhancedXAImageStorage.html index 6dc5457c4..8c6a1ed03 100644 --- a/dev/reference/generated/pynetdicom.sop_class.EnhancedXAImageStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.EnhancedXAImageStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.EnhancedXAImageStorage

    +

    pynetdicom.sop_class.EnhancedXAImageStorage

    -pynetdicom.sop_class.EnhancedXAImageStorage = '1.2.840.10008.5.1.4.1.1.12.1.1'[source]
    +pynetdicom.sop_class.EnhancedXAImageStorage = '1.2.840.10008.5.1.4.1.1.12.1.1'[source]

    1.2.840.10008.5.1.4.1.1.12.1.1

    diff --git a/dev/reference/generated/pynetdicom.sop_class.EnhancedXRFImageStorage.html b/dev/reference/generated/pynetdicom.sop_class.EnhancedXRFImageStorage.html index e665e7a53..c196b4674 100644 --- a/dev/reference/generated/pynetdicom.sop_class.EnhancedXRFImageStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.EnhancedXRFImageStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.EnhancedXRFImageStorage

    +

    pynetdicom.sop_class.EnhancedXRFImageStorage

    -pynetdicom.sop_class.EnhancedXRFImageStorage = '1.2.840.10008.5.1.4.1.1.12.2.1'[source]
    +pynetdicom.sop_class.EnhancedXRFImageStorage = '1.2.840.10008.5.1.4.1.1.12.2.1'[source]

    1.2.840.10008.5.1.4.1.1.12.2.1

    diff --git a/dev/reference/generated/pynetdicom.sop_class.EnhancedXRayRadiationDoseSRStorage.html b/dev/reference/generated/pynetdicom.sop_class.EnhancedXRayRadiationDoseSRStorage.html index ce2e1647f..7f92fa210 100644 --- a/dev/reference/generated/pynetdicom.sop_class.EnhancedXRayRadiationDoseSRStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.EnhancedXRayRadiationDoseSRStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.EnhancedXRayRadiationDoseSRStorage

    +

    pynetdicom.sop_class.EnhancedXRayRadiationDoseSRStorage

    -pynetdicom.sop_class.EnhancedXRayRadiationDoseSRStorage = '1.2.840.10008.5.1.4.1.1.88.76'[source]
    +pynetdicom.sop_class.EnhancedXRayRadiationDoseSRStorage = '1.2.840.10008.5.1.4.1.1.88.76'[source]

    1.2.840.10008.5.1.4.1.1.88.76

    diff --git a/dev/reference/generated/pynetdicom.sop_class.ExtensibleSRStorage.html b/dev/reference/generated/pynetdicom.sop_class.ExtensibleSRStorage.html index 52897850d..b73b6f413 100644 --- a/dev/reference/generated/pynetdicom.sop_class.ExtensibleSRStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.ExtensibleSRStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.ExtensibleSRStorage

    +

    pynetdicom.sop_class.ExtensibleSRStorage

    -pynetdicom.sop_class.ExtensibleSRStorage = '1.2.840.10008.5.1.4.1.1.88.35'[source]
    +pynetdicom.sop_class.ExtensibleSRStorage = '1.2.840.10008.5.1.4.1.1.88.35'[source]

    1.2.840.10008.5.1.4.1.1.88.35

    diff --git a/dev/reference/generated/pynetdicom.sop_class.GeneralAudioWaveformStorage.html b/dev/reference/generated/pynetdicom.sop_class.GeneralAudioWaveformStorage.html index eb114e21d..3ea1b192d 100644 --- a/dev/reference/generated/pynetdicom.sop_class.GeneralAudioWaveformStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.GeneralAudioWaveformStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.GeneralAudioWaveformStorage

    +

    pynetdicom.sop_class.GeneralAudioWaveformStorage

    -pynetdicom.sop_class.GeneralAudioWaveformStorage = '1.2.840.10008.5.1.4.1.1.9.4.2'[source]
    +pynetdicom.sop_class.GeneralAudioWaveformStorage = '1.2.840.10008.5.1.4.1.1.9.4.2'[source]

    1.2.840.10008.5.1.4.1.1.9.4.2

    diff --git a/dev/reference/generated/pynetdicom.sop_class.GeneralECGWaveformStorage.html b/dev/reference/generated/pynetdicom.sop_class.GeneralECGWaveformStorage.html index 7c87a3f8a..8260bd09a 100644 --- a/dev/reference/generated/pynetdicom.sop_class.GeneralECGWaveformStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.GeneralECGWaveformStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.GeneralECGWaveformStorage

    +

    pynetdicom.sop_class.GeneralECGWaveformStorage

    -pynetdicom.sop_class.GeneralECGWaveformStorage = '1.2.840.10008.5.1.4.1.1.9.1.2'[source]
    +pynetdicom.sop_class.GeneralECGWaveformStorage = '1.2.840.10008.5.1.4.1.1.9.1.2'[source]

    1.2.840.10008.5.1.4.1.1.9.1.2

    diff --git a/dev/reference/generated/pynetdicom.sop_class.GeneralRelevantPatientInformationQuery.html b/dev/reference/generated/pynetdicom.sop_class.GeneralRelevantPatientInformationQuery.html index b5bbea586..dc1cd2ac2 100644 --- a/dev/reference/generated/pynetdicom.sop_class.GeneralRelevantPatientInformationQuery.html +++ b/dev/reference/generated/pynetdicom.sop_class.GeneralRelevantPatientInformationQuery.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.GeneralRelevantPatientInformationQuery

    +

    pynetdicom.sop_class.GeneralRelevantPatientInformationQuery

    -pynetdicom.sop_class.GeneralRelevantPatientInformationQuery = '1.2.840.10008.5.1.4.37.1'[source]
    +pynetdicom.sop_class.GeneralRelevantPatientInformationQuery = '1.2.840.10008.5.1.4.37.1'[source]

    1.2.840.10008.5.1.4.37.1

    diff --git a/dev/reference/generated/pynetdicom.sop_class.GenericImplantTemplateInformationModelFind.html b/dev/reference/generated/pynetdicom.sop_class.GenericImplantTemplateInformationModelFind.html index ee4a4d840..fd2e3a475 100644 --- a/dev/reference/generated/pynetdicom.sop_class.GenericImplantTemplateInformationModelFind.html +++ b/dev/reference/generated/pynetdicom.sop_class.GenericImplantTemplateInformationModelFind.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.GenericImplantTemplateInformationModelFind

    +

    pynetdicom.sop_class.GenericImplantTemplateInformationModelFind

    -pynetdicom.sop_class.GenericImplantTemplateInformationModelFind = '1.2.840.10008.5.1.4.43.2'[source]
    +pynetdicom.sop_class.GenericImplantTemplateInformationModelFind = '1.2.840.10008.5.1.4.43.2'[source]

    1.2.840.10008.5.1.4.43.2

    diff --git a/dev/reference/generated/pynetdicom.sop_class.GenericImplantTemplateInformationModelGet.html b/dev/reference/generated/pynetdicom.sop_class.GenericImplantTemplateInformationModelGet.html index e461fb7b4..8f551bc19 100644 --- a/dev/reference/generated/pynetdicom.sop_class.GenericImplantTemplateInformationModelGet.html +++ b/dev/reference/generated/pynetdicom.sop_class.GenericImplantTemplateInformationModelGet.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.GenericImplantTemplateInformationModelGet

    +

    pynetdicom.sop_class.GenericImplantTemplateInformationModelGet

    -pynetdicom.sop_class.GenericImplantTemplateInformationModelGet = '1.2.840.10008.5.1.4.43.4'[source]
    +pynetdicom.sop_class.GenericImplantTemplateInformationModelGet = '1.2.840.10008.5.1.4.43.4'[source]

    1.2.840.10008.5.1.4.43.4

    diff --git a/dev/reference/generated/pynetdicom.sop_class.GenericImplantTemplateInformationModelMove.html b/dev/reference/generated/pynetdicom.sop_class.GenericImplantTemplateInformationModelMove.html index cb8cb9e29..153c52c05 100644 --- a/dev/reference/generated/pynetdicom.sop_class.GenericImplantTemplateInformationModelMove.html +++ b/dev/reference/generated/pynetdicom.sop_class.GenericImplantTemplateInformationModelMove.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.GenericImplantTemplateInformationModelMove

    +

    pynetdicom.sop_class.GenericImplantTemplateInformationModelMove

    -pynetdicom.sop_class.GenericImplantTemplateInformationModelMove = '1.2.840.10008.5.1.4.43.3'[source]
    +pynetdicom.sop_class.GenericImplantTemplateInformationModelMove = '1.2.840.10008.5.1.4.43.3'[source]

    1.2.840.10008.5.1.4.43.3

    diff --git a/dev/reference/generated/pynetdicom.sop_class.GenericImplantTemplateStorage.html b/dev/reference/generated/pynetdicom.sop_class.GenericImplantTemplateStorage.html index c745197cc..a15b95601 100644 --- a/dev/reference/generated/pynetdicom.sop_class.GenericImplantTemplateStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.GenericImplantTemplateStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.GenericImplantTemplateStorage

    +

    pynetdicom.sop_class.GenericImplantTemplateStorage

    -pynetdicom.sop_class.GenericImplantTemplateStorage = '1.2.840.10008.5.1.4.43.1'[source]
    +pynetdicom.sop_class.GenericImplantTemplateStorage = '1.2.840.10008.5.1.4.43.1'[source]

    1.2.840.10008.5.1.4.43.1

    diff --git a/dev/reference/generated/pynetdicom.sop_class.GrayscalePlanarMPRVolumetricPresentationStateStorage.html b/dev/reference/generated/pynetdicom.sop_class.GrayscalePlanarMPRVolumetricPresentationStateStorage.html index 8a83b4a18..4a6d00900 100644 --- a/dev/reference/generated/pynetdicom.sop_class.GrayscalePlanarMPRVolumetricPresentationStateStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.GrayscalePlanarMPRVolumetricPresentationStateStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.GrayscalePlanarMPRVolumetricPresentationStateStorage

    +

    pynetdicom.sop_class.GrayscalePlanarMPRVolumetricPresentationStateStorage

    -pynetdicom.sop_class.GrayscalePlanarMPRVolumetricPresentationStateStorage = '1.2.840.10008.5.1.4.1.1.11.6'[source]
    +pynetdicom.sop_class.GrayscalePlanarMPRVolumetricPresentationStateStorage = '1.2.840.10008.5.1.4.1.1.11.6'[source]

    1.2.840.10008.5.1.4.1.1.11.6

    diff --git a/dev/reference/generated/pynetdicom.sop_class.GrayscaleSoftcopyPresentationStateStorage.html b/dev/reference/generated/pynetdicom.sop_class.GrayscaleSoftcopyPresentationStateStorage.html index 19884967b..eb904f69e 100644 --- a/dev/reference/generated/pynetdicom.sop_class.GrayscaleSoftcopyPresentationStateStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.GrayscaleSoftcopyPresentationStateStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.GrayscaleSoftcopyPresentationStateStorage

    +

    pynetdicom.sop_class.GrayscaleSoftcopyPresentationStateStorage

    -pynetdicom.sop_class.GrayscaleSoftcopyPresentationStateStorage = '1.2.840.10008.5.1.4.1.1.11.1'[source]
    +pynetdicom.sop_class.GrayscaleSoftcopyPresentationStateStorage = '1.2.840.10008.5.1.4.1.1.11.1'[source]

    1.2.840.10008.5.1.4.1.1.11.1

    diff --git a/dev/reference/generated/pynetdicom.sop_class.HangingProtocolInformationModelFind.html b/dev/reference/generated/pynetdicom.sop_class.HangingProtocolInformationModelFind.html index d79777032..52e39c2bb 100644 --- a/dev/reference/generated/pynetdicom.sop_class.HangingProtocolInformationModelFind.html +++ b/dev/reference/generated/pynetdicom.sop_class.HangingProtocolInformationModelFind.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.HangingProtocolInformationModelFind

    +

    pynetdicom.sop_class.HangingProtocolInformationModelFind

    -pynetdicom.sop_class.HangingProtocolInformationModelFind = '1.2.840.10008.5.1.4.38.2'[source]
    +pynetdicom.sop_class.HangingProtocolInformationModelFind = '1.2.840.10008.5.1.4.38.2'[source]

    1.2.840.10008.5.1.4.38.2

    diff --git a/dev/reference/generated/pynetdicom.sop_class.HangingProtocolInformationModelGet.html b/dev/reference/generated/pynetdicom.sop_class.HangingProtocolInformationModelGet.html index 430391999..e7b353d79 100644 --- a/dev/reference/generated/pynetdicom.sop_class.HangingProtocolInformationModelGet.html +++ b/dev/reference/generated/pynetdicom.sop_class.HangingProtocolInformationModelGet.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.HangingProtocolInformationModelGet

    +

    pynetdicom.sop_class.HangingProtocolInformationModelGet

    -pynetdicom.sop_class.HangingProtocolInformationModelGet = '1.2.840.10008.5.1.4.38.4'[source]
    +pynetdicom.sop_class.HangingProtocolInformationModelGet = '1.2.840.10008.5.1.4.38.4'[source]

    1.2.840.10008.5.1.4.38.4

    diff --git a/dev/reference/generated/pynetdicom.sop_class.HangingProtocolInformationModelMove.html b/dev/reference/generated/pynetdicom.sop_class.HangingProtocolInformationModelMove.html index b7f3647c5..2ae744693 100644 --- a/dev/reference/generated/pynetdicom.sop_class.HangingProtocolInformationModelMove.html +++ b/dev/reference/generated/pynetdicom.sop_class.HangingProtocolInformationModelMove.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.HangingProtocolInformationModelMove

    +

    pynetdicom.sop_class.HangingProtocolInformationModelMove

    -pynetdicom.sop_class.HangingProtocolInformationModelMove = '1.2.840.10008.5.1.4.38.3'[source]
    +pynetdicom.sop_class.HangingProtocolInformationModelMove = '1.2.840.10008.5.1.4.38.3'[source]

    1.2.840.10008.5.1.4.38.3

    diff --git a/dev/reference/generated/pynetdicom.sop_class.HangingProtocolStorage.html b/dev/reference/generated/pynetdicom.sop_class.HangingProtocolStorage.html index c8c2db288..5bafb8dd5 100644 --- a/dev/reference/generated/pynetdicom.sop_class.HangingProtocolStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.HangingProtocolStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.HangingProtocolStorage

    +

    pynetdicom.sop_class.HangingProtocolStorage

    -pynetdicom.sop_class.HangingProtocolStorage = '1.2.840.10008.5.1.4.38.1'[source]
    +pynetdicom.sop_class.HangingProtocolStorage = '1.2.840.10008.5.1.4.38.1'[source]

    1.2.840.10008.5.1.4.38.1

    diff --git a/dev/reference/generated/pynetdicom.sop_class.HemodynamicWaveformStorage.html b/dev/reference/generated/pynetdicom.sop_class.HemodynamicWaveformStorage.html index 65335bced..b170049cf 100644 --- a/dev/reference/generated/pynetdicom.sop_class.HemodynamicWaveformStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.HemodynamicWaveformStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.HemodynamicWaveformStorage

    +

    pynetdicom.sop_class.HemodynamicWaveformStorage

    -pynetdicom.sop_class.HemodynamicWaveformStorage = '1.2.840.10008.5.1.4.1.1.9.2.1'[source]
    +pynetdicom.sop_class.HemodynamicWaveformStorage = '1.2.840.10008.5.1.4.1.1.9.2.1'[source]

    1.2.840.10008.5.1.4.1.1.9.2.1

    diff --git a/dev/reference/generated/pynetdicom.sop_class.ImplantAssemblyTemplateInformationModelFind.html b/dev/reference/generated/pynetdicom.sop_class.ImplantAssemblyTemplateInformationModelFind.html index 44208f08b..6e4edde3a 100644 --- a/dev/reference/generated/pynetdicom.sop_class.ImplantAssemblyTemplateInformationModelFind.html +++ b/dev/reference/generated/pynetdicom.sop_class.ImplantAssemblyTemplateInformationModelFind.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.ImplantAssemblyTemplateInformationModelFind

    +

    pynetdicom.sop_class.ImplantAssemblyTemplateInformationModelFind

    -pynetdicom.sop_class.ImplantAssemblyTemplateInformationModelFind = '1.2.840.10008.5.1.4.44.2'[source]
    +pynetdicom.sop_class.ImplantAssemblyTemplateInformationModelFind = '1.2.840.10008.5.1.4.44.2'[source]

    1.2.840.10008.5.1.4.44.2

    diff --git a/dev/reference/generated/pynetdicom.sop_class.ImplantAssemblyTemplateInformationModelGet.html b/dev/reference/generated/pynetdicom.sop_class.ImplantAssemblyTemplateInformationModelGet.html index 53f93969a..f943fe9b9 100644 --- a/dev/reference/generated/pynetdicom.sop_class.ImplantAssemblyTemplateInformationModelGet.html +++ b/dev/reference/generated/pynetdicom.sop_class.ImplantAssemblyTemplateInformationModelGet.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.ImplantAssemblyTemplateInformationModelGet

    +

    pynetdicom.sop_class.ImplantAssemblyTemplateInformationModelGet

    -pynetdicom.sop_class.ImplantAssemblyTemplateInformationModelGet = '1.2.840.10008.5.1.4.44.4'[source]
    +pynetdicom.sop_class.ImplantAssemblyTemplateInformationModelGet = '1.2.840.10008.5.1.4.44.4'[source]

    1.2.840.10008.5.1.4.44.4

    diff --git a/dev/reference/generated/pynetdicom.sop_class.ImplantAssemblyTemplateInformationModelMove.html b/dev/reference/generated/pynetdicom.sop_class.ImplantAssemblyTemplateInformationModelMove.html index 0419dd1a9..70a705082 100644 --- a/dev/reference/generated/pynetdicom.sop_class.ImplantAssemblyTemplateInformationModelMove.html +++ b/dev/reference/generated/pynetdicom.sop_class.ImplantAssemblyTemplateInformationModelMove.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.ImplantAssemblyTemplateInformationModelMove

    +

    pynetdicom.sop_class.ImplantAssemblyTemplateInformationModelMove

    -pynetdicom.sop_class.ImplantAssemblyTemplateInformationModelMove = '1.2.840.10008.5.1.4.44.3'[source]
    +pynetdicom.sop_class.ImplantAssemblyTemplateInformationModelMove = '1.2.840.10008.5.1.4.44.3'[source]

    1.2.840.10008.5.1.4.44.3

    diff --git a/dev/reference/generated/pynetdicom.sop_class.ImplantAssemblyTemplateStorage.html b/dev/reference/generated/pynetdicom.sop_class.ImplantAssemblyTemplateStorage.html index 649456bdd..8329e07b7 100644 --- a/dev/reference/generated/pynetdicom.sop_class.ImplantAssemblyTemplateStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.ImplantAssemblyTemplateStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.ImplantAssemblyTemplateStorage

    +

    pynetdicom.sop_class.ImplantAssemblyTemplateStorage

    -pynetdicom.sop_class.ImplantAssemblyTemplateStorage = '1.2.840.10008.5.1.4.44.1'[source]
    +pynetdicom.sop_class.ImplantAssemblyTemplateStorage = '1.2.840.10008.5.1.4.44.1'[source]

    1.2.840.10008.5.1.4.44.1

    diff --git a/dev/reference/generated/pynetdicom.sop_class.ImplantTemplateGroupInformationModelFind.html b/dev/reference/generated/pynetdicom.sop_class.ImplantTemplateGroupInformationModelFind.html index 4394ae140..595f04367 100644 --- a/dev/reference/generated/pynetdicom.sop_class.ImplantTemplateGroupInformationModelFind.html +++ b/dev/reference/generated/pynetdicom.sop_class.ImplantTemplateGroupInformationModelFind.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.ImplantTemplateGroupInformationModelFind

    +

    pynetdicom.sop_class.ImplantTemplateGroupInformationModelFind

    -pynetdicom.sop_class.ImplantTemplateGroupInformationModelFind = '1.2.840.10008.5.1.4.45.2'[source]
    +pynetdicom.sop_class.ImplantTemplateGroupInformationModelFind = '1.2.840.10008.5.1.4.45.2'[source]

    1.2.840.10008.5.1.4.45.2

    diff --git a/dev/reference/generated/pynetdicom.sop_class.ImplantTemplateGroupInformationModelGet.html b/dev/reference/generated/pynetdicom.sop_class.ImplantTemplateGroupInformationModelGet.html index 87997d010..0d0e3aa36 100644 --- a/dev/reference/generated/pynetdicom.sop_class.ImplantTemplateGroupInformationModelGet.html +++ b/dev/reference/generated/pynetdicom.sop_class.ImplantTemplateGroupInformationModelGet.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.ImplantTemplateGroupInformationModelGet

    +

    pynetdicom.sop_class.ImplantTemplateGroupInformationModelGet

    -pynetdicom.sop_class.ImplantTemplateGroupInformationModelGet = '1.2.840.10008.5.1.4.45.4'[source]
    +pynetdicom.sop_class.ImplantTemplateGroupInformationModelGet = '1.2.840.10008.5.1.4.45.4'[source]

    1.2.840.10008.5.1.4.45.4

    diff --git a/dev/reference/generated/pynetdicom.sop_class.ImplantTemplateGroupInformationModelMove.html b/dev/reference/generated/pynetdicom.sop_class.ImplantTemplateGroupInformationModelMove.html index 0e27201bc..434869dad 100644 --- a/dev/reference/generated/pynetdicom.sop_class.ImplantTemplateGroupInformationModelMove.html +++ b/dev/reference/generated/pynetdicom.sop_class.ImplantTemplateGroupInformationModelMove.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.ImplantTemplateGroupInformationModelMove

    +

    pynetdicom.sop_class.ImplantTemplateGroupInformationModelMove

    -pynetdicom.sop_class.ImplantTemplateGroupInformationModelMove = '1.2.840.10008.5.1.4.45.3'[source]
    +pynetdicom.sop_class.ImplantTemplateGroupInformationModelMove = '1.2.840.10008.5.1.4.45.3'[source]

    1.2.840.10008.5.1.4.45.3

    diff --git a/dev/reference/generated/pynetdicom.sop_class.ImplantTemplateGroupStorage.html b/dev/reference/generated/pynetdicom.sop_class.ImplantTemplateGroupStorage.html index af67caa92..26773b272 100644 --- a/dev/reference/generated/pynetdicom.sop_class.ImplantTemplateGroupStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.ImplantTemplateGroupStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.ImplantTemplateGroupStorage

    +

    pynetdicom.sop_class.ImplantTemplateGroupStorage

    -pynetdicom.sop_class.ImplantTemplateGroupStorage = '1.2.840.10008.5.1.4.45.1'[source]
    +pynetdicom.sop_class.ImplantTemplateGroupStorage = '1.2.840.10008.5.1.4.45.1'[source]

    1.2.840.10008.5.1.4.45.1

    diff --git a/dev/reference/generated/pynetdicom.sop_class.ImplantationPlanSRStorage.html b/dev/reference/generated/pynetdicom.sop_class.ImplantationPlanSRStorage.html index 233aec78e..d77f9a9be 100644 --- a/dev/reference/generated/pynetdicom.sop_class.ImplantationPlanSRStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.ImplantationPlanSRStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.ImplantationPlanSRStorage

    +

    pynetdicom.sop_class.ImplantationPlanSRStorage

    -pynetdicom.sop_class.ImplantationPlanSRStorage = '1.2.840.10008.5.1.4.1.1.88.70'[source]
    +pynetdicom.sop_class.ImplantationPlanSRStorage = '1.2.840.10008.5.1.4.1.1.88.70'[source]

    1.2.840.10008.5.1.4.1.1.88.70

    diff --git a/dev/reference/generated/pynetdicom.sop_class.InstanceAvailabilityNotification.html b/dev/reference/generated/pynetdicom.sop_class.InstanceAvailabilityNotification.html index 8ff54fd96..aa27ceb0f 100644 --- a/dev/reference/generated/pynetdicom.sop_class.InstanceAvailabilityNotification.html +++ b/dev/reference/generated/pynetdicom.sop_class.InstanceAvailabilityNotification.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.InstanceAvailabilityNotification

    +

    pynetdicom.sop_class.InstanceAvailabilityNotification

    -pynetdicom.sop_class.InstanceAvailabilityNotification = '1.2.840.10008.5.1.4.33'[source]
    +pynetdicom.sop_class.InstanceAvailabilityNotification = '1.2.840.10008.5.1.4.33'[source]

    1.2.840.10008.5.1.4.33

    diff --git a/dev/reference/generated/pynetdicom.sop_class.IntraocularLensCalculationsStorage.html b/dev/reference/generated/pynetdicom.sop_class.IntraocularLensCalculationsStorage.html index f498cb057..e91b76b57 100644 --- a/dev/reference/generated/pynetdicom.sop_class.IntraocularLensCalculationsStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.IntraocularLensCalculationsStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.IntraocularLensCalculationsStorage

    +

    pynetdicom.sop_class.IntraocularLensCalculationsStorage

    -pynetdicom.sop_class.IntraocularLensCalculationsStorage = '1.2.840.10008.5.1.4.1.1.78.8'[source]
    +pynetdicom.sop_class.IntraocularLensCalculationsStorage = '1.2.840.10008.5.1.4.1.1.78.8'[source]

    1.2.840.10008.5.1.4.1.1.78.8

    diff --git a/dev/reference/generated/pynetdicom.sop_class.IntravascularOpticalCoherenceTomographyImageStorageForPresentation.html b/dev/reference/generated/pynetdicom.sop_class.IntravascularOpticalCoherenceTomographyImageStorageForPresentation.html index 7e7580322..b0e982098 100644 --- a/dev/reference/generated/pynetdicom.sop_class.IntravascularOpticalCoherenceTomographyImageStorageForPresentation.html +++ b/dev/reference/generated/pynetdicom.sop_class.IntravascularOpticalCoherenceTomographyImageStorageForPresentation.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.IntravascularOpticalCoherenceTomographyImageStorageForPresentation

    +

    pynetdicom.sop_class.IntravascularOpticalCoherenceTomographyImageStorageForPresentation

    -pynetdicom.sop_class.IntravascularOpticalCoherenceTomographyImageStorageForPresentation = '1.2.840.10008.5.1.4.1.1.14.1'[source]
    +pynetdicom.sop_class.IntravascularOpticalCoherenceTomographyImageStorageForPresentation = '1.2.840.10008.5.1.4.1.1.14.1'[source]

    1.2.840.10008.5.1.4.1.1.14.1

    diff --git a/dev/reference/generated/pynetdicom.sop_class.IntravascularOpticalCoherenceTomographyImageStorageForProcessing.html b/dev/reference/generated/pynetdicom.sop_class.IntravascularOpticalCoherenceTomographyImageStorageForProcessing.html index 9c3d0d2d5..ae1db1204 100644 --- a/dev/reference/generated/pynetdicom.sop_class.IntravascularOpticalCoherenceTomographyImageStorageForProcessing.html +++ b/dev/reference/generated/pynetdicom.sop_class.IntravascularOpticalCoherenceTomographyImageStorageForProcessing.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.IntravascularOpticalCoherenceTomographyImageStorageForProcessing

    +

    pynetdicom.sop_class.IntravascularOpticalCoherenceTomographyImageStorageForProcessing

    -pynetdicom.sop_class.IntravascularOpticalCoherenceTomographyImageStorageForProcessing = '1.2.840.10008.5.1.4.1.1.14.2'[source]
    +pynetdicom.sop_class.IntravascularOpticalCoherenceTomographyImageStorageForProcessing = '1.2.840.10008.5.1.4.1.1.14.2'[source]

    1.2.840.10008.5.1.4.1.1.14.2

    diff --git a/dev/reference/generated/pynetdicom.sop_class.KeratometryMeasurementsStorage.html b/dev/reference/generated/pynetdicom.sop_class.KeratometryMeasurementsStorage.html index 49acac122..c0d5162de 100644 --- a/dev/reference/generated/pynetdicom.sop_class.KeratometryMeasurementsStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.KeratometryMeasurementsStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.KeratometryMeasurementsStorage

    +

    pynetdicom.sop_class.KeratometryMeasurementsStorage

    -pynetdicom.sop_class.KeratometryMeasurementsStorage = '1.2.840.10008.5.1.4.1.1.78.3'[source]
    +pynetdicom.sop_class.KeratometryMeasurementsStorage = '1.2.840.10008.5.1.4.1.1.78.3'[source]

    1.2.840.10008.5.1.4.1.1.78.3

    diff --git a/dev/reference/generated/pynetdicom.sop_class.KeyObjectSelectionDocumentStorage.html b/dev/reference/generated/pynetdicom.sop_class.KeyObjectSelectionDocumentStorage.html index 13f103308..f32766c7c 100644 --- a/dev/reference/generated/pynetdicom.sop_class.KeyObjectSelectionDocumentStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.KeyObjectSelectionDocumentStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.KeyObjectSelectionDocumentStorage

    +

    pynetdicom.sop_class.KeyObjectSelectionDocumentStorage

    -pynetdicom.sop_class.KeyObjectSelectionDocumentStorage = '1.2.840.10008.5.1.4.1.1.88.59'[source]
    +pynetdicom.sop_class.KeyObjectSelectionDocumentStorage = '1.2.840.10008.5.1.4.1.1.88.59'[source]

    1.2.840.10008.5.1.4.1.1.88.59

    diff --git a/dev/reference/generated/pynetdicom.sop_class.LegacyConvertedEnhancedCTImageStorage.html b/dev/reference/generated/pynetdicom.sop_class.LegacyConvertedEnhancedCTImageStorage.html index cb625b310..308f0a446 100644 --- a/dev/reference/generated/pynetdicom.sop_class.LegacyConvertedEnhancedCTImageStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.LegacyConvertedEnhancedCTImageStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.LegacyConvertedEnhancedCTImageStorage

    +

    pynetdicom.sop_class.LegacyConvertedEnhancedCTImageStorage

    -pynetdicom.sop_class.LegacyConvertedEnhancedCTImageStorage = '1.2.840.10008.5.1.4.1.1.2.2'[source]
    +pynetdicom.sop_class.LegacyConvertedEnhancedCTImageStorage = '1.2.840.10008.5.1.4.1.1.2.2'[source]

    1.2.840.10008.5.1.4.1.1.2.2

    diff --git a/dev/reference/generated/pynetdicom.sop_class.LegacyConvertedEnhancedMRImageStorage.html b/dev/reference/generated/pynetdicom.sop_class.LegacyConvertedEnhancedMRImageStorage.html index 04542aa8f..0f5726570 100644 --- a/dev/reference/generated/pynetdicom.sop_class.LegacyConvertedEnhancedMRImageStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.LegacyConvertedEnhancedMRImageStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.LegacyConvertedEnhancedMRImageStorage

    +

    pynetdicom.sop_class.LegacyConvertedEnhancedMRImageStorage

    -pynetdicom.sop_class.LegacyConvertedEnhancedMRImageStorage = '1.2.840.10008.5.1.4.1.1.4.4'[source]
    +pynetdicom.sop_class.LegacyConvertedEnhancedMRImageStorage = '1.2.840.10008.5.1.4.1.1.4.4'[source]

    1.2.840.10008.5.1.4.1.1.4.4

    diff --git a/dev/reference/generated/pynetdicom.sop_class.LegacyConvertedEnhancedPETImageStorage.html b/dev/reference/generated/pynetdicom.sop_class.LegacyConvertedEnhancedPETImageStorage.html index 64a828021..16de474d8 100644 --- a/dev/reference/generated/pynetdicom.sop_class.LegacyConvertedEnhancedPETImageStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.LegacyConvertedEnhancedPETImageStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.LegacyConvertedEnhancedPETImageStorage

    +

    pynetdicom.sop_class.LegacyConvertedEnhancedPETImageStorage

    -pynetdicom.sop_class.LegacyConvertedEnhancedPETImageStorage = '1.2.840.10008.5.1.4.1.1.128.1'[source]
    +pynetdicom.sop_class.LegacyConvertedEnhancedPETImageStorage = '1.2.840.10008.5.1.4.1.1.128.1'[source]

    1.2.840.10008.5.1.4.1.1.128.1

    diff --git a/dev/reference/generated/pynetdicom.sop_class.LensometryMeasurementsStorage.html b/dev/reference/generated/pynetdicom.sop_class.LensometryMeasurementsStorage.html index c653136d6..c0908a55b 100644 --- a/dev/reference/generated/pynetdicom.sop_class.LensometryMeasurementsStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.LensometryMeasurementsStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.LensometryMeasurementsStorage

    +

    pynetdicom.sop_class.LensometryMeasurementsStorage

    -pynetdicom.sop_class.LensometryMeasurementsStorage = '1.2.840.10008.5.1.4.1.1.78.1'[source]
    +pynetdicom.sop_class.LensometryMeasurementsStorage = '1.2.840.10008.5.1.4.1.1.78.1'[source]

    1.2.840.10008.5.1.4.1.1.78.1

    diff --git a/dev/reference/generated/pynetdicom.sop_class.MRImageStorage.html b/dev/reference/generated/pynetdicom.sop_class.MRImageStorage.html index 687f3e5cd..873e96294 100644 --- a/dev/reference/generated/pynetdicom.sop_class.MRImageStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.MRImageStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.MRImageStorage

    +

    pynetdicom.sop_class.MRImageStorage

    -pynetdicom.sop_class.MRImageStorage = '1.2.840.10008.5.1.4.1.1.4'[source]
    +pynetdicom.sop_class.MRImageStorage = '1.2.840.10008.5.1.4.1.1.4'[source]

    1.2.840.10008.5.1.4.1.1.4

    diff --git a/dev/reference/generated/pynetdicom.sop_class.MRSpectroscopyStorage.html b/dev/reference/generated/pynetdicom.sop_class.MRSpectroscopyStorage.html index 46f9d9909..9fcf49bfd 100644 --- a/dev/reference/generated/pynetdicom.sop_class.MRSpectroscopyStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.MRSpectroscopyStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.MRSpectroscopyStorage

    +

    pynetdicom.sop_class.MRSpectroscopyStorage

    -pynetdicom.sop_class.MRSpectroscopyStorage = '1.2.840.10008.5.1.4.1.1.4.2'[source]
    +pynetdicom.sop_class.MRSpectroscopyStorage = '1.2.840.10008.5.1.4.1.1.4.2'[source]

    1.2.840.10008.5.1.4.1.1.4.2

    diff --git a/dev/reference/generated/pynetdicom.sop_class.MacularGridThicknessAndVolumeReportStorage.html b/dev/reference/generated/pynetdicom.sop_class.MacularGridThicknessAndVolumeReportStorage.html index 75b5bc1f6..c37e947b7 100644 --- a/dev/reference/generated/pynetdicom.sop_class.MacularGridThicknessAndVolumeReportStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.MacularGridThicknessAndVolumeReportStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.MacularGridThicknessAndVolumeReportStorage

    +

    pynetdicom.sop_class.MacularGridThicknessAndVolumeReportStorage

    -pynetdicom.sop_class.MacularGridThicknessAndVolumeReportStorage = '1.2.840.10008.5.1.4.1.1.79.1'[source]
    +pynetdicom.sop_class.MacularGridThicknessAndVolumeReportStorage = '1.2.840.10008.5.1.4.1.1.79.1'[source]

    1.2.840.10008.5.1.4.1.1.79.1

    diff --git a/dev/reference/generated/pynetdicom.sop_class.MammographyCADSRStorage.html b/dev/reference/generated/pynetdicom.sop_class.MammographyCADSRStorage.html index e35daa8aa..7bbe778bc 100644 --- a/dev/reference/generated/pynetdicom.sop_class.MammographyCADSRStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.MammographyCADSRStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.MammographyCADSRStorage

    +

    pynetdicom.sop_class.MammographyCADSRStorage

    -pynetdicom.sop_class.MammographyCADSRStorage = '1.2.840.10008.5.1.4.1.1.88.50'[source]
    +pynetdicom.sop_class.MammographyCADSRStorage = '1.2.840.10008.5.1.4.1.1.88.50'[source]

    1.2.840.10008.5.1.4.1.1.88.50

    diff --git a/dev/reference/generated/pynetdicom.sop_class.MediaCreationManagement.html b/dev/reference/generated/pynetdicom.sop_class.MediaCreationManagement.html index b23b76adc..db335b046 100644 --- a/dev/reference/generated/pynetdicom.sop_class.MediaCreationManagement.html +++ b/dev/reference/generated/pynetdicom.sop_class.MediaCreationManagement.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.MediaCreationManagement

    +

    pynetdicom.sop_class.MediaCreationManagement

    -pynetdicom.sop_class.MediaCreationManagement = '1.2.840.10008.5.1.1.33'[source]
    +pynetdicom.sop_class.MediaCreationManagement = '1.2.840.10008.5.1.1.33'[source]

    1.2.840.10008.5.1.1.33

    diff --git a/dev/reference/generated/pynetdicom.sop_class.MediaStorageDirectoryStorage.html b/dev/reference/generated/pynetdicom.sop_class.MediaStorageDirectoryStorage.html index fe5b6889d..ea0bfe0ab 100644 --- a/dev/reference/generated/pynetdicom.sop_class.MediaStorageDirectoryStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.MediaStorageDirectoryStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.MediaStorageDirectoryStorage

    +

    pynetdicom.sop_class.MediaStorageDirectoryStorage

    -pynetdicom.sop_class.MediaStorageDirectoryStorage = '1.2.840.10008.1.3.10'[source]
    +pynetdicom.sop_class.MediaStorageDirectoryStorage = '1.2.840.10008.1.3.10'[source]

    1.2.840.10008.1.3.10

    diff --git a/dev/reference/generated/pynetdicom.sop_class.MicroscopyBulkSimpleAnnotationsStorage.html b/dev/reference/generated/pynetdicom.sop_class.MicroscopyBulkSimpleAnnotationsStorage.html index 6e7f452b9..e07ad09d8 100644 --- a/dev/reference/generated/pynetdicom.sop_class.MicroscopyBulkSimpleAnnotationsStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.MicroscopyBulkSimpleAnnotationsStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.MicroscopyBulkSimpleAnnotationsStorage

    +

    pynetdicom.sop_class.MicroscopyBulkSimpleAnnotationsStorage

    -pynetdicom.sop_class.MicroscopyBulkSimpleAnnotationsStorage = '1.2.840.10008.5.1.4.1.1.91.1'[source]
    +pynetdicom.sop_class.MicroscopyBulkSimpleAnnotationsStorage = '1.2.840.10008.5.1.4.1.1.91.1'[source]

    1.2.840.10008.5.1.4.1.1.91.1

    diff --git a/dev/reference/generated/pynetdicom.sop_class.ModalityPerformedProcedureStep.html b/dev/reference/generated/pynetdicom.sop_class.ModalityPerformedProcedureStep.html index ed54cf496..20365dda3 100644 --- a/dev/reference/generated/pynetdicom.sop_class.ModalityPerformedProcedureStep.html +++ b/dev/reference/generated/pynetdicom.sop_class.ModalityPerformedProcedureStep.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.ModalityPerformedProcedureStep

    +

    pynetdicom.sop_class.ModalityPerformedProcedureStep

    -pynetdicom.sop_class.ModalityPerformedProcedureStep = '1.2.840.10008.3.1.2.3.3'[source]
    +pynetdicom.sop_class.ModalityPerformedProcedureStep = '1.2.840.10008.3.1.2.3.3'[source]

    1.2.840.10008.3.1.2.3.3

    diff --git a/dev/reference/generated/pynetdicom.sop_class.ModalityPerformedProcedureStepNotification.html b/dev/reference/generated/pynetdicom.sop_class.ModalityPerformedProcedureStepNotification.html index b4cb20fc9..c899da46c 100644 --- a/dev/reference/generated/pynetdicom.sop_class.ModalityPerformedProcedureStepNotification.html +++ b/dev/reference/generated/pynetdicom.sop_class.ModalityPerformedProcedureStepNotification.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.ModalityPerformedProcedureStepNotification

    +

    pynetdicom.sop_class.ModalityPerformedProcedureStepNotification

    -pynetdicom.sop_class.ModalityPerformedProcedureStepNotification = '1.2.840.10008.3.1.2.3.5'[source]
    +pynetdicom.sop_class.ModalityPerformedProcedureStepNotification = '1.2.840.10008.3.1.2.3.5'[source]

    1.2.840.10008.3.1.2.3.5

    diff --git a/dev/reference/generated/pynetdicom.sop_class.ModalityPerformedProcedureStepRetrieve.html b/dev/reference/generated/pynetdicom.sop_class.ModalityPerformedProcedureStepRetrieve.html index 4a3419c23..cd15d4a4c 100644 --- a/dev/reference/generated/pynetdicom.sop_class.ModalityPerformedProcedureStepRetrieve.html +++ b/dev/reference/generated/pynetdicom.sop_class.ModalityPerformedProcedureStepRetrieve.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.ModalityPerformedProcedureStepRetrieve

    +

    pynetdicom.sop_class.ModalityPerformedProcedureStepRetrieve

    -pynetdicom.sop_class.ModalityPerformedProcedureStepRetrieve = '1.2.840.10008.3.1.2.3.4'[source]
    +pynetdicom.sop_class.ModalityPerformedProcedureStepRetrieve = '1.2.840.10008.3.1.2.3.4'[source]

    1.2.840.10008.3.1.2.3.4

    diff --git a/dev/reference/generated/pynetdicom.sop_class.ModalityWorklistInformationFind.html b/dev/reference/generated/pynetdicom.sop_class.ModalityWorklistInformationFind.html index a954250a7..bee5fa34a 100644 --- a/dev/reference/generated/pynetdicom.sop_class.ModalityWorklistInformationFind.html +++ b/dev/reference/generated/pynetdicom.sop_class.ModalityWorklistInformationFind.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.ModalityWorklistInformationFind

    +

    pynetdicom.sop_class.ModalityWorklistInformationFind

    -pynetdicom.sop_class.ModalityWorklistInformationFind = '1.2.840.10008.5.1.4.31'[source]
    +pynetdicom.sop_class.ModalityWorklistInformationFind = '1.2.840.10008.5.1.4.31'[source]

    1.2.840.10008.5.1.4.31

    diff --git a/dev/reference/generated/pynetdicom.sop_class.MultiFrameGrayscaleByteSecondaryCaptureImageStorage.html b/dev/reference/generated/pynetdicom.sop_class.MultiFrameGrayscaleByteSecondaryCaptureImageStorage.html index 4b898217d..2f969843c 100644 --- a/dev/reference/generated/pynetdicom.sop_class.MultiFrameGrayscaleByteSecondaryCaptureImageStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.MultiFrameGrayscaleByteSecondaryCaptureImageStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.MultiFrameGrayscaleByteSecondaryCaptureImageStorage

    +

    pynetdicom.sop_class.MultiFrameGrayscaleByteSecondaryCaptureImageStorage

    -pynetdicom.sop_class.MultiFrameGrayscaleByteSecondaryCaptureImageStorage = '1.2.840.10008.5.1.4.1.1.7.2'[source]
    +pynetdicom.sop_class.MultiFrameGrayscaleByteSecondaryCaptureImageStorage = '1.2.840.10008.5.1.4.1.1.7.2'[source]

    1.2.840.10008.5.1.4.1.1.7.2

    diff --git a/dev/reference/generated/pynetdicom.sop_class.MultiFrameGrayscaleWordSecondaryCaptureImageStorage.html b/dev/reference/generated/pynetdicom.sop_class.MultiFrameGrayscaleWordSecondaryCaptureImageStorage.html index 4d5e4e64e..92a5ee189 100644 --- a/dev/reference/generated/pynetdicom.sop_class.MultiFrameGrayscaleWordSecondaryCaptureImageStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.MultiFrameGrayscaleWordSecondaryCaptureImageStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.MultiFrameGrayscaleWordSecondaryCaptureImageStorage

    +

    pynetdicom.sop_class.MultiFrameGrayscaleWordSecondaryCaptureImageStorage

    -pynetdicom.sop_class.MultiFrameGrayscaleWordSecondaryCaptureImageStorage = '1.2.840.10008.5.1.4.1.1.7.3'[source]
    +pynetdicom.sop_class.MultiFrameGrayscaleWordSecondaryCaptureImageStorage = '1.2.840.10008.5.1.4.1.1.7.3'[source]

    1.2.840.10008.5.1.4.1.1.7.3

    diff --git a/dev/reference/generated/pynetdicom.sop_class.MultiFrameSingleBitSecondaryCaptureImageStorage.html b/dev/reference/generated/pynetdicom.sop_class.MultiFrameSingleBitSecondaryCaptureImageStorage.html index 2f69021b6..6b2f7aa8e 100644 --- a/dev/reference/generated/pynetdicom.sop_class.MultiFrameSingleBitSecondaryCaptureImageStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.MultiFrameSingleBitSecondaryCaptureImageStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.MultiFrameSingleBitSecondaryCaptureImageStorage

    +

    pynetdicom.sop_class.MultiFrameSingleBitSecondaryCaptureImageStorage

    -pynetdicom.sop_class.MultiFrameSingleBitSecondaryCaptureImageStorage = '1.2.840.10008.5.1.4.1.1.7.1'[source]
    +pynetdicom.sop_class.MultiFrameSingleBitSecondaryCaptureImageStorage = '1.2.840.10008.5.1.4.1.1.7.1'[source]

    1.2.840.10008.5.1.4.1.1.7.1

    diff --git a/dev/reference/generated/pynetdicom.sop_class.MultiFrameTrueColorSecondaryCaptureImageStorage.html b/dev/reference/generated/pynetdicom.sop_class.MultiFrameTrueColorSecondaryCaptureImageStorage.html index f8c7ef093..9b46949e0 100644 --- a/dev/reference/generated/pynetdicom.sop_class.MultiFrameTrueColorSecondaryCaptureImageStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.MultiFrameTrueColorSecondaryCaptureImageStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.MultiFrameTrueColorSecondaryCaptureImageStorage

    +

    pynetdicom.sop_class.MultiFrameTrueColorSecondaryCaptureImageStorage

    -pynetdicom.sop_class.MultiFrameTrueColorSecondaryCaptureImageStorage = '1.2.840.10008.5.1.4.1.1.7.4'[source]
    +pynetdicom.sop_class.MultiFrameTrueColorSecondaryCaptureImageStorage = '1.2.840.10008.5.1.4.1.1.7.4'[source]

    1.2.840.10008.5.1.4.1.1.7.4

    diff --git a/dev/reference/generated/pynetdicom.sop_class.MultichannelRespiratoryWaveformStorage.html b/dev/reference/generated/pynetdicom.sop_class.MultichannelRespiratoryWaveformStorage.html index 3649c16c1..57624bd90 100644 --- a/dev/reference/generated/pynetdicom.sop_class.MultichannelRespiratoryWaveformStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.MultichannelRespiratoryWaveformStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.MultichannelRespiratoryWaveformStorage

    +

    pynetdicom.sop_class.MultichannelRespiratoryWaveformStorage

    -pynetdicom.sop_class.MultichannelRespiratoryWaveformStorage = '1.2.840.10008.5.1.4.1.1.9.6.2'[source]
    +pynetdicom.sop_class.MultichannelRespiratoryWaveformStorage = '1.2.840.10008.5.1.4.1.1.9.6.2'[source]

    1.2.840.10008.5.1.4.1.1.9.6.2

    diff --git a/dev/reference/generated/pynetdicom.sop_class.MultipleVolumeRenderingVolumetricPresentationStateStorage.html b/dev/reference/generated/pynetdicom.sop_class.MultipleVolumeRenderingVolumetricPresentationStateStorage.html index 3b6b6ee04..c02618cb5 100644 --- a/dev/reference/generated/pynetdicom.sop_class.MultipleVolumeRenderingVolumetricPresentationStateStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.MultipleVolumeRenderingVolumetricPresentationStateStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.MultipleVolumeRenderingVolumetricPresentationStateStorage

    +

    pynetdicom.sop_class.MultipleVolumeRenderingVolumetricPresentationStateStorage

    -pynetdicom.sop_class.MultipleVolumeRenderingVolumetricPresentationStateStorage = '1.2.840.10008.5.1.4.1.1.11.11'[source]
    +pynetdicom.sop_class.MultipleVolumeRenderingVolumetricPresentationStateStorage = '1.2.840.10008.5.1.4.1.1.11.11'[source]

    1.2.840.10008.5.1.4.1.1.11.11

    diff --git a/dev/reference/generated/pynetdicom.sop_class.NuclearMedicineImageStorage.html b/dev/reference/generated/pynetdicom.sop_class.NuclearMedicineImageStorage.html index 0f46f025e..14712693f 100644 --- a/dev/reference/generated/pynetdicom.sop_class.NuclearMedicineImageStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.NuclearMedicineImageStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.NuclearMedicineImageStorage

    +

    pynetdicom.sop_class.NuclearMedicineImageStorage

    -pynetdicom.sop_class.NuclearMedicineImageStorage = '1.2.840.10008.5.1.4.1.1.20'[source]
    +pynetdicom.sop_class.NuclearMedicineImageStorage = '1.2.840.10008.5.1.4.1.1.20'[source]

    1.2.840.10008.5.1.4.1.1.20

    diff --git a/dev/reference/generated/pynetdicom.sop_class.OphthalmicAxialMeasurementsStorage.html b/dev/reference/generated/pynetdicom.sop_class.OphthalmicAxialMeasurementsStorage.html index 2487d2575..ac2cbfb7c 100644 --- a/dev/reference/generated/pynetdicom.sop_class.OphthalmicAxialMeasurementsStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.OphthalmicAxialMeasurementsStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.OphthalmicAxialMeasurementsStorage

    +

    pynetdicom.sop_class.OphthalmicAxialMeasurementsStorage

    -pynetdicom.sop_class.OphthalmicAxialMeasurementsStorage = '1.2.840.10008.5.1.4.1.1.78.7'[source]
    +pynetdicom.sop_class.OphthalmicAxialMeasurementsStorage = '1.2.840.10008.5.1.4.1.1.78.7'[source]

    1.2.840.10008.5.1.4.1.1.78.7

    diff --git a/dev/reference/generated/pynetdicom.sop_class.OphthalmicOpticalCoherenceTomographyEnFaceImageStorage.html b/dev/reference/generated/pynetdicom.sop_class.OphthalmicOpticalCoherenceTomographyEnFaceImageStorage.html index 18747fb83..ada8565c9 100644 --- a/dev/reference/generated/pynetdicom.sop_class.OphthalmicOpticalCoherenceTomographyEnFaceImageStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.OphthalmicOpticalCoherenceTomographyEnFaceImageStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.OphthalmicOpticalCoherenceTomographyEnFaceImageStorage

    +

    pynetdicom.sop_class.OphthalmicOpticalCoherenceTomographyEnFaceImageStorage

    -pynetdicom.sop_class.OphthalmicOpticalCoherenceTomographyEnFaceImageStorage = '1.2.840.10008.5.1.4.1.1.77.1.5.7'[source]
    +pynetdicom.sop_class.OphthalmicOpticalCoherenceTomographyEnFaceImageStorage = '1.2.840.10008.5.1.4.1.1.77.1.5.7'[source]

    1.2.840.10008.5.1.4.1.1.77.1.5.7

    diff --git a/dev/reference/generated/pynetdicom.sop_class.OphthalmicPhotography16BitImageStorage.html b/dev/reference/generated/pynetdicom.sop_class.OphthalmicPhotography16BitImageStorage.html index 4564bdc05..3fe2a7d61 100644 --- a/dev/reference/generated/pynetdicom.sop_class.OphthalmicPhotography16BitImageStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.OphthalmicPhotography16BitImageStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.OphthalmicPhotography16BitImageStorage

    +

    pynetdicom.sop_class.OphthalmicPhotography16BitImageStorage

    -pynetdicom.sop_class.OphthalmicPhotography16BitImageStorage = '1.2.840.10008.5.1.4.1.1.77.1.5.2'[source]
    +pynetdicom.sop_class.OphthalmicPhotography16BitImageStorage = '1.2.840.10008.5.1.4.1.1.77.1.5.2'[source]

    1.2.840.10008.5.1.4.1.1.77.1.5.2

    diff --git a/dev/reference/generated/pynetdicom.sop_class.OphthalmicPhotography8BitImageStorage.html b/dev/reference/generated/pynetdicom.sop_class.OphthalmicPhotography8BitImageStorage.html index fe90860d9..3f0ca4d4d 100644 --- a/dev/reference/generated/pynetdicom.sop_class.OphthalmicPhotography8BitImageStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.OphthalmicPhotography8BitImageStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.OphthalmicPhotography8BitImageStorage

    +

    pynetdicom.sop_class.OphthalmicPhotography8BitImageStorage

    -pynetdicom.sop_class.OphthalmicPhotography8BitImageStorage = '1.2.840.10008.5.1.4.1.1.77.1.5.1'[source]
    +pynetdicom.sop_class.OphthalmicPhotography8BitImageStorage = '1.2.840.10008.5.1.4.1.1.77.1.5.1'[source]

    1.2.840.10008.5.1.4.1.1.77.1.5.1

    diff --git a/dev/reference/generated/pynetdicom.sop_class.OphthalmicThicknessMapStorage.html b/dev/reference/generated/pynetdicom.sop_class.OphthalmicThicknessMapStorage.html index 01234454f..bd433017c 100644 --- a/dev/reference/generated/pynetdicom.sop_class.OphthalmicThicknessMapStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.OphthalmicThicknessMapStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.OphthalmicThicknessMapStorage

    +

    pynetdicom.sop_class.OphthalmicThicknessMapStorage

    -pynetdicom.sop_class.OphthalmicThicknessMapStorage = '1.2.840.10008.5.1.4.1.1.81.1'[source]
    +pynetdicom.sop_class.OphthalmicThicknessMapStorage = '1.2.840.10008.5.1.4.1.1.81.1'[source]

    1.2.840.10008.5.1.4.1.1.81.1

    diff --git a/dev/reference/generated/pynetdicom.sop_class.OphthalmicTomographyImageStorage.html b/dev/reference/generated/pynetdicom.sop_class.OphthalmicTomographyImageStorage.html index b58283632..ca06c524a 100644 --- a/dev/reference/generated/pynetdicom.sop_class.OphthalmicTomographyImageStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.OphthalmicTomographyImageStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.OphthalmicTomographyImageStorage

    +

    pynetdicom.sop_class.OphthalmicTomographyImageStorage

    -pynetdicom.sop_class.OphthalmicTomographyImageStorage = '1.2.840.10008.5.1.4.1.1.77.1.5.4'[source]
    +pynetdicom.sop_class.OphthalmicTomographyImageStorage = '1.2.840.10008.5.1.4.1.1.77.1.5.4'[source]

    1.2.840.10008.5.1.4.1.1.77.1.5.4

    diff --git a/dev/reference/generated/pynetdicom.sop_class.OphthalmicVisualFieldStaticPerimetryMeasurementsStorage.html b/dev/reference/generated/pynetdicom.sop_class.OphthalmicVisualFieldStaticPerimetryMeasurementsStorage.html index 08ae12c6a..66de9791d 100644 --- a/dev/reference/generated/pynetdicom.sop_class.OphthalmicVisualFieldStaticPerimetryMeasurementsStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.OphthalmicVisualFieldStaticPerimetryMeasurementsStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.OphthalmicVisualFieldStaticPerimetryMeasurementsStorage

    +

    pynetdicom.sop_class.OphthalmicVisualFieldStaticPerimetryMeasurementsStorage

    -pynetdicom.sop_class.OphthalmicVisualFieldStaticPerimetryMeasurementsStorage = '1.2.840.10008.5.1.4.1.1.80.1'[source]
    +pynetdicom.sop_class.OphthalmicVisualFieldStaticPerimetryMeasurementsStorage = '1.2.840.10008.5.1.4.1.1.80.1'[source]

    1.2.840.10008.5.1.4.1.1.80.1

    diff --git a/dev/reference/generated/pynetdicom.sop_class.OphthlamicOpticalCoherenceTomographyBscanVolumeAnalysisStorage.html b/dev/reference/generated/pynetdicom.sop_class.OphthlamicOpticalCoherenceTomographyBscanVolumeAnalysisStorage.html index 3c7a83c06..55a4e6fd5 100644 --- a/dev/reference/generated/pynetdicom.sop_class.OphthlamicOpticalCoherenceTomographyBscanVolumeAnalysisStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.OphthlamicOpticalCoherenceTomographyBscanVolumeAnalysisStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.OphthlamicOpticalCoherenceTomographyBscanVolumeAnalysisStorage

    +

    pynetdicom.sop_class.OphthlamicOpticalCoherenceTomographyBscanVolumeAnalysisStorage

    -pynetdicom.sop_class.OphthlamicOpticalCoherenceTomographyBscanVolumeAnalysisStorage = '1.2.840.10008.5.1.4.1.1.77.1.5.8'[source]
    +pynetdicom.sop_class.OphthlamicOpticalCoherenceTomographyBscanVolumeAnalysisStorage = '1.2.840.10008.5.1.4.1.1.77.1.5.8'[source]

    1.2.840.10008.5.1.4.1.1.77.1.5.8

    diff --git a/dev/reference/generated/pynetdicom.sop_class.ParametricMapStorage.html b/dev/reference/generated/pynetdicom.sop_class.ParametricMapStorage.html index 8796131eb..bf592f24e 100644 --- a/dev/reference/generated/pynetdicom.sop_class.ParametricMapStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.ParametricMapStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.ParametricMapStorage

    +

    pynetdicom.sop_class.ParametricMapStorage

    -pynetdicom.sop_class.ParametricMapStorage = '1.2.840.10008.5.1.4.1.1.30'[source]
    +pynetdicom.sop_class.ParametricMapStorage = '1.2.840.10008.5.1.4.1.1.30'[source]

    1.2.840.10008.5.1.4.1.1.30

    diff --git a/dev/reference/generated/pynetdicom.sop_class.PatientRadiationDoseSRStorage.html b/dev/reference/generated/pynetdicom.sop_class.PatientRadiationDoseSRStorage.html index 32c3e6593..a76477e8a 100644 --- a/dev/reference/generated/pynetdicom.sop_class.PatientRadiationDoseSRStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.PatientRadiationDoseSRStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.PatientRadiationDoseSRStorage

    +

    pynetdicom.sop_class.PatientRadiationDoseSRStorage

    -pynetdicom.sop_class.PatientRadiationDoseSRStorage = '1.2.840.10008.5.1.4.1.1.88.73'[source]
    +pynetdicom.sop_class.PatientRadiationDoseSRStorage = '1.2.840.10008.5.1.4.1.1.88.73'[source]

    1.2.840.10008.5.1.4.1.1.88.73

    diff --git a/dev/reference/generated/pynetdicom.sop_class.PatientRootQueryRetrieveInformationModelFind.html b/dev/reference/generated/pynetdicom.sop_class.PatientRootQueryRetrieveInformationModelFind.html index 45f64acb5..6fceba9e3 100644 --- a/dev/reference/generated/pynetdicom.sop_class.PatientRootQueryRetrieveInformationModelFind.html +++ b/dev/reference/generated/pynetdicom.sop_class.PatientRootQueryRetrieveInformationModelFind.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.PatientRootQueryRetrieveInformationModelFind

    +

    pynetdicom.sop_class.PatientRootQueryRetrieveInformationModelFind

    -pynetdicom.sop_class.PatientRootQueryRetrieveInformationModelFind = '1.2.840.10008.5.1.4.1.2.1.1'[source]
    +pynetdicom.sop_class.PatientRootQueryRetrieveInformationModelFind = '1.2.840.10008.5.1.4.1.2.1.1'[source]

    1.2.840.10008.5.1.4.1.2.1.1

    diff --git a/dev/reference/generated/pynetdicom.sop_class.PatientRootQueryRetrieveInformationModelGet.html b/dev/reference/generated/pynetdicom.sop_class.PatientRootQueryRetrieveInformationModelGet.html index e3e0ff441..08d4c53b8 100644 --- a/dev/reference/generated/pynetdicom.sop_class.PatientRootQueryRetrieveInformationModelGet.html +++ b/dev/reference/generated/pynetdicom.sop_class.PatientRootQueryRetrieveInformationModelGet.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.PatientRootQueryRetrieveInformationModelGet

    +

    pynetdicom.sop_class.PatientRootQueryRetrieveInformationModelGet

    -pynetdicom.sop_class.PatientRootQueryRetrieveInformationModelGet = '1.2.840.10008.5.1.4.1.2.1.3'[source]
    +pynetdicom.sop_class.PatientRootQueryRetrieveInformationModelGet = '1.2.840.10008.5.1.4.1.2.1.3'[source]

    1.2.840.10008.5.1.4.1.2.1.3

    diff --git a/dev/reference/generated/pynetdicom.sop_class.PatientRootQueryRetrieveInformationModelMove.html b/dev/reference/generated/pynetdicom.sop_class.PatientRootQueryRetrieveInformationModelMove.html index f1e74d2d0..562726c72 100644 --- a/dev/reference/generated/pynetdicom.sop_class.PatientRootQueryRetrieveInformationModelMove.html +++ b/dev/reference/generated/pynetdicom.sop_class.PatientRootQueryRetrieveInformationModelMove.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.PatientRootQueryRetrieveInformationModelMove

    +

    pynetdicom.sop_class.PatientRootQueryRetrieveInformationModelMove

    -pynetdicom.sop_class.PatientRootQueryRetrieveInformationModelMove = '1.2.840.10008.5.1.4.1.2.1.2'[source]
    +pynetdicom.sop_class.PatientRootQueryRetrieveInformationModelMove = '1.2.840.10008.5.1.4.1.2.1.2'[source]

    1.2.840.10008.5.1.4.1.2.1.2

    diff --git a/dev/reference/generated/pynetdicom.sop_class.PatientStudyOnlyQueryRetrieveInformationModelFind.html b/dev/reference/generated/pynetdicom.sop_class.PatientStudyOnlyQueryRetrieveInformationModelFind.html index 087535d45..a4ac10dfa 100644 --- a/dev/reference/generated/pynetdicom.sop_class.PatientStudyOnlyQueryRetrieveInformationModelFind.html +++ b/dev/reference/generated/pynetdicom.sop_class.PatientStudyOnlyQueryRetrieveInformationModelFind.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.PatientStudyOnlyQueryRetrieveInformationModelFind

    +

    pynetdicom.sop_class.PatientStudyOnlyQueryRetrieveInformationModelFind

    -pynetdicom.sop_class.PatientStudyOnlyQueryRetrieveInformationModelFind = '1.2.840.10008.5.1.4.1.2.3.1'[source]
    +pynetdicom.sop_class.PatientStudyOnlyQueryRetrieveInformationModelFind = '1.2.840.10008.5.1.4.1.2.3.1'[source]

    1.2.840.10008.5.1.4.1.2.3.1

    diff --git a/dev/reference/generated/pynetdicom.sop_class.PatientStudyOnlyQueryRetrieveInformationModelGet.html b/dev/reference/generated/pynetdicom.sop_class.PatientStudyOnlyQueryRetrieveInformationModelGet.html index 596df0d41..48463b143 100644 --- a/dev/reference/generated/pynetdicom.sop_class.PatientStudyOnlyQueryRetrieveInformationModelGet.html +++ b/dev/reference/generated/pynetdicom.sop_class.PatientStudyOnlyQueryRetrieveInformationModelGet.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.PatientStudyOnlyQueryRetrieveInformationModelGet

    +

    pynetdicom.sop_class.PatientStudyOnlyQueryRetrieveInformationModelGet

    -pynetdicom.sop_class.PatientStudyOnlyQueryRetrieveInformationModelGet = '1.2.840.10008.5.1.4.1.2.3.3'[source]
    +pynetdicom.sop_class.PatientStudyOnlyQueryRetrieveInformationModelGet = '1.2.840.10008.5.1.4.1.2.3.3'[source]

    1.2.840.10008.5.1.4.1.2.3.3

    diff --git a/dev/reference/generated/pynetdicom.sop_class.PatientStudyOnlyQueryRetrieveInformationModelMove.html b/dev/reference/generated/pynetdicom.sop_class.PatientStudyOnlyQueryRetrieveInformationModelMove.html index 69c0e5e91..42b5260d9 100644 --- a/dev/reference/generated/pynetdicom.sop_class.PatientStudyOnlyQueryRetrieveInformationModelMove.html +++ b/dev/reference/generated/pynetdicom.sop_class.PatientStudyOnlyQueryRetrieveInformationModelMove.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.PatientStudyOnlyQueryRetrieveInformationModelMove

    +

    pynetdicom.sop_class.PatientStudyOnlyQueryRetrieveInformationModelMove

    -pynetdicom.sop_class.PatientStudyOnlyQueryRetrieveInformationModelMove = '1.2.840.10008.5.1.4.1.2.3.2'[source]
    +pynetdicom.sop_class.PatientStudyOnlyQueryRetrieveInformationModelMove = '1.2.840.10008.5.1.4.1.2.3.2'[source]

    1.2.840.10008.5.1.4.1.2.3.2

    diff --git a/dev/reference/generated/pynetdicom.sop_class.PerformedImagingAgentAdministrationSRStorage.html b/dev/reference/generated/pynetdicom.sop_class.PerformedImagingAgentAdministrationSRStorage.html index 66a42c9a9..4fad0d01d 100644 --- a/dev/reference/generated/pynetdicom.sop_class.PerformedImagingAgentAdministrationSRStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.PerformedImagingAgentAdministrationSRStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.PerformedImagingAgentAdministrationSRStorage

    +

    pynetdicom.sop_class.PerformedImagingAgentAdministrationSRStorage

    -pynetdicom.sop_class.PerformedImagingAgentAdministrationSRStorage = '1.2.840.10008.5.1.4.1.1.88.75'[source]
    +pynetdicom.sop_class.PerformedImagingAgentAdministrationSRStorage = '1.2.840.10008.5.1.4.1.1.88.75'[source]

    1.2.840.10008.5.1.4.1.1.88.75

    diff --git a/dev/reference/generated/pynetdicom.sop_class.PlannedImagingAgentAdministrationSRStorage.html b/dev/reference/generated/pynetdicom.sop_class.PlannedImagingAgentAdministrationSRStorage.html index 49fe9c251..4712fb9cc 100644 --- a/dev/reference/generated/pynetdicom.sop_class.PlannedImagingAgentAdministrationSRStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.PlannedImagingAgentAdministrationSRStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.PlannedImagingAgentAdministrationSRStorage

    +

    pynetdicom.sop_class.PlannedImagingAgentAdministrationSRStorage

    -pynetdicom.sop_class.PlannedImagingAgentAdministrationSRStorage = '1.2.840.10008.5.1.4.1.1.88.74'[source]
    +pynetdicom.sop_class.PlannedImagingAgentAdministrationSRStorage = '1.2.840.10008.5.1.4.1.1.88.74'[source]

    1.2.840.10008.5.1.4.1.1.88.74

    diff --git a/dev/reference/generated/pynetdicom.sop_class.PositronEmissionTomographyImageStorage.html b/dev/reference/generated/pynetdicom.sop_class.PositronEmissionTomographyImageStorage.html index 07639344b..c602057c6 100644 --- a/dev/reference/generated/pynetdicom.sop_class.PositronEmissionTomographyImageStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.PositronEmissionTomographyImageStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.PositronEmissionTomographyImageStorage

    +

    pynetdicom.sop_class.PositronEmissionTomographyImageStorage

    -pynetdicom.sop_class.PositronEmissionTomographyImageStorage = '1.2.840.10008.5.1.4.1.1.128'[source]
    +pynetdicom.sop_class.PositronEmissionTomographyImageStorage = '1.2.840.10008.5.1.4.1.1.128'[source]

    1.2.840.10008.5.1.4.1.1.128

    diff --git a/dev/reference/generated/pynetdicom.sop_class.PresentationLUT.html b/dev/reference/generated/pynetdicom.sop_class.PresentationLUT.html index bb00d9076..d79ae44a2 100644 --- a/dev/reference/generated/pynetdicom.sop_class.PresentationLUT.html +++ b/dev/reference/generated/pynetdicom.sop_class.PresentationLUT.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.PresentationLUT

    +

    pynetdicom.sop_class.PresentationLUT

    -pynetdicom.sop_class.PresentationLUT = '1.2.840.10008.5.1.1.23'[source]
    +pynetdicom.sop_class.PresentationLUT = '1.2.840.10008.5.1.1.23'[source]

    1.2.840.10008.5.1.1.23

    diff --git a/dev/reference/generated/pynetdicom.sop_class.PrintJob.html b/dev/reference/generated/pynetdicom.sop_class.PrintJob.html index 24d2b0382..e5c2aed09 100644 --- a/dev/reference/generated/pynetdicom.sop_class.PrintJob.html +++ b/dev/reference/generated/pynetdicom.sop_class.PrintJob.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.PrintJob

    +

    pynetdicom.sop_class.PrintJob

    -pynetdicom.sop_class.PrintJob = '1.2.840.10008.5.1.1.14'[source]
    +pynetdicom.sop_class.PrintJob = '1.2.840.10008.5.1.1.14'[source]

    1.2.840.10008.5.1.1.14

    diff --git a/dev/reference/generated/pynetdicom.sop_class.Printer.html b/dev/reference/generated/pynetdicom.sop_class.Printer.html index cbdad7cbf..15ccac602 100644 --- a/dev/reference/generated/pynetdicom.sop_class.Printer.html +++ b/dev/reference/generated/pynetdicom.sop_class.Printer.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.Printer

    +

    pynetdicom.sop_class.Printer

    -pynetdicom.sop_class.Printer = '1.2.840.10008.5.1.1.16'[source]
    +pynetdicom.sop_class.Printer = '1.2.840.10008.5.1.1.16'[source]

    1.2.840.10008.5.1.1.16

    diff --git a/dev/reference/generated/pynetdicom.sop_class.PrinterConfigurationRetrieval.html b/dev/reference/generated/pynetdicom.sop_class.PrinterConfigurationRetrieval.html index d5c409fa3..2553bfa90 100644 --- a/dev/reference/generated/pynetdicom.sop_class.PrinterConfigurationRetrieval.html +++ b/dev/reference/generated/pynetdicom.sop_class.PrinterConfigurationRetrieval.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.PrinterConfigurationRetrieval

    +

    pynetdicom.sop_class.PrinterConfigurationRetrieval

    -pynetdicom.sop_class.PrinterConfigurationRetrieval = '1.2.840.10008.5.1.1.16.376'[source]
    +pynetdicom.sop_class.PrinterConfigurationRetrieval = '1.2.840.10008.5.1.1.16.376'[source]

    1.2.840.10008.5.1.1.16.376

    diff --git a/dev/reference/generated/pynetdicom.sop_class.PrinterConfigurationRetrievalInstance.html b/dev/reference/generated/pynetdicom.sop_class.PrinterConfigurationRetrievalInstance.html index f1452bb26..aa565cb4a 100644 --- a/dev/reference/generated/pynetdicom.sop_class.PrinterConfigurationRetrievalInstance.html +++ b/dev/reference/generated/pynetdicom.sop_class.PrinterConfigurationRetrievalInstance.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -126,10 +126,10 @@
    -

    pynetdicom.sop_class.PrinterConfigurationRetrievalInstance

    +

    pynetdicom.sop_class.PrinterConfigurationRetrievalInstance

    -pynetdicom.sop_class.PrinterConfigurationRetrievalInstance = '1.2.840.10008.5.1.1.17.376'[source]
    +pynetdicom.sop_class.PrinterConfigurationRetrievalInstance = '1.2.840.10008.5.1.1.17.376'[source]

    1.2.840.10008.5.1.1.17.376

    New in version 1.5.

    diff --git a/dev/reference/generated/pynetdicom.sop_class.PrinterInstance.html b/dev/reference/generated/pynetdicom.sop_class.PrinterInstance.html index 17f5802b4..4f21e54fa 100644 --- a/dev/reference/generated/pynetdicom.sop_class.PrinterInstance.html +++ b/dev/reference/generated/pynetdicom.sop_class.PrinterInstance.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -126,10 +126,10 @@
    -

    pynetdicom.sop_class.PrinterInstance

    +

    pynetdicom.sop_class.PrinterInstance

    -pynetdicom.sop_class.PrinterInstance = '1.2.840.10008.5.1.1.17'[source]
    +pynetdicom.sop_class.PrinterInstance = '1.2.840.10008.5.1.1.17'[source]

    1.2.840.10008.5.1.1.17

    New in version 1.5.

    diff --git a/dev/reference/generated/pynetdicom.sop_class.ProceduralEventLogging.html b/dev/reference/generated/pynetdicom.sop_class.ProceduralEventLogging.html index dbf06a64a..2de4db9c7 100644 --- a/dev/reference/generated/pynetdicom.sop_class.ProceduralEventLogging.html +++ b/dev/reference/generated/pynetdicom.sop_class.ProceduralEventLogging.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.ProceduralEventLogging

    +

    pynetdicom.sop_class.ProceduralEventLogging

    -pynetdicom.sop_class.ProceduralEventLogging = '1.2.840.10008.1.40'[source]
    +pynetdicom.sop_class.ProceduralEventLogging = '1.2.840.10008.1.40'[source]

    1.2.840.10008.1.40

    diff --git a/dev/reference/generated/pynetdicom.sop_class.ProceduralEventLoggingInstance.html b/dev/reference/generated/pynetdicom.sop_class.ProceduralEventLoggingInstance.html index 3176941ef..270279abb 100644 --- a/dev/reference/generated/pynetdicom.sop_class.ProceduralEventLoggingInstance.html +++ b/dev/reference/generated/pynetdicom.sop_class.ProceduralEventLoggingInstance.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -126,10 +126,10 @@
    -

    pynetdicom.sop_class.ProceduralEventLoggingInstance

    +

    pynetdicom.sop_class.ProceduralEventLoggingInstance

    -pynetdicom.sop_class.ProceduralEventLoggingInstance = '1.2.840.10008.1.40.1'[source]
    +pynetdicom.sop_class.ProceduralEventLoggingInstance = '1.2.840.10008.1.40.1'[source]

    1.2.840.10008.1.40.1

    New in version 1.5.

    diff --git a/dev/reference/generated/pynetdicom.sop_class.ProcedureLogStorage.html b/dev/reference/generated/pynetdicom.sop_class.ProcedureLogStorage.html index b1c42fada..cd0ad6757 100644 --- a/dev/reference/generated/pynetdicom.sop_class.ProcedureLogStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.ProcedureLogStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.ProcedureLogStorage

    +

    pynetdicom.sop_class.ProcedureLogStorage

    -pynetdicom.sop_class.ProcedureLogStorage = '1.2.840.10008.5.1.4.1.1.88.40'[source]
    +pynetdicom.sop_class.ProcedureLogStorage = '1.2.840.10008.5.1.4.1.1.88.40'[source]

    1.2.840.10008.5.1.4.1.1.88.40

    diff --git a/dev/reference/generated/pynetdicom.sop_class.ProductCharacteristicsQuery.html b/dev/reference/generated/pynetdicom.sop_class.ProductCharacteristicsQuery.html index 18ca82635..0c8361a6e 100644 --- a/dev/reference/generated/pynetdicom.sop_class.ProductCharacteristicsQuery.html +++ b/dev/reference/generated/pynetdicom.sop_class.ProductCharacteristicsQuery.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.ProductCharacteristicsQuery

    +

    pynetdicom.sop_class.ProductCharacteristicsQuery

    -pynetdicom.sop_class.ProductCharacteristicsQuery = '1.2.840.10008.5.1.4.41'[source]
    +pynetdicom.sop_class.ProductCharacteristicsQuery = '1.2.840.10008.5.1.4.41'[source]

    1.2.840.10008.5.1.4.41

    diff --git a/dev/reference/generated/pynetdicom.sop_class.ProtocolApprovalInformationModelFind.html b/dev/reference/generated/pynetdicom.sop_class.ProtocolApprovalInformationModelFind.html index 43f563155..249c6fa24 100644 --- a/dev/reference/generated/pynetdicom.sop_class.ProtocolApprovalInformationModelFind.html +++ b/dev/reference/generated/pynetdicom.sop_class.ProtocolApprovalInformationModelFind.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.ProtocolApprovalInformationModelFind

    +

    pynetdicom.sop_class.ProtocolApprovalInformationModelFind

    -pynetdicom.sop_class.ProtocolApprovalInformationModelFind = '1.2.840.10008.5.1.4.1.1.200.4'[source]
    +pynetdicom.sop_class.ProtocolApprovalInformationModelFind = '1.2.840.10008.5.1.4.1.1.200.4'[source]

    1.2.840.10008.5.1.4.1.1.200.4

    diff --git a/dev/reference/generated/pynetdicom.sop_class.ProtocolApprovalInformationModelGet.html b/dev/reference/generated/pynetdicom.sop_class.ProtocolApprovalInformationModelGet.html index 1b0497a5f..a30de200c 100644 --- a/dev/reference/generated/pynetdicom.sop_class.ProtocolApprovalInformationModelGet.html +++ b/dev/reference/generated/pynetdicom.sop_class.ProtocolApprovalInformationModelGet.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.ProtocolApprovalInformationModelGet

    +

    pynetdicom.sop_class.ProtocolApprovalInformationModelGet

    -pynetdicom.sop_class.ProtocolApprovalInformationModelGet = '1.2.840.10008.5.1.4.1.1.200.6'[source]
    +pynetdicom.sop_class.ProtocolApprovalInformationModelGet = '1.2.840.10008.5.1.4.1.1.200.6'[source]

    1.2.840.10008.5.1.4.1.1.200.6

    diff --git a/dev/reference/generated/pynetdicom.sop_class.ProtocolApprovalInformationModelMove.html b/dev/reference/generated/pynetdicom.sop_class.ProtocolApprovalInformationModelMove.html index 62fd35569..be81c8c9f 100644 --- a/dev/reference/generated/pynetdicom.sop_class.ProtocolApprovalInformationModelMove.html +++ b/dev/reference/generated/pynetdicom.sop_class.ProtocolApprovalInformationModelMove.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.ProtocolApprovalInformationModelMove

    +

    pynetdicom.sop_class.ProtocolApprovalInformationModelMove

    -pynetdicom.sop_class.ProtocolApprovalInformationModelMove = '1.2.840.10008.5.1.4.1.1.200.5'[source]
    +pynetdicom.sop_class.ProtocolApprovalInformationModelMove = '1.2.840.10008.5.1.4.1.1.200.5'[source]

    1.2.840.10008.5.1.4.1.1.200.5

    diff --git a/dev/reference/generated/pynetdicom.sop_class.ProtocolApprovalStorage.html b/dev/reference/generated/pynetdicom.sop_class.ProtocolApprovalStorage.html index 23b77cabb..40eee9be1 100644 --- a/dev/reference/generated/pynetdicom.sop_class.ProtocolApprovalStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.ProtocolApprovalStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.ProtocolApprovalStorage

    +

    pynetdicom.sop_class.ProtocolApprovalStorage

    -pynetdicom.sop_class.ProtocolApprovalStorage = '1.2.840.10008.5.1.4.1.1.200.3'[source]
    +pynetdicom.sop_class.ProtocolApprovalStorage = '1.2.840.10008.5.1.4.1.1.200.3'[source]

    1.2.840.10008.5.1.4.1.1.200.3

    diff --git a/dev/reference/generated/pynetdicom.sop_class.PseudoColorSoftcopyPresentationStageStorage.html b/dev/reference/generated/pynetdicom.sop_class.PseudoColorSoftcopyPresentationStageStorage.html index f3ec7aba8..51cce4df6 100644 --- a/dev/reference/generated/pynetdicom.sop_class.PseudoColorSoftcopyPresentationStageStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.PseudoColorSoftcopyPresentationStageStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.PseudoColorSoftcopyPresentationStageStorage

    +

    pynetdicom.sop_class.PseudoColorSoftcopyPresentationStageStorage

    -pynetdicom.sop_class.PseudoColorSoftcopyPresentationStageStorage = '1.2.840.10008.5.1.4.1.1.11.3'[source]
    +pynetdicom.sop_class.PseudoColorSoftcopyPresentationStageStorage = '1.2.840.10008.5.1.4.1.1.11.3'[source]

    1.2.840.10008.5.1.4.1.1.11.3

    diff --git a/dev/reference/generated/pynetdicom.sop_class.RTBeamsDeliveryInstructionStorage.html b/dev/reference/generated/pynetdicom.sop_class.RTBeamsDeliveryInstructionStorage.html index ca10efeea..6f7df2435 100644 --- a/dev/reference/generated/pynetdicom.sop_class.RTBeamsDeliveryInstructionStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.RTBeamsDeliveryInstructionStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.RTBeamsDeliveryInstructionStorage

    +

    pynetdicom.sop_class.RTBeamsDeliveryInstructionStorage

    -pynetdicom.sop_class.RTBeamsDeliveryInstructionStorage = '1.2.840.10008.5.1.4.34.7'[source]
    +pynetdicom.sop_class.RTBeamsDeliveryInstructionStorage = '1.2.840.10008.5.1.4.34.7'[source]

    1.2.840.10008.5.1.4.34.7

    diff --git a/dev/reference/generated/pynetdicom.sop_class.RTBeamsTreatmentRecordStorage.html b/dev/reference/generated/pynetdicom.sop_class.RTBeamsTreatmentRecordStorage.html index b37623843..47c1d9c60 100644 --- a/dev/reference/generated/pynetdicom.sop_class.RTBeamsTreatmentRecordStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.RTBeamsTreatmentRecordStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.RTBeamsTreatmentRecordStorage

    +

    pynetdicom.sop_class.RTBeamsTreatmentRecordStorage

    -pynetdicom.sop_class.RTBeamsTreatmentRecordStorage = '1.2.840.10008.5.1.4.1.1.481.4'[source]
    +pynetdicom.sop_class.RTBeamsTreatmentRecordStorage = '1.2.840.10008.5.1.4.1.1.481.4'[source]

    1.2.840.10008.5.1.4.1.1.481.4

    diff --git a/dev/reference/generated/pynetdicom.sop_class.RTBrachyApplicationSetupDeliveryInstructionsStorage.html b/dev/reference/generated/pynetdicom.sop_class.RTBrachyApplicationSetupDeliveryInstructionsStorage.html index 40dafc530..74493e55e 100644 --- a/dev/reference/generated/pynetdicom.sop_class.RTBrachyApplicationSetupDeliveryInstructionsStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.RTBrachyApplicationSetupDeliveryInstructionsStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.RTBrachyApplicationSetupDeliveryInstructionsStorage

    +

    pynetdicom.sop_class.RTBrachyApplicationSetupDeliveryInstructionsStorage

    -pynetdicom.sop_class.RTBrachyApplicationSetupDeliveryInstructionsStorage = '1.2.840.10008.5.1.4.34.10'[source]
    +pynetdicom.sop_class.RTBrachyApplicationSetupDeliveryInstructionsStorage = '1.2.840.10008.5.1.4.34.10'[source]

    1.2.840.10008.5.1.4.34.10

    diff --git a/dev/reference/generated/pynetdicom.sop_class.RTBrachyTreatmentRecordStorage.html b/dev/reference/generated/pynetdicom.sop_class.RTBrachyTreatmentRecordStorage.html index 84b3d758c..c72aebba7 100644 --- a/dev/reference/generated/pynetdicom.sop_class.RTBrachyTreatmentRecordStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.RTBrachyTreatmentRecordStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.RTBrachyTreatmentRecordStorage

    +

    pynetdicom.sop_class.RTBrachyTreatmentRecordStorage

    -pynetdicom.sop_class.RTBrachyTreatmentRecordStorage = '1.2.840.10008.5.1.4.1.1.481.6'[source]
    +pynetdicom.sop_class.RTBrachyTreatmentRecordStorage = '1.2.840.10008.5.1.4.1.1.481.6'[source]

    1.2.840.10008.5.1.4.1.1.481.6

    diff --git a/dev/reference/generated/pynetdicom.sop_class.RTConventionalMachineVerification.html b/dev/reference/generated/pynetdicom.sop_class.RTConventionalMachineVerification.html index d8e4b1493..57549e8fe 100644 --- a/dev/reference/generated/pynetdicom.sop_class.RTConventionalMachineVerification.html +++ b/dev/reference/generated/pynetdicom.sop_class.RTConventionalMachineVerification.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.RTConventionalMachineVerification

    +

    pynetdicom.sop_class.RTConventionalMachineVerification

    -pynetdicom.sop_class.RTConventionalMachineVerification = '1.2.840.10008.5.1.4.34.8'[source]
    +pynetdicom.sop_class.RTConventionalMachineVerification = '1.2.840.10008.5.1.4.34.8'[source]

    1.2.840.10008.5.1.4.34.8

    diff --git a/dev/reference/generated/pynetdicom.sop_class.RTDoseStorage.html b/dev/reference/generated/pynetdicom.sop_class.RTDoseStorage.html index dbb66499e..39dad16d0 100644 --- a/dev/reference/generated/pynetdicom.sop_class.RTDoseStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.RTDoseStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.RTDoseStorage

    +

    pynetdicom.sop_class.RTDoseStorage

    -pynetdicom.sop_class.RTDoseStorage = '1.2.840.10008.5.1.4.1.1.481.2'[source]
    +pynetdicom.sop_class.RTDoseStorage = '1.2.840.10008.5.1.4.1.1.481.2'[source]

    1.2.840.10008.5.1.4.1.1.481.2

    diff --git a/dev/reference/generated/pynetdicom.sop_class.RTImageStorage.html b/dev/reference/generated/pynetdicom.sop_class.RTImageStorage.html index cc4e676d6..38144e900 100644 --- a/dev/reference/generated/pynetdicom.sop_class.RTImageStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.RTImageStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.RTImageStorage

    +

    pynetdicom.sop_class.RTImageStorage

    -pynetdicom.sop_class.RTImageStorage = '1.2.840.10008.5.1.4.1.1.481.1'[source]
    +pynetdicom.sop_class.RTImageStorage = '1.2.840.10008.5.1.4.1.1.481.1'[source]

    1.2.840.10008.5.1.4.1.1.481.1

    diff --git a/dev/reference/generated/pynetdicom.sop_class.RTIonBeamsTreatmentRecordStorage.html b/dev/reference/generated/pynetdicom.sop_class.RTIonBeamsTreatmentRecordStorage.html index 13e3a1cf2..585b6a8ac 100644 --- a/dev/reference/generated/pynetdicom.sop_class.RTIonBeamsTreatmentRecordStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.RTIonBeamsTreatmentRecordStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.RTIonBeamsTreatmentRecordStorage

    +

    pynetdicom.sop_class.RTIonBeamsTreatmentRecordStorage

    -pynetdicom.sop_class.RTIonBeamsTreatmentRecordStorage = '1.2.840.10008.5.1.4.1.1.481.9'[source]
    +pynetdicom.sop_class.RTIonBeamsTreatmentRecordStorage = '1.2.840.10008.5.1.4.1.1.481.9'[source]

    1.2.840.10008.5.1.4.1.1.481.9

    diff --git a/dev/reference/generated/pynetdicom.sop_class.RTIonMachineVerification.html b/dev/reference/generated/pynetdicom.sop_class.RTIonMachineVerification.html index 48d249987..fd3cbce7d 100644 --- a/dev/reference/generated/pynetdicom.sop_class.RTIonMachineVerification.html +++ b/dev/reference/generated/pynetdicom.sop_class.RTIonMachineVerification.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.RTIonMachineVerification

    +

    pynetdicom.sop_class.RTIonMachineVerification

    -pynetdicom.sop_class.RTIonMachineVerification = '1.2.840.10008.5.1.4.34.9'[source]
    +pynetdicom.sop_class.RTIonMachineVerification = '1.2.840.10008.5.1.4.34.9'[source]

    1.2.840.10008.5.1.4.34.9

    diff --git a/dev/reference/generated/pynetdicom.sop_class.RTIonPlanStorage.html b/dev/reference/generated/pynetdicom.sop_class.RTIonPlanStorage.html index 3f6506304..9e2fd4e46 100644 --- a/dev/reference/generated/pynetdicom.sop_class.RTIonPlanStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.RTIonPlanStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.RTIonPlanStorage

    +

    pynetdicom.sop_class.RTIonPlanStorage

    -pynetdicom.sop_class.RTIonPlanStorage = '1.2.840.10008.5.1.4.1.1.481.8'[source]
    +pynetdicom.sop_class.RTIonPlanStorage = '1.2.840.10008.5.1.4.1.1.481.8'[source]

    1.2.840.10008.5.1.4.1.1.481.8

    diff --git a/dev/reference/generated/pynetdicom.sop_class.RTPhysicianIntentStorage.html b/dev/reference/generated/pynetdicom.sop_class.RTPhysicianIntentStorage.html index 57815276e..9fd006751 100644 --- a/dev/reference/generated/pynetdicom.sop_class.RTPhysicianIntentStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.RTPhysicianIntentStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.RTPhysicianIntentStorage

    +

    pynetdicom.sop_class.RTPhysicianIntentStorage

    -pynetdicom.sop_class.RTPhysicianIntentStorage = '1.2.840.10008.5.1.4.1.1.481.10'[source]
    +pynetdicom.sop_class.RTPhysicianIntentStorage = '1.2.840.10008.5.1.4.1.1.481.10'[source]

    1.2.840.10008.5.1.4.1.1.481.10

    diff --git a/dev/reference/generated/pynetdicom.sop_class.RTPlanStorage.html b/dev/reference/generated/pynetdicom.sop_class.RTPlanStorage.html index b82b72443..99f1c4620 100644 --- a/dev/reference/generated/pynetdicom.sop_class.RTPlanStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.RTPlanStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.RTPlanStorage

    +

    pynetdicom.sop_class.RTPlanStorage

    -pynetdicom.sop_class.RTPlanStorage = '1.2.840.10008.5.1.4.1.1.481.5'[source]
    +pynetdicom.sop_class.RTPlanStorage = '1.2.840.10008.5.1.4.1.1.481.5'[source]

    1.2.840.10008.5.1.4.1.1.481.5

    diff --git a/dev/reference/generated/pynetdicom.sop_class.RTRadiationRecordSetStorage.html b/dev/reference/generated/pynetdicom.sop_class.RTRadiationRecordSetStorage.html index 9cb7872d6..dc29824b5 100644 --- a/dev/reference/generated/pynetdicom.sop_class.RTRadiationRecordSetStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.RTRadiationRecordSetStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.RTRadiationRecordSetStorage

    +

    pynetdicom.sop_class.RTRadiationRecordSetStorage

    -pynetdicom.sop_class.RTRadiationRecordSetStorage = '1.2.840.10008.5.1.4.1.1.481.16'[source]
    +pynetdicom.sop_class.RTRadiationRecordSetStorage = '1.2.840.10008.5.1.4.1.1.481.16'[source]

    1.2.840.10008.5.1.4.1.1.481.16

    diff --git a/dev/reference/generated/pynetdicom.sop_class.RTRadiationSalvageRecordStorage.html b/dev/reference/generated/pynetdicom.sop_class.RTRadiationSalvageRecordStorage.html index d8e98f90c..74510382b 100644 --- a/dev/reference/generated/pynetdicom.sop_class.RTRadiationSalvageRecordStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.RTRadiationSalvageRecordStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.RTRadiationSalvageRecordStorage

    +

    pynetdicom.sop_class.RTRadiationSalvageRecordStorage

    -pynetdicom.sop_class.RTRadiationSalvageRecordStorage = '1.2.840.10008.5.1.4.1.1.481.17'[source]
    +pynetdicom.sop_class.RTRadiationSalvageRecordStorage = '1.2.840.10008.5.1.4.1.1.481.17'[source]

    1.2.840.10008.5.1.4.1.1.481.17

    diff --git a/dev/reference/generated/pynetdicom.sop_class.RTRadiationSetDeliveryInstructionStorage.html b/dev/reference/generated/pynetdicom.sop_class.RTRadiationSetDeliveryInstructionStorage.html index f072caaa8..9db3fc001 100644 --- a/dev/reference/generated/pynetdicom.sop_class.RTRadiationSetDeliveryInstructionStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.RTRadiationSetDeliveryInstructionStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.RTRadiationSetDeliveryInstructionStorage

    +

    pynetdicom.sop_class.RTRadiationSetDeliveryInstructionStorage

    -pynetdicom.sop_class.RTRadiationSetDeliveryInstructionStorage = '1.2.840.10008.5.1.4.1.1.481.21'[source]
    +pynetdicom.sop_class.RTRadiationSetDeliveryInstructionStorage = '1.2.840.10008.5.1.4.1.1.481.21'[source]

    1.2.840.10008.5.1.4.1.1.481.21

    diff --git a/dev/reference/generated/pynetdicom.sop_class.RTRadiationSetStorage.html b/dev/reference/generated/pynetdicom.sop_class.RTRadiationSetStorage.html index 24cc002d2..20bac9ab8 100644 --- a/dev/reference/generated/pynetdicom.sop_class.RTRadiationSetStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.RTRadiationSetStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.RTRadiationSetStorage

    +

    pynetdicom.sop_class.RTRadiationSetStorage

    -pynetdicom.sop_class.RTRadiationSetStorage = '1.2.840.10008.5.1.4.1.1.481.12'[source]
    +pynetdicom.sop_class.RTRadiationSetStorage = '1.2.840.10008.5.1.4.1.1.481.12'[source]

    1.2.840.10008.5.1.4.1.1.481.12

    diff --git a/dev/reference/generated/pynetdicom.sop_class.RTSegmentAnnotationStorage.html b/dev/reference/generated/pynetdicom.sop_class.RTSegmentAnnotationStorage.html index 25807a658..3557a3cac 100644 --- a/dev/reference/generated/pynetdicom.sop_class.RTSegmentAnnotationStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.RTSegmentAnnotationStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.RTSegmentAnnotationStorage

    +

    pynetdicom.sop_class.RTSegmentAnnotationStorage

    -pynetdicom.sop_class.RTSegmentAnnotationStorage = '1.2.840.10008.5.1.4.1.1.481.11'[source]
    +pynetdicom.sop_class.RTSegmentAnnotationStorage = '1.2.840.10008.5.1.4.1.1.481.11'[source]

    1.2.840.10008.5.1.4.1.1.481.11

    diff --git a/dev/reference/generated/pynetdicom.sop_class.RTStructureSetStorage.html b/dev/reference/generated/pynetdicom.sop_class.RTStructureSetStorage.html index 9a3ffa5ba..a8efb3280 100644 --- a/dev/reference/generated/pynetdicom.sop_class.RTStructureSetStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.RTStructureSetStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.RTStructureSetStorage

    +

    pynetdicom.sop_class.RTStructureSetStorage

    -pynetdicom.sop_class.RTStructureSetStorage = '1.2.840.10008.5.1.4.1.1.481.3'[source]
    +pynetdicom.sop_class.RTStructureSetStorage = '1.2.840.10008.5.1.4.1.1.481.3'[source]

    1.2.840.10008.5.1.4.1.1.481.3

    diff --git a/dev/reference/generated/pynetdicom.sop_class.RTTreatmentPreparationStorage.html b/dev/reference/generated/pynetdicom.sop_class.RTTreatmentPreparationStorage.html index 78c354b19..a17259e28 100644 --- a/dev/reference/generated/pynetdicom.sop_class.RTTreatmentPreparationStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.RTTreatmentPreparationStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.RTTreatmentPreparationStorage

    +

    pynetdicom.sop_class.RTTreatmentPreparationStorage

    -pynetdicom.sop_class.RTTreatmentPreparationStorage = '1.2.840.10008.5.1.4.1.1.481.22'[source]
    +pynetdicom.sop_class.RTTreatmentPreparationStorage = '1.2.840.10008.5.1.4.1.1.481.22'[source]

    1.2.840.10008.5.1.4.1.1.481.22

    diff --git a/dev/reference/generated/pynetdicom.sop_class.RTTreatmentSummaryRecordStorage.html b/dev/reference/generated/pynetdicom.sop_class.RTTreatmentSummaryRecordStorage.html index 504da57b3..3c516b5d4 100644 --- a/dev/reference/generated/pynetdicom.sop_class.RTTreatmentSummaryRecordStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.RTTreatmentSummaryRecordStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.RTTreatmentSummaryRecordStorage

    +

    pynetdicom.sop_class.RTTreatmentSummaryRecordStorage

    -pynetdicom.sop_class.RTTreatmentSummaryRecordStorage = '1.2.840.10008.5.1.4.1.1.481.7'[source]
    +pynetdicom.sop_class.RTTreatmentSummaryRecordStorage = '1.2.840.10008.5.1.4.1.1.481.7'[source]

    1.2.840.10008.5.1.4.1.1.481.7

    diff --git a/dev/reference/generated/pynetdicom.sop_class.RadiopharmaceuticalRadiationDoseSRStorage.html b/dev/reference/generated/pynetdicom.sop_class.RadiopharmaceuticalRadiationDoseSRStorage.html index 547257531..a5177b00e 100644 --- a/dev/reference/generated/pynetdicom.sop_class.RadiopharmaceuticalRadiationDoseSRStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.RadiopharmaceuticalRadiationDoseSRStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.RadiopharmaceuticalRadiationDoseSRStorage

    +

    pynetdicom.sop_class.RadiopharmaceuticalRadiationDoseSRStorage

    -pynetdicom.sop_class.RadiopharmaceuticalRadiationDoseSRStorage = '1.2.840.10008.5.1.4.1.1.88.68'[source]
    +pynetdicom.sop_class.RadiopharmaceuticalRadiationDoseSRStorage = '1.2.840.10008.5.1.4.1.1.88.68'[source]

    1.2.840.10008.5.1.4.1.1.88.68

    diff --git a/dev/reference/generated/pynetdicom.sop_class.RawDataStorage.html b/dev/reference/generated/pynetdicom.sop_class.RawDataStorage.html index de04a1fa2..89ef78ff6 100644 --- a/dev/reference/generated/pynetdicom.sop_class.RawDataStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.RawDataStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.RawDataStorage

    +

    pynetdicom.sop_class.RawDataStorage

    -pynetdicom.sop_class.RawDataStorage = '1.2.840.10008.5.1.4.1.1.66'[source]
    +pynetdicom.sop_class.RawDataStorage = '1.2.840.10008.5.1.4.1.1.66'[source]

    1.2.840.10008.5.1.4.1.1.66

    diff --git a/dev/reference/generated/pynetdicom.sop_class.RealWorldValueMappingStorage.html b/dev/reference/generated/pynetdicom.sop_class.RealWorldValueMappingStorage.html index da7cb28dd..61ca31743 100644 --- a/dev/reference/generated/pynetdicom.sop_class.RealWorldValueMappingStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.RealWorldValueMappingStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.RealWorldValueMappingStorage

    +

    pynetdicom.sop_class.RealWorldValueMappingStorage

    -pynetdicom.sop_class.RealWorldValueMappingStorage = '1.2.840.10008.5.1.4.1.1.67'[source]
    +pynetdicom.sop_class.RealWorldValueMappingStorage = '1.2.840.10008.5.1.4.1.1.67'[source]

    1.2.840.10008.5.1.4.1.1.67

    diff --git a/dev/reference/generated/pynetdicom.sop_class.RespiratoryWaveformStorage.html b/dev/reference/generated/pynetdicom.sop_class.RespiratoryWaveformStorage.html index fa16d0d3d..2d68ddd2b 100644 --- a/dev/reference/generated/pynetdicom.sop_class.RespiratoryWaveformStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.RespiratoryWaveformStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.RespiratoryWaveformStorage

    +

    pynetdicom.sop_class.RespiratoryWaveformStorage

    -pynetdicom.sop_class.RespiratoryWaveformStorage = '1.2.840.10008.5.1.4.1.1.9.6.1'[source]
    +pynetdicom.sop_class.RespiratoryWaveformStorage = '1.2.840.10008.5.1.4.1.1.9.6.1'[source]

    1.2.840.10008.5.1.4.1.1.9.6.1

    diff --git a/dev/reference/generated/pynetdicom.sop_class.RoboticArmRadiationRecordStorage.html b/dev/reference/generated/pynetdicom.sop_class.RoboticArmRadiationRecordStorage.html index e52bf4816..7b03d4267 100644 --- a/dev/reference/generated/pynetdicom.sop_class.RoboticArmRadiationRecordStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.RoboticArmRadiationRecordStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.RoboticArmRadiationRecordStorage

    +

    pynetdicom.sop_class.RoboticArmRadiationRecordStorage

    -pynetdicom.sop_class.RoboticArmRadiationRecordStorage = '1.2.840.10008.5.1.4.1.1.481.20'[source]
    +pynetdicom.sop_class.RoboticArmRadiationRecordStorage = '1.2.840.10008.5.1.4.1.1.481.20'[source]

    1.2.840.10008.5.1.4.1.1.481.20

    diff --git a/dev/reference/generated/pynetdicom.sop_class.RoboticArmRadiationStorage.html b/dev/reference/generated/pynetdicom.sop_class.RoboticArmRadiationStorage.html index da5c25ed5..8427373d0 100644 --- a/dev/reference/generated/pynetdicom.sop_class.RoboticArmRadiationStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.RoboticArmRadiationStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.RoboticArmRadiationStorage

    +

    pynetdicom.sop_class.RoboticArmRadiationStorage

    -pynetdicom.sop_class.RoboticArmRadiationStorage = '1.2.840.10008.5.1.4.1.1.481.15'[source]
    +pynetdicom.sop_class.RoboticArmRadiationStorage = '1.2.840.10008.5.1.4.1.1.481.15'[source]

    1.2.840.10008.5.1.4.1.1.481.15

    diff --git a/dev/reference/generated/pynetdicom.sop_class.RoutineScalpElectroencephalogramWaveformStorage.html b/dev/reference/generated/pynetdicom.sop_class.RoutineScalpElectroencephalogramWaveformStorage.html index e4c86b330..77b37e310 100644 --- a/dev/reference/generated/pynetdicom.sop_class.RoutineScalpElectroencephalogramWaveformStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.RoutineScalpElectroencephalogramWaveformStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.RoutineScalpElectroencephalogramWaveformStorage

    +

    pynetdicom.sop_class.RoutineScalpElectroencephalogramWaveformStorage

    -pynetdicom.sop_class.RoutineScalpElectroencephalogramWaveformStorage = '1.2.840.10008.5.1.4.1.1.9.7.1'[source]
    +pynetdicom.sop_class.RoutineScalpElectroencephalogramWaveformStorage = '1.2.840.10008.5.1.4.1.1.9.7.1'[source]

    1.2.840.10008.5.1.4.1.1.9.7.1

    diff --git a/dev/reference/generated/pynetdicom.sop_class.SOPClass.html b/dev/reference/generated/pynetdicom.sop_class.SOPClass.html index 24ce05eaa..b8d1b9934 100644 --- a/dev/reference/generated/pynetdicom.sop_class.SOPClass.html +++ b/dev/reference/generated/pynetdicom.sop_class.SOPClass.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,15 +121,15 @@
    -

    pynetdicom.sop_class.SOPClass

    +

    pynetdicom.sop_class.SOPClass

    -class pynetdicom.sop_class.SOPClass(val: str)[source]
    -

    Extend UID to include the corresponding Service +class pynetdicom.sop_class.SOPClass(val: str)[source] +

    Extend UID to include the corresponding Service Class.

    -__init__()
    +__init__()

    Methods

    @@ -330,7 +330,7 @@

    pynetdicom.sop_class.SOPClass
    -property service_class: ServiceClass
    +property service_class: ServiceClass

    Return the corresponding Service Class implementation.

    diff --git a/dev/reference/generated/pynetdicom.sop_class.SecondaryCaptureImageStorage.html b/dev/reference/generated/pynetdicom.sop_class.SecondaryCaptureImageStorage.html index f690ef777..25aa6e3b6 100644 --- a/dev/reference/generated/pynetdicom.sop_class.SecondaryCaptureImageStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.SecondaryCaptureImageStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.SecondaryCaptureImageStorage

    +

    pynetdicom.sop_class.SecondaryCaptureImageStorage

    -pynetdicom.sop_class.SecondaryCaptureImageStorage = '1.2.840.10008.5.1.4.1.1.7'[source]
    +pynetdicom.sop_class.SecondaryCaptureImageStorage = '1.2.840.10008.5.1.4.1.1.7'[source]

    1.2.840.10008.5.1.4.1.1.7

    diff --git a/dev/reference/generated/pynetdicom.sop_class.SegmentationStorage.html b/dev/reference/generated/pynetdicom.sop_class.SegmentationStorage.html index f3425fa1f..217187e78 100644 --- a/dev/reference/generated/pynetdicom.sop_class.SegmentationStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.SegmentationStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.SegmentationStorage

    +

    pynetdicom.sop_class.SegmentationStorage

    -pynetdicom.sop_class.SegmentationStorage = '1.2.840.10008.5.1.4.1.1.66.4'[source]
    +pynetdicom.sop_class.SegmentationStorage = '1.2.840.10008.5.1.4.1.1.66.4'[source]

    1.2.840.10008.5.1.4.1.1.66.4

    diff --git a/dev/reference/generated/pynetdicom.sop_class.SegmentedVolumeRenderingVolumetricPresentationStateStorage.html b/dev/reference/generated/pynetdicom.sop_class.SegmentedVolumeRenderingVolumetricPresentationStateStorage.html index 2ef1f5e9b..1619a8456 100644 --- a/dev/reference/generated/pynetdicom.sop_class.SegmentedVolumeRenderingVolumetricPresentationStateStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.SegmentedVolumeRenderingVolumetricPresentationStateStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.SegmentedVolumeRenderingVolumetricPresentationStateStorage

    +

    pynetdicom.sop_class.SegmentedVolumeRenderingVolumetricPresentationStateStorage

    -pynetdicom.sop_class.SegmentedVolumeRenderingVolumetricPresentationStateStorage = '1.2.840.10008.5.1.4.1.1.11.10'[source]
    +pynetdicom.sop_class.SegmentedVolumeRenderingVolumetricPresentationStateStorage = '1.2.840.10008.5.1.4.1.1.11.10'[source]

    1.2.840.10008.5.1.4.1.1.11.10

    diff --git a/dev/reference/generated/pynetdicom.sop_class.SimplifiedAdultEchoSRStorage.html b/dev/reference/generated/pynetdicom.sop_class.SimplifiedAdultEchoSRStorage.html index 124039b47..e6ae4359d 100644 --- a/dev/reference/generated/pynetdicom.sop_class.SimplifiedAdultEchoSRStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.SimplifiedAdultEchoSRStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.SimplifiedAdultEchoSRStorage

    +

    pynetdicom.sop_class.SimplifiedAdultEchoSRStorage

    -pynetdicom.sop_class.SimplifiedAdultEchoSRStorage = '1.2.840.10008.5.1.4.1.1.88.72'[source]
    +pynetdicom.sop_class.SimplifiedAdultEchoSRStorage = '1.2.840.10008.5.1.4.1.1.88.72'[source]

    1.2.840.10008.5.1.4.1.1.88.72

    diff --git a/dev/reference/generated/pynetdicom.sop_class.SleepElectroencephalogramWaveformStorage.html b/dev/reference/generated/pynetdicom.sop_class.SleepElectroencephalogramWaveformStorage.html index e6f6af8f4..499c8b859 100644 --- a/dev/reference/generated/pynetdicom.sop_class.SleepElectroencephalogramWaveformStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.SleepElectroencephalogramWaveformStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.SleepElectroencephalogramWaveformStorage

    +

    pynetdicom.sop_class.SleepElectroencephalogramWaveformStorage

    -pynetdicom.sop_class.SleepElectroencephalogramWaveformStorage = '1.2.840.10008.5.1.4.1.1.9.7.4'[source]
    +pynetdicom.sop_class.SleepElectroencephalogramWaveformStorage = '1.2.840.10008.5.1.4.1.1.9.7.4'[source]

    1.2.840.10008.5.1.4.1.1.9.7.4

    diff --git a/dev/reference/generated/pynetdicom.sop_class.SpatialFiducialsStorage.html b/dev/reference/generated/pynetdicom.sop_class.SpatialFiducialsStorage.html index 6de26482a..205d8b3c5 100644 --- a/dev/reference/generated/pynetdicom.sop_class.SpatialFiducialsStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.SpatialFiducialsStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.SpatialFiducialsStorage

    +

    pynetdicom.sop_class.SpatialFiducialsStorage

    -pynetdicom.sop_class.SpatialFiducialsStorage = '1.2.840.10008.5.1.4.1.1.66.2'[source]
    +pynetdicom.sop_class.SpatialFiducialsStorage = '1.2.840.10008.5.1.4.1.1.66.2'[source]

    1.2.840.10008.5.1.4.1.1.66.2

    diff --git a/dev/reference/generated/pynetdicom.sop_class.SpatialRegistrationStorage.html b/dev/reference/generated/pynetdicom.sop_class.SpatialRegistrationStorage.html index 33e5e6b78..80d8ca387 100644 --- a/dev/reference/generated/pynetdicom.sop_class.SpatialRegistrationStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.SpatialRegistrationStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.SpatialRegistrationStorage

    +

    pynetdicom.sop_class.SpatialRegistrationStorage

    -pynetdicom.sop_class.SpatialRegistrationStorage = '1.2.840.10008.5.1.4.1.1.66.1'[source]
    +pynetdicom.sop_class.SpatialRegistrationStorage = '1.2.840.10008.5.1.4.1.1.66.1'[source]

    1.2.840.10008.5.1.4.1.1.66.1

    diff --git a/dev/reference/generated/pynetdicom.sop_class.SpectaclePrescriptionReportStorage.html b/dev/reference/generated/pynetdicom.sop_class.SpectaclePrescriptionReportStorage.html index 3b0493bb5..cc2c9295d 100644 --- a/dev/reference/generated/pynetdicom.sop_class.SpectaclePrescriptionReportStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.SpectaclePrescriptionReportStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.SpectaclePrescriptionReportStorage

    +

    pynetdicom.sop_class.SpectaclePrescriptionReportStorage

    -pynetdicom.sop_class.SpectaclePrescriptionReportStorage = '1.2.840.10008.5.1.4.1.1.78.6'[source]
    +pynetdicom.sop_class.SpectaclePrescriptionReportStorage = '1.2.840.10008.5.1.4.1.1.78.6'[source]

    1.2.840.10008.5.1.4.1.1.78.6

    diff --git a/dev/reference/generated/pynetdicom.sop_class.StereometricRelationshipStorage.html b/dev/reference/generated/pynetdicom.sop_class.StereometricRelationshipStorage.html index 77e1f6fe5..06512906e 100644 --- a/dev/reference/generated/pynetdicom.sop_class.StereometricRelationshipStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.StereometricRelationshipStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.StereometricRelationshipStorage

    +

    pynetdicom.sop_class.StereometricRelationshipStorage

    -pynetdicom.sop_class.StereometricRelationshipStorage = '1.2.840.10008.5.1.4.1.1.77.1.5.3'[source]
    +pynetdicom.sop_class.StereometricRelationshipStorage = '1.2.840.10008.5.1.4.1.1.77.1.5.3'[source]

    1.2.840.10008.5.1.4.1.1.77.1.5.3

    diff --git a/dev/reference/generated/pynetdicom.sop_class.StorageCommitmentPushModel.html b/dev/reference/generated/pynetdicom.sop_class.StorageCommitmentPushModel.html index 227e9f9dd..110c83cc4 100644 --- a/dev/reference/generated/pynetdicom.sop_class.StorageCommitmentPushModel.html +++ b/dev/reference/generated/pynetdicom.sop_class.StorageCommitmentPushModel.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.StorageCommitmentPushModel

    +

    pynetdicom.sop_class.StorageCommitmentPushModel

    -pynetdicom.sop_class.StorageCommitmentPushModel = '1.2.840.10008.1.20.1'[source]
    +pynetdicom.sop_class.StorageCommitmentPushModel = '1.2.840.10008.1.20.1'[source]

    1.2.840.10008.1.20.1

    diff --git a/dev/reference/generated/pynetdicom.sop_class.StorageCommitmentPushModelInstance.html b/dev/reference/generated/pynetdicom.sop_class.StorageCommitmentPushModelInstance.html index 38760d5ad..68c509692 100644 --- a/dev/reference/generated/pynetdicom.sop_class.StorageCommitmentPushModelInstance.html +++ b/dev/reference/generated/pynetdicom.sop_class.StorageCommitmentPushModelInstance.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -126,10 +126,10 @@
    -

    pynetdicom.sop_class.StorageCommitmentPushModelInstance

    +

    pynetdicom.sop_class.StorageCommitmentPushModelInstance

    -pynetdicom.sop_class.StorageCommitmentPushModelInstance = '1.2.840.10008.1.20.1.1'[source]
    +pynetdicom.sop_class.StorageCommitmentPushModelInstance = '1.2.840.10008.1.20.1.1'[source]

    1.2.840.10008.1.20.1.1

    New in version 1.5.

    diff --git a/dev/reference/generated/pynetdicom.sop_class.StudyRootQueryRetrieveInformationModelFind.html b/dev/reference/generated/pynetdicom.sop_class.StudyRootQueryRetrieveInformationModelFind.html index d601cbaa1..413bda328 100644 --- a/dev/reference/generated/pynetdicom.sop_class.StudyRootQueryRetrieveInformationModelFind.html +++ b/dev/reference/generated/pynetdicom.sop_class.StudyRootQueryRetrieveInformationModelFind.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.StudyRootQueryRetrieveInformationModelFind

    +

    pynetdicom.sop_class.StudyRootQueryRetrieveInformationModelFind

    -pynetdicom.sop_class.StudyRootQueryRetrieveInformationModelFind = '1.2.840.10008.5.1.4.1.2.2.1'[source]
    +pynetdicom.sop_class.StudyRootQueryRetrieveInformationModelFind = '1.2.840.10008.5.1.4.1.2.2.1'[source]

    1.2.840.10008.5.1.4.1.2.2.1

    diff --git a/dev/reference/generated/pynetdicom.sop_class.StudyRootQueryRetrieveInformationModelGet.html b/dev/reference/generated/pynetdicom.sop_class.StudyRootQueryRetrieveInformationModelGet.html index 814dd5ebd..f30f6939e 100644 --- a/dev/reference/generated/pynetdicom.sop_class.StudyRootQueryRetrieveInformationModelGet.html +++ b/dev/reference/generated/pynetdicom.sop_class.StudyRootQueryRetrieveInformationModelGet.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.StudyRootQueryRetrieveInformationModelGet

    +

    pynetdicom.sop_class.StudyRootQueryRetrieveInformationModelGet

    -pynetdicom.sop_class.StudyRootQueryRetrieveInformationModelGet = '1.2.840.10008.5.1.4.1.2.2.3'[source]
    +pynetdicom.sop_class.StudyRootQueryRetrieveInformationModelGet = '1.2.840.10008.5.1.4.1.2.2.3'[source]

    1.2.840.10008.5.1.4.1.2.2.3

    diff --git a/dev/reference/generated/pynetdicom.sop_class.StudyRootQueryRetrieveInformationModelMove.html b/dev/reference/generated/pynetdicom.sop_class.StudyRootQueryRetrieveInformationModelMove.html index 52251c9ae..5b43a563c 100644 --- a/dev/reference/generated/pynetdicom.sop_class.StudyRootQueryRetrieveInformationModelMove.html +++ b/dev/reference/generated/pynetdicom.sop_class.StudyRootQueryRetrieveInformationModelMove.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.StudyRootQueryRetrieveInformationModelMove

    +

    pynetdicom.sop_class.StudyRootQueryRetrieveInformationModelMove

    -pynetdicom.sop_class.StudyRootQueryRetrieveInformationModelMove = '1.2.840.10008.5.1.4.1.2.2.2'[source]
    +pynetdicom.sop_class.StudyRootQueryRetrieveInformationModelMove = '1.2.840.10008.5.1.4.1.2.2.2'[source]

    1.2.840.10008.5.1.4.1.2.2.2

    diff --git a/dev/reference/generated/pynetdicom.sop_class.SubjectiveRefractionMeasurementsStorage.html b/dev/reference/generated/pynetdicom.sop_class.SubjectiveRefractionMeasurementsStorage.html index f91ac4ea6..702e9b98b 100644 --- a/dev/reference/generated/pynetdicom.sop_class.SubjectiveRefractionMeasurementsStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.SubjectiveRefractionMeasurementsStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.SubjectiveRefractionMeasurementsStorage

    +

    pynetdicom.sop_class.SubjectiveRefractionMeasurementsStorage

    -pynetdicom.sop_class.SubjectiveRefractionMeasurementsStorage = '1.2.840.10008.5.1.4.1.1.78.4'[source]
    +pynetdicom.sop_class.SubjectiveRefractionMeasurementsStorage = '1.2.840.10008.5.1.4.1.1.78.4'[source]

    1.2.840.10008.5.1.4.1.1.78.4

    diff --git a/dev/reference/generated/pynetdicom.sop_class.SubstanceAdministrationLogging.html b/dev/reference/generated/pynetdicom.sop_class.SubstanceAdministrationLogging.html index d45925171..92436ac51 100644 --- a/dev/reference/generated/pynetdicom.sop_class.SubstanceAdministrationLogging.html +++ b/dev/reference/generated/pynetdicom.sop_class.SubstanceAdministrationLogging.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.SubstanceAdministrationLogging

    +

    pynetdicom.sop_class.SubstanceAdministrationLogging

    -pynetdicom.sop_class.SubstanceAdministrationLogging = '1.2.840.10008.1.42'[source]
    +pynetdicom.sop_class.SubstanceAdministrationLogging = '1.2.840.10008.1.42'[source]

    1.2.840.10008.1.42

    diff --git a/dev/reference/generated/pynetdicom.sop_class.SubstanceAdministrationLoggingInstance.html b/dev/reference/generated/pynetdicom.sop_class.SubstanceAdministrationLoggingInstance.html index b266d182e..99a85b15d 100644 --- a/dev/reference/generated/pynetdicom.sop_class.SubstanceAdministrationLoggingInstance.html +++ b/dev/reference/generated/pynetdicom.sop_class.SubstanceAdministrationLoggingInstance.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -126,10 +126,10 @@
    -

    pynetdicom.sop_class.SubstanceAdministrationLoggingInstance

    +

    pynetdicom.sop_class.SubstanceAdministrationLoggingInstance

    -pynetdicom.sop_class.SubstanceAdministrationLoggingInstance = '1.2.840.10008.1.42.1'[source]
    +pynetdicom.sop_class.SubstanceAdministrationLoggingInstance = '1.2.840.10008.1.42.1'[source]

    1.2.840.10008.1.42.1

    New in version 1.5.

    diff --git a/dev/reference/generated/pynetdicom.sop_class.SubstanceApprovalQuery.html b/dev/reference/generated/pynetdicom.sop_class.SubstanceApprovalQuery.html index fe87c5fe8..3549dcd86 100644 --- a/dev/reference/generated/pynetdicom.sop_class.SubstanceApprovalQuery.html +++ b/dev/reference/generated/pynetdicom.sop_class.SubstanceApprovalQuery.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.SubstanceApprovalQuery

    +

    pynetdicom.sop_class.SubstanceApprovalQuery

    -pynetdicom.sop_class.SubstanceApprovalQuery = '1.2.840.10008.5.1.4.42'[source]
    +pynetdicom.sop_class.SubstanceApprovalQuery = '1.2.840.10008.5.1.4.42'[source]

    1.2.840.10008.5.1.4.42

    diff --git a/dev/reference/generated/pynetdicom.sop_class.SurfaceScanMeshStorage.html b/dev/reference/generated/pynetdicom.sop_class.SurfaceScanMeshStorage.html index 686b64caf..ce16d97c0 100644 --- a/dev/reference/generated/pynetdicom.sop_class.SurfaceScanMeshStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.SurfaceScanMeshStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.SurfaceScanMeshStorage

    +

    pynetdicom.sop_class.SurfaceScanMeshStorage

    -pynetdicom.sop_class.SurfaceScanMeshStorage = '1.2.840.10008.5.1.4.1.1.68.1'[source]
    +pynetdicom.sop_class.SurfaceScanMeshStorage = '1.2.840.10008.5.1.4.1.1.68.1'[source]

    1.2.840.10008.5.1.4.1.1.68.1

    diff --git a/dev/reference/generated/pynetdicom.sop_class.SurfaceScanPointCloudStorage.html b/dev/reference/generated/pynetdicom.sop_class.SurfaceScanPointCloudStorage.html index c283a11c0..2bfd97bc2 100644 --- a/dev/reference/generated/pynetdicom.sop_class.SurfaceScanPointCloudStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.SurfaceScanPointCloudStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.SurfaceScanPointCloudStorage

    +

    pynetdicom.sop_class.SurfaceScanPointCloudStorage

    -pynetdicom.sop_class.SurfaceScanPointCloudStorage = '1.2.840.10008.5.1.4.1.1.68.2'[source]
    +pynetdicom.sop_class.SurfaceScanPointCloudStorage = '1.2.840.10008.5.1.4.1.1.68.2'[source]

    1.2.840.10008.5.1.4.1.1.68.2

    diff --git a/dev/reference/generated/pynetdicom.sop_class.SurfaceSegmentationStorage.html b/dev/reference/generated/pynetdicom.sop_class.SurfaceSegmentationStorage.html index dc9a31266..1c8bbbc4c 100644 --- a/dev/reference/generated/pynetdicom.sop_class.SurfaceSegmentationStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.SurfaceSegmentationStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.SurfaceSegmentationStorage

    +

    pynetdicom.sop_class.SurfaceSegmentationStorage

    -pynetdicom.sop_class.SurfaceSegmentationStorage = '1.2.840.10008.5.1.4.1.1.66.5'[source]
    +pynetdicom.sop_class.SurfaceSegmentationStorage = '1.2.840.10008.5.1.4.1.1.66.5'[source]

    1.2.840.10008.5.1.4.1.1.66.5

    diff --git a/dev/reference/generated/pynetdicom.sop_class.TomotherapeuticRadiationRecordStorage.html b/dev/reference/generated/pynetdicom.sop_class.TomotherapeuticRadiationRecordStorage.html index 1729dace4..179f67417 100644 --- a/dev/reference/generated/pynetdicom.sop_class.TomotherapeuticRadiationRecordStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.TomotherapeuticRadiationRecordStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.TomotherapeuticRadiationRecordStorage

    +

    pynetdicom.sop_class.TomotherapeuticRadiationRecordStorage

    -pynetdicom.sop_class.TomotherapeuticRadiationRecordStorage = '1.2.840.10008.5.1.4.1.1.481.18'[source]
    +pynetdicom.sop_class.TomotherapeuticRadiationRecordStorage = '1.2.840.10008.5.1.4.1.1.481.18'[source]

    1.2.840.10008.5.1.4.1.1.481.18

    diff --git a/dev/reference/generated/pynetdicom.sop_class.TomotherapeuticRadiationStorage.html b/dev/reference/generated/pynetdicom.sop_class.TomotherapeuticRadiationStorage.html index 186b19408..c1d41a602 100644 --- a/dev/reference/generated/pynetdicom.sop_class.TomotherapeuticRadiationStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.TomotherapeuticRadiationStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.TomotherapeuticRadiationStorage

    +

    pynetdicom.sop_class.TomotherapeuticRadiationStorage

    -pynetdicom.sop_class.TomotherapeuticRadiationStorage = '1.2.840.10008.5.1.4.1.1.481.14'[source]
    +pynetdicom.sop_class.TomotherapeuticRadiationStorage = '1.2.840.10008.5.1.4.1.1.481.14'[source]

    1.2.840.10008.5.1.4.1.1.481.14

    diff --git a/dev/reference/generated/pynetdicom.sop_class.TractographyResultsStorage.html b/dev/reference/generated/pynetdicom.sop_class.TractographyResultsStorage.html index f20ae8ee2..cdadca6db 100644 --- a/dev/reference/generated/pynetdicom.sop_class.TractographyResultsStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.TractographyResultsStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.TractographyResultsStorage

    +

    pynetdicom.sop_class.TractographyResultsStorage

    -pynetdicom.sop_class.TractographyResultsStorage = '1.2.840.10008.5.1.4.1.1.66.6'[source]
    +pynetdicom.sop_class.TractographyResultsStorage = '1.2.840.10008.5.1.4.1.1.66.6'[source]

    1.2.840.10008.5.1.4.1.1.66.6

    diff --git a/dev/reference/generated/pynetdicom.sop_class.TwelveLeadECGWaveformStorage.html b/dev/reference/generated/pynetdicom.sop_class.TwelveLeadECGWaveformStorage.html index 3347e51f1..302411074 100644 --- a/dev/reference/generated/pynetdicom.sop_class.TwelveLeadECGWaveformStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.TwelveLeadECGWaveformStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.TwelveLeadECGWaveformStorage

    +

    pynetdicom.sop_class.TwelveLeadECGWaveformStorage

    -pynetdicom.sop_class.TwelveLeadECGWaveformStorage = '1.2.840.10008.5.1.4.1.1.9.1.1'[source]
    +pynetdicom.sop_class.TwelveLeadECGWaveformStorage = '1.2.840.10008.5.1.4.1.1.9.1.1'[source]

    1.2.840.10008.5.1.4.1.1.9.1.1

    diff --git a/dev/reference/generated/pynetdicom.sop_class.UPSFilteredGlobalSubscriptionInstance.html b/dev/reference/generated/pynetdicom.sop_class.UPSFilteredGlobalSubscriptionInstance.html index 79988e7ff..62ee96e5f 100644 --- a/dev/reference/generated/pynetdicom.sop_class.UPSFilteredGlobalSubscriptionInstance.html +++ b/dev/reference/generated/pynetdicom.sop_class.UPSFilteredGlobalSubscriptionInstance.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -126,10 +126,10 @@
    -

    pynetdicom.sop_class.UPSFilteredGlobalSubscriptionInstance

    +

    pynetdicom.sop_class.UPSFilteredGlobalSubscriptionInstance

    -pynetdicom.sop_class.UPSFilteredGlobalSubscriptionInstance = '1.2.840.10008.5.1.4.34.5.1'[source]
    +pynetdicom.sop_class.UPSFilteredGlobalSubscriptionInstance = '1.2.840.10008.5.1.4.34.5.1'[source]

    1.2.840.10008.5.1.4.34.5.1

    New in version 1.5.

    diff --git a/dev/reference/generated/pynetdicom.sop_class.UPSGlobalSubscriptionInstance.html b/dev/reference/generated/pynetdicom.sop_class.UPSGlobalSubscriptionInstance.html index 2a02eb336..8386b7a0a 100644 --- a/dev/reference/generated/pynetdicom.sop_class.UPSGlobalSubscriptionInstance.html +++ b/dev/reference/generated/pynetdicom.sop_class.UPSGlobalSubscriptionInstance.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -126,10 +126,10 @@
    -

    pynetdicom.sop_class.UPSGlobalSubscriptionInstance

    +

    pynetdicom.sop_class.UPSGlobalSubscriptionInstance

    -pynetdicom.sop_class.UPSGlobalSubscriptionInstance = '1.2.840.10008.5.1.4.34.5'[source]
    +pynetdicom.sop_class.UPSGlobalSubscriptionInstance = '1.2.840.10008.5.1.4.34.5'[source]

    1.2.840.10008.5.1.4.34.5

    New in version 1.5.

    diff --git a/dev/reference/generated/pynetdicom.sop_class.UltrasoundImageStorage.html b/dev/reference/generated/pynetdicom.sop_class.UltrasoundImageStorage.html index 7effba3d1..86240ac61 100644 --- a/dev/reference/generated/pynetdicom.sop_class.UltrasoundImageStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.UltrasoundImageStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.UltrasoundImageStorage

    +

    pynetdicom.sop_class.UltrasoundImageStorage

    -pynetdicom.sop_class.UltrasoundImageStorage = '1.2.840.10008.5.1.4.1.1.6.1'[source]
    +pynetdicom.sop_class.UltrasoundImageStorage = '1.2.840.10008.5.1.4.1.1.6.1'[source]

    1.2.840.10008.5.1.4.1.1.6.1

    diff --git a/dev/reference/generated/pynetdicom.sop_class.UltrasoundMultiFrameImageStorage.html b/dev/reference/generated/pynetdicom.sop_class.UltrasoundMultiFrameImageStorage.html index b7a3f98cc..ccf832d65 100644 --- a/dev/reference/generated/pynetdicom.sop_class.UltrasoundMultiFrameImageStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.UltrasoundMultiFrameImageStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.UltrasoundMultiFrameImageStorage

    +

    pynetdicom.sop_class.UltrasoundMultiFrameImageStorage

    -pynetdicom.sop_class.UltrasoundMultiFrameImageStorage = '1.2.840.10008.5.1.4.1.1.3.1'[source]
    +pynetdicom.sop_class.UltrasoundMultiFrameImageStorage = '1.2.840.10008.5.1.4.1.1.3.1'[source]

    1.2.840.10008.5.1.4.1.1.3.1

    diff --git a/dev/reference/generated/pynetdicom.sop_class.UnifiedProcedureStepEvent.html b/dev/reference/generated/pynetdicom.sop_class.UnifiedProcedureStepEvent.html index 0372376af..1c352dff9 100644 --- a/dev/reference/generated/pynetdicom.sop_class.UnifiedProcedureStepEvent.html +++ b/dev/reference/generated/pynetdicom.sop_class.UnifiedProcedureStepEvent.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.UnifiedProcedureStepEvent

    +

    pynetdicom.sop_class.UnifiedProcedureStepEvent

    -pynetdicom.sop_class.UnifiedProcedureStepEvent = '1.2.840.10008.5.1.4.34.6.4'[source]
    +pynetdicom.sop_class.UnifiedProcedureStepEvent = '1.2.840.10008.5.1.4.34.6.4'[source]

    1.2.840.10008.5.1.4.34.6.4

    diff --git a/dev/reference/generated/pynetdicom.sop_class.UnifiedProcedureStepPull.html b/dev/reference/generated/pynetdicom.sop_class.UnifiedProcedureStepPull.html index 01079c29f..c826f9093 100644 --- a/dev/reference/generated/pynetdicom.sop_class.UnifiedProcedureStepPull.html +++ b/dev/reference/generated/pynetdicom.sop_class.UnifiedProcedureStepPull.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.UnifiedProcedureStepPull

    +

    pynetdicom.sop_class.UnifiedProcedureStepPull

    -pynetdicom.sop_class.UnifiedProcedureStepPull = '1.2.840.10008.5.1.4.34.6.3'[source]
    +pynetdicom.sop_class.UnifiedProcedureStepPull = '1.2.840.10008.5.1.4.34.6.3'[source]

    1.2.840.10008.5.1.4.34.6.3

    diff --git a/dev/reference/generated/pynetdicom.sop_class.UnifiedProcedureStepPush.html b/dev/reference/generated/pynetdicom.sop_class.UnifiedProcedureStepPush.html index 156082036..fdc4b44df 100644 --- a/dev/reference/generated/pynetdicom.sop_class.UnifiedProcedureStepPush.html +++ b/dev/reference/generated/pynetdicom.sop_class.UnifiedProcedureStepPush.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.UnifiedProcedureStepPush

    +

    pynetdicom.sop_class.UnifiedProcedureStepPush

    -pynetdicom.sop_class.UnifiedProcedureStepPush = '1.2.840.10008.5.1.4.34.6.1'[source]
    +pynetdicom.sop_class.UnifiedProcedureStepPush = '1.2.840.10008.5.1.4.34.6.1'[source]

    1.2.840.10008.5.1.4.34.6.1

    diff --git a/dev/reference/generated/pynetdicom.sop_class.UnifiedProcedureStepQuery.html b/dev/reference/generated/pynetdicom.sop_class.UnifiedProcedureStepQuery.html index 5343a0087..6cb36c9a0 100644 --- a/dev/reference/generated/pynetdicom.sop_class.UnifiedProcedureStepQuery.html +++ b/dev/reference/generated/pynetdicom.sop_class.UnifiedProcedureStepQuery.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.UnifiedProcedureStepQuery

    +

    pynetdicom.sop_class.UnifiedProcedureStepQuery

    -pynetdicom.sop_class.UnifiedProcedureStepQuery = '1.2.840.10008.5.1.4.34.6.5'[source]
    +pynetdicom.sop_class.UnifiedProcedureStepQuery = '1.2.840.10008.5.1.4.34.6.5'[source]

    1.2.840.10008.5.1.4.34.6.5

    diff --git a/dev/reference/generated/pynetdicom.sop_class.UnifiedProcedureStepWatch.html b/dev/reference/generated/pynetdicom.sop_class.UnifiedProcedureStepWatch.html index b61408173..885a1e998 100644 --- a/dev/reference/generated/pynetdicom.sop_class.UnifiedProcedureStepWatch.html +++ b/dev/reference/generated/pynetdicom.sop_class.UnifiedProcedureStepWatch.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.UnifiedProcedureStepWatch

    +

    pynetdicom.sop_class.UnifiedProcedureStepWatch

    -pynetdicom.sop_class.UnifiedProcedureStepWatch = '1.2.840.10008.5.1.4.34.6.2'[source]
    +pynetdicom.sop_class.UnifiedProcedureStepWatch = '1.2.840.10008.5.1.4.34.6.2'[source]

    1.2.840.10008.5.1.4.34.6.2

    diff --git a/dev/reference/generated/pynetdicom.sop_class.VLEndoscopicImageStorage.html b/dev/reference/generated/pynetdicom.sop_class.VLEndoscopicImageStorage.html index 3eed76eff..0a54517a0 100644 --- a/dev/reference/generated/pynetdicom.sop_class.VLEndoscopicImageStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.VLEndoscopicImageStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.VLEndoscopicImageStorage

    +

    pynetdicom.sop_class.VLEndoscopicImageStorage

    -pynetdicom.sop_class.VLEndoscopicImageStorage = '1.2.840.10008.5.1.4.1.1.77.1.1'[source]
    +pynetdicom.sop_class.VLEndoscopicImageStorage = '1.2.840.10008.5.1.4.1.1.77.1.1'[source]

    1.2.840.10008.5.1.4.1.1.77.1.1

    diff --git a/dev/reference/generated/pynetdicom.sop_class.VLMicroscopicImageStorage.html b/dev/reference/generated/pynetdicom.sop_class.VLMicroscopicImageStorage.html index c1be7e4be..0788cac39 100644 --- a/dev/reference/generated/pynetdicom.sop_class.VLMicroscopicImageStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.VLMicroscopicImageStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.VLMicroscopicImageStorage

    +

    pynetdicom.sop_class.VLMicroscopicImageStorage

    -pynetdicom.sop_class.VLMicroscopicImageStorage = '1.2.840.10008.5.1.4.1.1.77.1.2'[source]
    +pynetdicom.sop_class.VLMicroscopicImageStorage = '1.2.840.10008.5.1.4.1.1.77.1.2'[source]

    1.2.840.10008.5.1.4.1.1.77.1.2

    diff --git a/dev/reference/generated/pynetdicom.sop_class.VLPhotographicImageStorage.html b/dev/reference/generated/pynetdicom.sop_class.VLPhotographicImageStorage.html index 77b6cb07c..33f963687 100644 --- a/dev/reference/generated/pynetdicom.sop_class.VLPhotographicImageStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.VLPhotographicImageStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.VLPhotographicImageStorage

    +

    pynetdicom.sop_class.VLPhotographicImageStorage

    -pynetdicom.sop_class.VLPhotographicImageStorage = '1.2.840.10008.5.1.4.1.1.77.1.4'[source]
    +pynetdicom.sop_class.VLPhotographicImageStorage = '1.2.840.10008.5.1.4.1.1.77.1.4'[source]

    1.2.840.10008.5.1.4.1.1.77.1.4

    diff --git a/dev/reference/generated/pynetdicom.sop_class.VLSlideCoordinatesMicroscopicImageStorage.html b/dev/reference/generated/pynetdicom.sop_class.VLSlideCoordinatesMicroscopicImageStorage.html index 6117ef3fe..33e4e012f 100644 --- a/dev/reference/generated/pynetdicom.sop_class.VLSlideCoordinatesMicroscopicImageStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.VLSlideCoordinatesMicroscopicImageStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.VLSlideCoordinatesMicroscopicImageStorage

    +

    pynetdicom.sop_class.VLSlideCoordinatesMicroscopicImageStorage

    -pynetdicom.sop_class.VLSlideCoordinatesMicroscopicImageStorage = '1.2.840.10008.5.1.4.1.1.77.1.3'[source]
    +pynetdicom.sop_class.VLSlideCoordinatesMicroscopicImageStorage = '1.2.840.10008.5.1.4.1.1.77.1.3'[source]

    1.2.840.10008.5.1.4.1.1.77.1.3

    diff --git a/dev/reference/generated/pynetdicom.sop_class.VLWholeSlideMicroscopyImageStorage.html b/dev/reference/generated/pynetdicom.sop_class.VLWholeSlideMicroscopyImageStorage.html index acc8ef55d..40f7a3fd3 100644 --- a/dev/reference/generated/pynetdicom.sop_class.VLWholeSlideMicroscopyImageStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.VLWholeSlideMicroscopyImageStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.VLWholeSlideMicroscopyImageStorage

    +

    pynetdicom.sop_class.VLWholeSlideMicroscopyImageStorage

    -pynetdicom.sop_class.VLWholeSlideMicroscopyImageStorage = '1.2.840.10008.5.1.4.1.1.77.1.6'[source]
    +pynetdicom.sop_class.VLWholeSlideMicroscopyImageStorage = '1.2.840.10008.5.1.4.1.1.77.1.6'[source]

    1.2.840.10008.5.1.4.1.1.77.1.6

    diff --git a/dev/reference/generated/pynetdicom.sop_class.Verification.html b/dev/reference/generated/pynetdicom.sop_class.Verification.html index 23c6550d4..fa6dd4acc 100644 --- a/dev/reference/generated/pynetdicom.sop_class.Verification.html +++ b/dev/reference/generated/pynetdicom.sop_class.Verification.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.Verification

    +

    pynetdicom.sop_class.Verification

    -pynetdicom.sop_class.Verification = '1.2.840.10008.1.1'[source]
    +pynetdicom.sop_class.Verification = '1.2.840.10008.1.1'[source]

    1.2.840.10008.1.1

    diff --git a/dev/reference/generated/pynetdicom.sop_class.VideoEndoscopicImageStorage.html b/dev/reference/generated/pynetdicom.sop_class.VideoEndoscopicImageStorage.html index f7f0d2818..101fb908e 100644 --- a/dev/reference/generated/pynetdicom.sop_class.VideoEndoscopicImageStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.VideoEndoscopicImageStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.VideoEndoscopicImageStorage

    +

    pynetdicom.sop_class.VideoEndoscopicImageStorage

    -pynetdicom.sop_class.VideoEndoscopicImageStorage = '1.2.840.10008.5.1.4.1.1.77.1.1.1'[source]
    +pynetdicom.sop_class.VideoEndoscopicImageStorage = '1.2.840.10008.5.1.4.1.1.77.1.1.1'[source]

    1.2.840.10008.5.1.4.1.1.77.1.1.1

    diff --git a/dev/reference/generated/pynetdicom.sop_class.VideoMicroscopicImageStorage.html b/dev/reference/generated/pynetdicom.sop_class.VideoMicroscopicImageStorage.html index 71bc5c06e..f2404de4a 100644 --- a/dev/reference/generated/pynetdicom.sop_class.VideoMicroscopicImageStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.VideoMicroscopicImageStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.VideoMicroscopicImageStorage

    +

    pynetdicom.sop_class.VideoMicroscopicImageStorage

    -pynetdicom.sop_class.VideoMicroscopicImageStorage = '1.2.840.10008.5.1.4.1.1.77.1.2.1'[source]
    +pynetdicom.sop_class.VideoMicroscopicImageStorage = '1.2.840.10008.5.1.4.1.1.77.1.2.1'[source]

    1.2.840.10008.5.1.4.1.1.77.1.2.1

    diff --git a/dev/reference/generated/pynetdicom.sop_class.VideoPhotographicImageStorage.html b/dev/reference/generated/pynetdicom.sop_class.VideoPhotographicImageStorage.html index f812f4606..d4babc06d 100644 --- a/dev/reference/generated/pynetdicom.sop_class.VideoPhotographicImageStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.VideoPhotographicImageStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.VideoPhotographicImageStorage

    +

    pynetdicom.sop_class.VideoPhotographicImageStorage

    -pynetdicom.sop_class.VideoPhotographicImageStorage = '1.2.840.10008.5.1.4.1.1.77.1.4.1'[source]
    +pynetdicom.sop_class.VideoPhotographicImageStorage = '1.2.840.10008.5.1.4.1.1.77.1.4.1'[source]

    1.2.840.10008.5.1.4.1.1.77.1.4.1

    diff --git a/dev/reference/generated/pynetdicom.sop_class.VisualAcuityMeasurementsStorage.html b/dev/reference/generated/pynetdicom.sop_class.VisualAcuityMeasurementsStorage.html index 1d8599693..02f606d25 100644 --- a/dev/reference/generated/pynetdicom.sop_class.VisualAcuityMeasurementsStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.VisualAcuityMeasurementsStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.VisualAcuityMeasurementsStorage

    +

    pynetdicom.sop_class.VisualAcuityMeasurementsStorage

    -pynetdicom.sop_class.VisualAcuityMeasurementsStorage = '1.2.840.10008.5.1.4.1.1.78.5'[source]
    +pynetdicom.sop_class.VisualAcuityMeasurementsStorage = '1.2.840.10008.5.1.4.1.1.78.5'[source]

    1.2.840.10008.5.1.4.1.1.78.5

    diff --git a/dev/reference/generated/pynetdicom.sop_class.VolumeRenderingVolumetricPresentationStateStorage.html b/dev/reference/generated/pynetdicom.sop_class.VolumeRenderingVolumetricPresentationStateStorage.html index 9580b27b1..1d048a0ee 100644 --- a/dev/reference/generated/pynetdicom.sop_class.VolumeRenderingVolumetricPresentationStateStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.VolumeRenderingVolumetricPresentationStateStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.VolumeRenderingVolumetricPresentationStateStorage

    +

    pynetdicom.sop_class.VolumeRenderingVolumetricPresentationStateStorage

    -pynetdicom.sop_class.VolumeRenderingVolumetricPresentationStateStorage = '1.2.840.10008.5.1.4.1.1.11.9'[source]
    +pynetdicom.sop_class.VolumeRenderingVolumetricPresentationStateStorage = '1.2.840.10008.5.1.4.1.1.11.9'[source]

    1.2.840.10008.5.1.4.1.1.11.9

    diff --git a/dev/reference/generated/pynetdicom.sop_class.WideFieldOphthalmicPhotography3DCoordinatesImageStorage.html b/dev/reference/generated/pynetdicom.sop_class.WideFieldOphthalmicPhotography3DCoordinatesImageStorage.html index 94ec86413..f1cee32ba 100644 --- a/dev/reference/generated/pynetdicom.sop_class.WideFieldOphthalmicPhotography3DCoordinatesImageStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.WideFieldOphthalmicPhotography3DCoordinatesImageStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.WideFieldOphthalmicPhotography3DCoordinatesImageStorage

    +

    pynetdicom.sop_class.WideFieldOphthalmicPhotography3DCoordinatesImageStorage

    -pynetdicom.sop_class.WideFieldOphthalmicPhotography3DCoordinatesImageStorage = '1.2.840.10008.5.1.4.1.1.77.1.5.6'[source]
    +pynetdicom.sop_class.WideFieldOphthalmicPhotography3DCoordinatesImageStorage = '1.2.840.10008.5.1.4.1.1.77.1.5.6'[source]

    1.2.840.10008.5.1.4.1.1.77.1.5.6

    diff --git a/dev/reference/generated/pynetdicom.sop_class.WideFieldOphthalmicPhotographyStereographicProjectionImageStorage.html b/dev/reference/generated/pynetdicom.sop_class.WideFieldOphthalmicPhotographyStereographicProjectionImageStorage.html index b8c526ba9..566e1b519 100644 --- a/dev/reference/generated/pynetdicom.sop_class.WideFieldOphthalmicPhotographyStereographicProjectionImageStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.WideFieldOphthalmicPhotographyStereographicProjectionImageStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.WideFieldOphthalmicPhotographyStereographicProjectionImageStorage

    +

    pynetdicom.sop_class.WideFieldOphthalmicPhotographyStereographicProjectionImageStorage

    -pynetdicom.sop_class.WideFieldOphthalmicPhotographyStereographicProjectionImageStorage = '1.2.840.10008.5.1.4.1.1.77.1.5.5'[source]
    +pynetdicom.sop_class.WideFieldOphthalmicPhotographyStereographicProjectionImageStorage = '1.2.840.10008.5.1.4.1.1.77.1.5.5'[source]

    1.2.840.10008.5.1.4.1.1.77.1.5.5

    diff --git a/dev/reference/generated/pynetdicom.sop_class.XADefinedProcedureProtocolStorage.html b/dev/reference/generated/pynetdicom.sop_class.XADefinedProcedureProtocolStorage.html index 34bb59936..7156aed8a 100644 --- a/dev/reference/generated/pynetdicom.sop_class.XADefinedProcedureProtocolStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.XADefinedProcedureProtocolStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.XADefinedProcedureProtocolStorage

    +

    pynetdicom.sop_class.XADefinedProcedureProtocolStorage

    -pynetdicom.sop_class.XADefinedProcedureProtocolStorage = '1.2.840.10008.5.1.4.1.1.200.7'[source]
    +pynetdicom.sop_class.XADefinedProcedureProtocolStorage = '1.2.840.10008.5.1.4.1.1.200.7'[source]

    1.2.840.10008.5.1.4.1.1.200.7

    diff --git a/dev/reference/generated/pynetdicom.sop_class.XAPerformedProcedureProtocolStorage.html b/dev/reference/generated/pynetdicom.sop_class.XAPerformedProcedureProtocolStorage.html index a51da217e..9cbd8858d 100644 --- a/dev/reference/generated/pynetdicom.sop_class.XAPerformedProcedureProtocolStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.XAPerformedProcedureProtocolStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.XAPerformedProcedureProtocolStorage

    +

    pynetdicom.sop_class.XAPerformedProcedureProtocolStorage

    -pynetdicom.sop_class.XAPerformedProcedureProtocolStorage = '1.2.840.10008.5.1.4.1.1.200.8'[source]
    +pynetdicom.sop_class.XAPerformedProcedureProtocolStorage = '1.2.840.10008.5.1.4.1.1.200.8'[source]

    1.2.840.10008.5.1.4.1.1.200.8

    diff --git a/dev/reference/generated/pynetdicom.sop_class.XAXRFGrayscaleSoftcopyPresentationStateStorage.html b/dev/reference/generated/pynetdicom.sop_class.XAXRFGrayscaleSoftcopyPresentationStateStorage.html index 2e9facf67..251054626 100644 --- a/dev/reference/generated/pynetdicom.sop_class.XAXRFGrayscaleSoftcopyPresentationStateStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.XAXRFGrayscaleSoftcopyPresentationStateStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.XAXRFGrayscaleSoftcopyPresentationStateStorage

    +

    pynetdicom.sop_class.XAXRFGrayscaleSoftcopyPresentationStateStorage

    -pynetdicom.sop_class.XAXRFGrayscaleSoftcopyPresentationStateStorage = '1.2.840.10008.5.1.4.1.1.11.5'[source]
    +pynetdicom.sop_class.XAXRFGrayscaleSoftcopyPresentationStateStorage = '1.2.840.10008.5.1.4.1.1.11.5'[source]

    1.2.840.10008.5.1.4.1.1.11.5

    diff --git a/dev/reference/generated/pynetdicom.sop_class.XRay3DAngiographicImageStorage.html b/dev/reference/generated/pynetdicom.sop_class.XRay3DAngiographicImageStorage.html index 8a58a078b..4196331f1 100644 --- a/dev/reference/generated/pynetdicom.sop_class.XRay3DAngiographicImageStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.XRay3DAngiographicImageStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.XRay3DAngiographicImageStorage

    +

    pynetdicom.sop_class.XRay3DAngiographicImageStorage

    -pynetdicom.sop_class.XRay3DAngiographicImageStorage = '1.2.840.10008.5.1.4.1.1.13.1.1'[source]
    +pynetdicom.sop_class.XRay3DAngiographicImageStorage = '1.2.840.10008.5.1.4.1.1.13.1.1'[source]

    1.2.840.10008.5.1.4.1.1.13.1.1

    diff --git a/dev/reference/generated/pynetdicom.sop_class.XRay3DCraniofacialImageStorage.html b/dev/reference/generated/pynetdicom.sop_class.XRay3DCraniofacialImageStorage.html index 601f4e4a3..902400b59 100644 --- a/dev/reference/generated/pynetdicom.sop_class.XRay3DCraniofacialImageStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.XRay3DCraniofacialImageStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.XRay3DCraniofacialImageStorage

    +

    pynetdicom.sop_class.XRay3DCraniofacialImageStorage

    -pynetdicom.sop_class.XRay3DCraniofacialImageStorage = '1.2.840.10008.5.1.4.1.1.13.1.2'[source]
    +pynetdicom.sop_class.XRay3DCraniofacialImageStorage = '1.2.840.10008.5.1.4.1.1.13.1.2'[source]

    1.2.840.10008.5.1.4.1.1.13.1.2

    diff --git a/dev/reference/generated/pynetdicom.sop_class.XRayAngiographicImageStorage.html b/dev/reference/generated/pynetdicom.sop_class.XRayAngiographicImageStorage.html index 16c8de18d..0f6198763 100644 --- a/dev/reference/generated/pynetdicom.sop_class.XRayAngiographicImageStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.XRayAngiographicImageStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.XRayAngiographicImageStorage

    +

    pynetdicom.sop_class.XRayAngiographicImageStorage

    -pynetdicom.sop_class.XRayAngiographicImageStorage = '1.2.840.10008.5.1.4.1.1.12.1'[source]
    +pynetdicom.sop_class.XRayAngiographicImageStorage = '1.2.840.10008.5.1.4.1.1.12.1'[source]

    1.2.840.10008.5.1.4.1.1.12.1

    diff --git a/dev/reference/generated/pynetdicom.sop_class.XRayRadiationDoseSRStorage.html b/dev/reference/generated/pynetdicom.sop_class.XRayRadiationDoseSRStorage.html index 9fb42ff6b..e3bc27647 100644 --- a/dev/reference/generated/pynetdicom.sop_class.XRayRadiationDoseSRStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.XRayRadiationDoseSRStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.XRayRadiationDoseSRStorage

    +

    pynetdicom.sop_class.XRayRadiationDoseSRStorage

    -pynetdicom.sop_class.XRayRadiationDoseSRStorage = '1.2.840.10008.5.1.4.1.1.88.67'[source]
    +pynetdicom.sop_class.XRayRadiationDoseSRStorage = '1.2.840.10008.5.1.4.1.1.88.67'[source]

    1.2.840.10008.5.1.4.1.1.88.67

    diff --git a/dev/reference/generated/pynetdicom.sop_class.XRayRadiofluoroscopicImageStorage.html b/dev/reference/generated/pynetdicom.sop_class.XRayRadiofluoroscopicImageStorage.html index a4f2f4f86..ddda603fe 100644 --- a/dev/reference/generated/pynetdicom.sop_class.XRayRadiofluoroscopicImageStorage.html +++ b/dev/reference/generated/pynetdicom.sop_class.XRayRadiofluoroscopicImageStorage.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -140,10 +140,10 @@
    -

    pynetdicom.sop_class.XRayRadiofluoroscopicImageStorage

    +

    pynetdicom.sop_class.XRayRadiofluoroscopicImageStorage

    -pynetdicom.sop_class.XRayRadiofluoroscopicImageStorage = '1.2.840.10008.5.1.4.1.1.12.2'[source]
    +pynetdicom.sop_class.XRayRadiofluoroscopicImageStorage = '1.2.840.10008.5.1.4.1.1.12.2'[source]

    1.2.840.10008.5.1.4.1.1.12.2

    diff --git a/dev/reference/generated/pynetdicom.sop_class.uid_to_service_class.html b/dev/reference/generated/pynetdicom.sop_class.uid_to_service_class.html index fe68f0991..2634f63c3 100644 --- a/dev/reference/generated/pynetdicom.sop_class.uid_to_service_class.html +++ b/dev/reference/generated/pynetdicom.sop_class.uid_to_service_class.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,15 +121,15 @@
    -

    pynetdicom.sop_class.uid_to_service_class

    +

    pynetdicom.sop_class.uid_to_service_class

    -pynetdicom.sop_class.uid_to_service_class(uid: str) Type[ServiceClass][source]
    +pynetdicom.sop_class.uid_to_service_class(uid: str) Type[ServiceClass][source]

    Return the ServiceClass object corresponding to uid.

    Parameters:
    -

    uid (pydicom.uid.UID) – The SOP or Service Class UID to use to find the corresponding Service +

    uid (pydicom.uid.UID) – The SOP or Service Class UID to use to find the corresponding Service Class.

    Returns:
    diff --git a/dev/reference/generated/pynetdicom.sop_class.uid_to_sop_class.html b/dev/reference/generated/pynetdicom.sop_class.uid_to_sop_class.html index 5a9783874..bd12b4e5b 100644 --- a/dev/reference/generated/pynetdicom.sop_class.uid_to_sop_class.html +++ b/dev/reference/generated/pynetdicom.sop_class.uid_to_sop_class.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -121,14 +121,14 @@
    -

    pynetdicom.sop_class.uid_to_sop_class

    +

    pynetdicom.sop_class.uid_to_sop_class

    -pynetdicom.sop_class.uid_to_sop_class(uid: str) SOPClass[source]
    +pynetdicom.sop_class.uid_to_sop_class(uid: str) SOPClass[source]

    Return the SOPClass object corresponding to uid.

    Parameters:
    -

    uid (pydicom.uid.UID) – Return the corresponding object for this UID.

    +

    uid (pydicom.uid.UID) – Return the corresponding object for this UID.

    Returns:

    The SOP class corresponding to uid.

    @@ -137,7 +137,7 @@

    pynetdicom.sop_class.uid_to_sop_class

    sop_class.SOPClass subclass

    Raises:
    -

    NotImplementedError – If the SOP Class corresponding to the given UID has not been +

    NotImplementedError – If the SOP Class corresponding to the given UID has not been implemented.

    diff --git a/dev/reference/generated/pynetdicom.status.Status.html b/dev/reference/generated/pynetdicom.status.Status.html index 1bdc9974e..02d0b8eef 100644 --- a/dev/reference/generated/pynetdicom.status.Status.html +++ b/dev/reference/generated/pynetdicom.status.Status.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -119,18 +119,18 @@
    -

    pynetdicom.status.Status

    +

    pynetdicom.status.Status

    -class pynetdicom.status.Status(value)[source]
    +class pynetdicom.status.Status(value)[source]

    Constants for common status codes.

    New in version 1.5.

    New constants can be added with the Status.add(name, code) method but the documentation for it is missing due to a bug in Sphinx. name is -the variable name of the constant to add as a str and code is -the corresponding status code as an int.

    +the variable name of the constant to add as a str and code is +the corresponding status code as an int.

    Examples

    from pynetdicom.status import Status
     
    @@ -148,7 +148,7 @@ 

    pynetdicom.status.Status
    -__init__()
    +__init__()

    Methods

    @@ -178,37 +178,37 @@

    pynetdicom.status.Status
    -CANCEL = 65024[source]
    +CANCEL = 65024[source]

    0xFE00 - Operation terminated

    -MOVE_DESTINATION_UNKNOWN = 43009[source]
    +MOVE_DESTINATION_UNKNOWN = 43009[source]

    0xA801 - Move destination unknown

    -PENDING = 65280[source]
    +PENDING = 65280[source]

    0xFF00 - Matches or sub-operations are continuing

    -SUCCESS = 0[source]
    +SUCCESS = 0[source]

    0x0000 - Success

    -classmethod add(name: str, code: int) None[source]
    +classmethod add(name: str, code: int) None[source]

    Add a new constant to Status.

    Parameters:
      -
    • name (str) – The name of the constant to add.

    • -
    • code (int) – The status code corresponding to the name.

    • +
    • name (str) – The name of the constant to add.

    • +
    • code (int) – The status code corresponding to the name.

    diff --git a/dev/reference/generated/pynetdicom.status.code_to_category.html b/dev/reference/generated/pynetdicom.status.code_to_category.html index e3a6b0251..a4c9d0cde 100644 --- a/dev/reference/generated/pynetdicom.status.code_to_category.html +++ b/dev/reference/generated/pynetdicom.status.code_to_category.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -119,11 +119,11 @@
    -

    pynetdicom.status.code_to_category

    +

    pynetdicom.status.code_to_category

    -pynetdicom.status.code_to_category(code: int) str[source]
    -

    Return a Status category as str or 'Unknown' if not +pynetdicom.status.code_to_category(code: int) str[source] +

    Return a Status category as str or 'Unknown' if not recognised.

    diff --git a/dev/reference/generated/pynetdicom.status.code_to_status.html b/dev/reference/generated/pynetdicom.status.code_to_status.html index 1398c6930..0c00a145f 100644 --- a/dev/reference/generated/pynetdicom.status.code_to_status.html +++ b/dev/reference/generated/pynetdicom.status.code_to_status.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -119,11 +119,11 @@
    -

    pynetdicom.status.code_to_status

    +

    pynetdicom.status.code_to_status

    -pynetdicom.status.code_to_status(code: int) Dataset[source]
    -

    Return a Dataset with a Status element +pynetdicom.status.code_to_status(code: int) Dataset[source] +

    Return a Dataset with a Status element value of code.

    diff --git a/dev/reference/generated/pynetdicom.timer.Timer.html b/dev/reference/generated/pynetdicom.timer.Timer.html index 471e61cd8..4ed5b3d91 100644 --- a/dev/reference/generated/pynetdicom.timer.Timer.html +++ b/dev/reference/generated/pynetdicom.timer.Timer.html @@ -14,11 +14,11 @@ - - - - - + + + + + @@ -117,17 +117,17 @@
    -

    pynetdicom.timer.Timer

    +

    pynetdicom.timer.Timer

    -class pynetdicom.timer.Timer(timeout: float | None)[source]
    +class pynetdicom.timer.Timer(timeout: float | None)[source]

    A generic timer.

    Implementation of the DICOM Upper Layer’s ARTIM timer. The ARTIM timer is used by the state machine to monitor connection and response timeouts. This class may also be used as a general purpose expiry timer.

    A timeout of None implies that expired always returns False and remaining always returns 1. -A timeout of float implies that:

    +A timeout of float implies that: