ServiceConfigurationProtectionLevel Property |
Gets or sets the protection level if the service is protected by WS-Security
If the server side must verify the signature of the caller, assign with ProtectionLevel.Sign
If the transmission should be encrypted, assign with ProtectionLevel.EncryptAndSign
The default value is None. When using protection for web service, you must configure a Certificate.
Namespace:
Hummingbird.TestFramework.ExtensionProject
Assembly:
Hummingbird.TestFramework (in Hummingbird.TestFramework.dll) Version: 1.2.0.0
Syntax [DataMemberAttribute]
public ProtectionLevel ProtectionLevel { get; set; }
<DataMemberAttribute>
Public Property ProtectionLevel As ProtectionLevel
Get
Set
public:
[DataMemberAttribute]
property ProtectionLevel ProtectionLevel {
ProtectionLevel get ();
void set (ProtectionLevel value);
}
[<DataMemberAttribute>]
member ProtectionLevel : ProtectionLevel with get, set
Property Value
Type:
ProtectionLevel
The protection level: None, Sign, EncryptAndSign
See Also