@@ -46,16 +46,16 @@ private void Initialize(GXService providerService)
4646 _connectionString = serviceSettings . GetEncryptedPropertyValue ( PropertyConstants . QUEUE_CONNECTION_STRING ) ;
4747 _subscriptionName = serviceSettings . GetEncryptedPropertyValue ( PropertyConstants . TOPIC_SUBSCRIPTION ) ;
4848 _fullyqualifiedNamespace = serviceSettings . GetEncryptedPropertyValue ( PropertyConstants . FULLYQUALIFIEDNAMESPACE ) ;
49- string authenticationMethod = serviceSettings . GetEncryptedPropertyValue ( PropertyConstants . AUTHENTICATION_METHOD ) ;
49+ string authenticationMethod = serviceSettings . GetPropertiesValue ( PropertyConstants . AUTHENTICATION_METHOD ) ;
5050
51- string sessionEnabled = serviceSettings . GetEncryptedOptPropertyValue ( PropertyConstants . SESSION_ENABLED ) ;
51+ string sessionEnabled = serviceSettings . GetPropertiesValue ( PropertyConstants . SESSION_ENABLED ) ;
5252
5353 if ( ! string . IsNullOrEmpty ( sessionEnabled ) )
5454 _sessionEnabled = Convert . ToBoolean ( sessionEnabled ) ;
5555 else
5656 _sessionEnabled = false ;
5757
58- string senderIdentifier = serviceSettings . GetEncryptedOptPropertyValue ( PropertyConstants . SENDER_IDENTIFIER ) ;
58+ string senderIdentifier = serviceSettings . GetPropertiesValue ( PropertyConstants . SENDER_IDENTIFIER ) ;
5959
6060 ServiceBusSenderOptions serviceBusSenderOptions = new ServiceBusSenderOptions ( ) ;
6161 if ( ! string . IsNullOrEmpty ( senderIdentifier ) )
@@ -82,9 +82,9 @@ private void Initialize(GXService providerService)
8282 {
8383 _serviceBusReceiverOptions = new ServiceBusReceiverOptions ( ) ;
8484
85- string receiveMode = serviceSettings . GetEncryptedOptPropertyValue ( PropertyConstants . RECEIVE_MODE ) ;
86- string prefetchCount = serviceSettings . GetEncryptedOptPropertyValue ( PropertyConstants . PREFETCH_COUNT ) ;
87- string receiverIdentifier = serviceSettings . GetEncryptedOptPropertyValue ( PropertyConstants . RECEIVER_IDENTIFIER ) ;
85+ string receiveMode = serviceSettings . GetPropertiesValue ( PropertyConstants . RECEIVE_MODE ) ;
86+ string prefetchCount = serviceSettings . GetPropertiesValue ( PropertyConstants . PREFETCH_COUNT ) ;
87+ string receiverIdentifier = serviceSettings . GetPropertiesValue ( PropertyConstants . RECEIVER_IDENTIFIER ) ;
8888
8989 if ( ! string . IsNullOrEmpty ( receiveMode ) )
9090 _serviceBusReceiverOptions . ReceiveMode = ( ServiceBusReceiveMode ) Convert . ToInt16 ( receiveMode ) ;
0 commit comments