Condition 建構函式 (PolicyStore, String)
Initializes a new instance of the Policy class.
命名空間: Microsoft.SqlServer.Management.Dmf
組件: Microsoft.SqlServer.Dmf (在 Microsoft.SqlServer.Dmf.dll 中)
語法
'宣告
Public Sub New ( _
parent As PolicyStore, _
name As String _
)
'用途
Dim parent As PolicyStore
Dim name As String
Dim instance As New Condition(parent, _
name)
public Condition(
PolicyStore parent,
string name
)
public:
Condition(
PolicyStore^ parent,
String^ name
)
new :
parent:PolicyStore *
name:string -> Condition
public function Condition(
parent : PolicyStore,
name : String
)
參數
- parent
型別:Microsoft.SqlServer.Management.Dmf.PolicyStore
A Policy object value that specifies the policy store to which the condition belongs.
- name
型別:System.String
A String value that specifies the name of the condition.
範例
C#
Condition c = new Condition(ps, conditionName);
c.Facet = facet;
c.ExpressionNode = exprNode;
c.Create();
VB
Dim c As Condition
c = New Condition(ps, conditionName)
c.Facet = facet
c.ExpressionNode = exprNode
c.Create()