다음을 통해 공유


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이며, 보호 수준이 설정되지 않았다는 의미입니다.

적용 대상