BasicHttpMessageSecurity Class
Configures message-level security settings for BasicHttpBinding.
Assembly: System.ServiceModel (in System.ServiceModel.dll)
| Name | Description | |
|---|---|---|
![]() | BasicHttpMessageSecurity() | Initializes a new instance of the BasicHttpMessageSecurity class. |
| Name | Description | |
|---|---|---|
![]() | AlgorithmSuite | Specifies the algorithm suite to use with BasicHttpMessageSecurity. |
![]() | ClientCredentialType | Specifies the type of credential with which the client authenticates. |
| Name | Description | |
|---|---|---|
![]() | Equals(Object) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() | ShouldSerializeAlgorithmSuite() | Returns whether the algorithm suite to be used for securing messages at the SOAP level should be serialized. |
![]() | ShouldSerializeClientCredentialType() | Returns whether the client credential type should be serialized. |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
BasicHttpBinding binding = new BasicHttpBinding("myBinding"); binding.Name = "binding1"; binding.HostNameComparisonMode = HostNameComparisonMode.StrongWildcard; binding.Security.Mode = BasicHttpSecurityMode.Message; BasicHttpSecurity security = binding.Security; BasicHttpMessageSecurity msgSecurity = security.Message; SecurityAlgorithmSuite sas = msgSecurity.AlgorithmSuite; BasicHttpMessageCredentialType credType = msgSecurity.ClientCredentialType; Console.WriteLine("The algorithm suite used is {0}", sas.ToString()); Console.WriteLine("The client credential type used is {0}", credType.ToString());
Available since 3.0
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

