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

適用対象