@@ -44,6 +44,7 @@ namespace CDP4ServicesDal
4444 using CDP4Common . CommonData ;
4545 using CDP4Common . DTO ;
4646 using CDP4Common . Extensions ;
47+
4748 using CDP4DalCommon . Tasks ;
4849
4950 using CDP4Dal ;
@@ -62,7 +63,6 @@ namespace CDP4ServicesDal
6263 using EngineeringModelSetup = CDP4Common . SiteDirectoryData . EngineeringModelSetup ;
6364 using Thing = CDP4Common . DTO . Thing ;
6465 using UriExtensions = CDP4Dal . UriExtensions ;
65- using System . Runtime . InteropServices ;
6666
6767 /// <summary>
6868 /// The purpose of the <see cref="CdpServicesDal"/> is to provide the Data Access Layer for CDP4 ECSS-E-TM-10-25
@@ -222,9 +222,7 @@ public override async Task<IEnumerable<Thing>> Write(OperationContainer operatio
222222
223223 deserializationWatch . Stop ( ) ;
224224
225- Guid iterationId ;
226-
227- if ( this . TryExtractIterationIdfromUri ( httpResponseMessage . RequestMessage . RequestUri , out iterationId ) )
225+ if ( this . TryExtractIterationIdfromUri ( httpResponseMessage . RequestMessage . RequestUri , out var iterationId ) )
228226 {
229227 this . SetIterationContainer ( result , iterationId ) ;
230228 }
@@ -1023,10 +1021,6 @@ public override async Task<IEnumerable<Thing>> CherryPick(Guid engineeringModelI
10231021 /// <param name="injectedClient">
10241022 /// The injected <see cref="HttpClient"/> that will be used to created the returned <see cref="HttpClient"/>
10251023 /// </param>
1026- /// <param name="trustAllSSL">
1027- /// The value that indicates whether all SSL certificates are trusted or not. If false, then only properly signed
1028- /// SSL certs are accepted
1029- /// </param>
10301024 /// <returns>
10311025 /// An instance of <see cref="HttpClient"/> with the DefaultRequestHeaders set
10321026 /// </returns>
0 commit comments