Skip to content

Commit

Permalink
Remove extra spaces.
Browse files Browse the repository at this point in the history
  • Loading branch information
imcarolwang authored and mconnew committed Jan 28, 2022
1 parent 9ed3ac7 commit 41d8d34
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,12 @@ private WSFederationHttpBinding GetFederatedBindingFromIssuerContract(Type contr
// If STS endpoint is using WSTrustFeb2005, then need to use WSFederationHttpBinding
if (contractType == typeof(IWSTrustFeb2005SyncContract))
{
binding = new WSFederationHttpBinding(WSFederationHttpSecurityMode.TransportWithMessageCredential);
binding = new WSFederationHttpBinding(WSFederationHttpSecurityMode.TransportWithMessageCredential);
}
// If STS endpoint is using WSTrust1.3, then need to use WS2007FederationHttpBinding
else if (contractType == typeof(IWSTrust13SyncContract))
{
binding = new WS2007FederationHttpBinding(WSFederationHttpSecurityMode.TransportWithMessageCredential);
binding = new WS2007FederationHttpBinding(WSFederationHttpSecurityMode.TransportWithMessageCredential);
}
else
{
Expand Down

0 comments on commit 41d8d34

Please sign in to comment.