Share via


LocalServiceSecuritySettings.DetectReplays 속성

정의

서비스에서 재생 검색을 사용하는지 여부를 나타내는 값을 가져오거나 설정합니다.

public:
 property bool DetectReplays { bool get(); void set(bool value); };
public bool DetectReplays { get; set; }
member this.DetectReplays : bool with get, set
Public Property DetectReplays As Boolean

속성 값

서비스에서 재생 검색을 사용하면 true이고, 그렇지 않으면 false입니다. 기본값은 true입니다.

예제

다음 예제에서는 이 속성 값을 가져오는 방법을 보여 줍니다.

LocalServiceSecuritySettings settings =
    new LocalServiceSecuritySettings();

bool detectReplays = settings.DetectReplays;
Dim settings As New LocalServiceSecuritySettings()

Dim detectReplays = settings.DetectReplays

적용 대상