Compartir a través de


Policy Constructor (PolicyStore, String)

Initializes a new instance of the Policy class.

Espacio de nombres:  Microsoft.SqlServer.Management.Dmf
Ensamblado:  Microsoft.SqlServer.Dmf (en Microsoft.SqlServer.Dmf.dll)

Sintaxis

'Declaración
Public Sub New ( _
    parent As PolicyStore, _
    name As String _
)
'Uso
Dim parent As PolicyStore 
Dim name As String 

Dim instance As New Policy(parent, _
    name)
public Policy(
    PolicyStore parent,
    string name
)
public:
Policy(
    PolicyStore^ parent, 
    String^ name
)
new : 
        parent:PolicyStore * 
        name:string -> Policy
public function Policy(
    parent : PolicyStore, 
    name : String
)

Parámetros

Ejemplos

C#

Policy p = new Policy(ps, policyName);
p.AutomatedPolicyEvaluationMode = execMode;
p.Condition = condition.Name;
p.ScheduleUid = schedule.ScheduleUid;
if (execMode != AutomatedPolicyEvaluationMode.None) p.Enabled = true;
p.Create();

Vea también

Referencia

Policy Clase

Sobrecarga de Policy

Espacio de nombres Microsoft.SqlServer.Management.Dmf