Gets or sets a value that indicates whether the framework does not need to call a Get method to perform a refresh before completing the action. Namespace: Microsoft.ConfigurationManagement.AdminConsole.Schema
Assembly: Microsoft.ConfigurationManagement.ManagementProvider (in microsoft.configurationmanagement.managementprovider.dll)

Usage

Visual Basic
Dim instance As ActionDescription
Dim value As Boolean

value = instance.RefreshNotRequired

instance.RefreshNotRequired = value

Syntax

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

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

DebuggerStepThroughAttribute 
public function set RefreshNotRequired (value : boolean)

Property Value

true if the framework does not need to perform a refresh; otherwise false.

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