File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
src/System.Private.ServiceModel/src/System/ServiceModel/Channels Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -65,15 +65,16 @@ internal SecurityBindingElement(SecurityBindingElement elementToBeCloned)
65
65
{
66
66
_operationSupportingTokenParameters [ key ] = elementToBeCloned . _operationSupportingTokenParameters [ key ] . Clone ( ) ;
67
67
}
68
+
68
69
_optionalOperationSupportingTokenParameters = new Dictionary < string , SupportingTokenParameters > ( ) ;
69
70
foreach ( string key in elementToBeCloned . _optionalOperationSupportingTokenParameters . Keys )
70
71
{
71
72
_optionalOperationSupportingTokenParameters [ key ] = elementToBeCloned . _optionalOperationSupportingTokenParameters [ key ] . Clone ( ) ;
72
73
}
74
+
73
75
LocalClientSettings = elementToBeCloned . LocalClientSettings . Clone ( ) ;
74
76
MaxReceivedMessageSize = elementToBeCloned . MaxReceivedMessageSize ;
75
77
ReaderQuotas = elementToBeCloned . ReaderQuotas ;
76
-
77
78
EnableUnsecuredResponse = elementToBeCloned . EnableUnsecuredResponse ;
78
79
}
79
80
You can’t perform that action at this time.
0 commit comments