Kommentar
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
Deserializes a single policy and its associated condition from the specified XML reader into the policy store.
Namespace: Microsoft.SqlServer.Management.Dmf
Assembly: Microsoft.SqlServer.Dmf (in Microsoft.SqlServer.Dmf.dll)
Syntax
'Declaration
Public Function DeserializePolicy ( _
xmlReader As XmlReader, _
overwriteExistingPolicy As Boolean, _
overwriteExistingCondition As Boolean _
) As Policy
'Usage
Dim instance As PolicyStore
Dim xmlReader As XmlReader
Dim overwriteExistingPolicy As Boolean
Dim overwriteExistingCondition As Boolean
Dim returnValue As Policy
returnValue = instance.DeserializePolicy(xmlReader, _
overwriteExistingPolicy, overwriteExistingCondition)
public Policy DeserializePolicy(
XmlReader xmlReader,
bool overwriteExistingPolicy,
bool overwriteExistingCondition
)
public:
Policy^ DeserializePolicy(
XmlReader^ xmlReader,
bool overwriteExistingPolicy,
bool overwriteExistingCondition
)
member DeserializePolicy :
xmlReader:XmlReader *
overwriteExistingPolicy:bool *
overwriteExistingCondition:bool -> Policy
public function DeserializePolicy(
xmlReader : XmlReader,
overwriteExistingPolicy : boolean,
overwriteExistingCondition : boolean
) : Policy
Parameters
- xmlReader
Type: System.Xml.XmlReader
An XmlReader object that specifies the XML reader from which to deserialize the policy.
- overwriteExistingPolicy
Type: System.Boolean
A Boolean value that specifies whether the existing policy is overwritten during the deserialization.
- overwriteExistingCondition
Type: System.Boolean
A Boolean value that specifies whether the existing condition is overwritten during the deserialization.
Return Value
Type: Microsoft.SqlServer.Management.Dmf.Policy
A Policy and its associated condition from the specified XML reader into the policy store.
Remarks
The deserialized policy and condition exists in-memory only.