@@ -88,8 +88,8 @@ Adding presentation contexts all at once:
8888 >>> ae.requested_contexts = StoragePresentationContexts
8989
9090Here :attr: `~pynetdicom.presentation.StoragePresentationContexts ` is a
91- prebuilt list of presentation contexts containing (almost) all the Storage
92- Service Class ' :dcm: `supported SOP Classes <part04/sect_B.5.html> `,
91+ prebuilt list of presentation contexts containing 120 of the most commonly used Storage
92+ Service Classes ' :dcm: `supported SOP Classes <part04/sect_B.5.html> `,
9393and there's a :ref: `similar list<api_presentation_prebuilt> ` for all
9494the supported service classes.
9595Alternatively you can build your own list of presentation contexts, either
@@ -115,12 +115,13 @@ Combining the all-at-once and one-by-one approaches:
115115 >>> from pynetdicom import AE , StoragePresentationContexts
116116 >>> from pynetdicom.sop_class import Verification
117117 >>> ae = AE()
118- >>> ae.requested_contexts = StoragePresentationContexts[: 127 ]
118+ >>> ae.requested_contexts = StoragePresentationContexts
119119 >>> ae.add_requested_context(Verification)
120120
121121As the association *Requestor * you're limited to a total of 128 requested
122122presentation contexts, so attempting to add more than 128 contexts will raise
123- a :class: `ValueError ` exception.
123+ a :class: `ValueError ` exception. :attr: `~pynetdicom.presentation.StoragePresentationContexts ` consists of 120 of most commonly used Storage
124+ Service Classes, therefore you are able to add 8 additional presentation contexts without rasing a :class: `ValueError ` exception.
124125
125126When you add presentation contexts as shown above, the following transfer
126127syntaxes are used by default for each context:
@@ -285,8 +286,8 @@ Adding presentation contexts all at once:
285286 >>> ae.supported_contexts = StoragePresentationContexts
286287
287288Here :attr: `~pynetdicom.presentation.StoragePresentationContexts ` is a prebuilt
288- :class: `list ` of presentation contexts containing (almost) all the Storage
289- Service Class ' :dcm: `supported SOP Classes<part04/sect_B.5.html> `,
289+ :class: `list ` of presentation contexts containing 120 of the most commonly used Storage
290+ Service Classes ' :dcm: `supported SOP Classes<part04/sect_B.5.html> `,
290291and there's a :ref: `similar list<api_presentation_prebuilt> ` for
291292all the supported service classes. Alternatively you can build your own list
292293of presentation contexts, either through creating new
0 commit comments