次の方法で共有


OperationInfo.ProtectionLevel プロパティ

定義

操作の ProtectionLevel を取得または設定します。

public:
 property Nullable<System::Net::Security::ProtectionLevel> ProtectionLevel { Nullable<System::Net::Security::ProtectionLevel> get(); void set(Nullable<System::Net::Security::ProtectionLevel> value); };
public System.Net.Security.ProtectionLevel? ProtectionLevel { get; set; }
member this.ProtectionLevel : Nullable<System.Net.Security.ProtectionLevel> with get, set
Public Property ProtectionLevel As Nullable(Of ProtectionLevel)

プロパティ値

Nullable<ProtectionLevel>

操作に使用される ProtectionLevel オブジェクト。

次の例は、ProtectionLevel プロパティのアクセス方法を示しています。

OperationInfo info = new OperationInfo();
info.ProtectionLevel = System.Net.Security.ProtectionLevel.EncryptAndSign;
Dim info As New OperationInfo()
info.ProtectionLevel = System.Net.Security.ProtectionLevel.EncryptAndSign

注釈

既定値は null です。これは保護レベルが設定されていないことを意味します。

適用対象