I have created a custom algorithm suite class following the instruction on https://msdn.microsoft.com/en-us/library/gg617968(v=vs.110).aspx. However, instead of specifying the class in code, I want to specify the custom class in the XML configuration file. Is it possible?
Example:
<basicHttpBinding>
<binding name="Binding1">
<security mode="Message">
<message clientCredentialType="Certificate" algorithmSuite="MyCustomAlgorithmSuite"/>
</security>
</binding>
</basicHttpBinding>