Gets or sets a value indicating if query replacement processing is escaping the replacement string using the current EscapeQueryString method. Namespace: Microsoft.ConfigurationManagement.AdminConsole.Schema
Assembly: Microsoft.ConfigurationManagement.ManagementProvider (in microsoft.configurationmanagement.managementprovider.dll)

Usage

Visual Basic
Dim instance As QueryDescription
Dim value As Boolean

value = instance.PreviouslyEscaped

instance.PreviouslyEscaped = value

Syntax

Visual Basic
<XmlAttributeAttribute("PreviouslyEscaped")> _
<DefaultValueAttribute(False)> _
Public Property PreviouslyEscaped As Boolean
C#
[XmlAttributeAttribute("PreviouslyEscaped")] 
[DefaultValueAttribute(false)] 
public bool PreviouslyEscaped { get; set; }
C++
[XmlAttributeAttribute(L"PreviouslyEscaped")] 
[DefaultValueAttribute(false)] 
public:
property bool PreviouslyEscaped {
		bool get ();
		void set (bool value);
}
J#
/** @property */
/** @attribute DebuggerStepThroughAttribute() */ 
public boolean get_PreviouslyEscaped ()

/** @property */
/** @attribute DebuggerStepThroughAttribute() */ 
public void set_PreviouslyEscaped (boolean value)
JScript
DebuggerStepThroughAttribute 
public function get PreviouslyEscaped () : boolean

DebuggerStepThroughAttribute 
public function set PreviouslyEscaped (value : boolean)

Property Value

true to use the replacement string; false (default) to escape the replacement string.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Windows Server 2003, Windows Vista

Target Platforms

Windows Server 2003,Windows Vista

See Also