comparison OrthancServer/Sources/OrthancRestApi/OrthancRestApi.cpp @ 5562:fa000bd60bbe

ensuring consistency
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 23 Apr 2024 09:55:51 +0200
parents 48b8dae6dc77
children 1a995c6f9dae
comparison
equal deleted inserted replaced
5561:0b18690c1935 5562:fa000bd60bbe
619 619
620 void OrthancRestApi::DocumentRequestedTags(RestApiGetCall& call) 620 void OrthancRestApi::DocumentRequestedTags(RestApiGetCall& call)
621 { 621 {
622 call.GetDocumentation().SetHttpGetArgument(GET_REQUESTED_TAGS, RestApiCallDocumentation::Type_String, 622 call.GetDocumentation().SetHttpGetArgument(GET_REQUESTED_TAGS, RestApiCallDocumentation::Type_String,
623 "If present, list the DICOM Tags you want to list in the response. This argument is a semi-column separated list " 623 "If present, list the DICOM Tags you want to list in the response. This argument is a semi-column separated list "
624 "of DICOM Tags identifiers; e.g: 'requestedTags=0010,0010;PatientBirthDate'. " 624 "of DICOM Tags identifiers; e.g: '" + GET_REQUESTED_TAGS + "=0010,0010;PatientBirthDate'. "
625 "The tags requested tags are returned in the 'RequestedTags' field in the response. " 625 "The tags requested tags are returned in the 'RequestedTags' field in the response. "
626 "Note that, if you are requesting tags that are not listed in the Main Dicom Tags stored in DB, building the response " 626 "Note that, if you are requesting tags that are not listed in the Main Dicom Tags stored in DB, building the response "
627 "might be slow since Orthanc will need to access the DICOM files. If not specified, Orthanc will return ", false); 627 "might be slow since Orthanc will need to access the DICOM files. If not specified, Orthanc will return ", false);
628 } 628 }
629 629