IContentCmdletProvider.ClearContentDynamicParameters(String) Method

Definition

Gives the provider an opportunity to attach additional parameters to the clear-content cmdlet.

public:
 System::Object ^ ClearContentDynamicParameters(System::String ^ path);
public:
 Platform::Object ^ ClearContentDynamicParameters(Platform::String ^ path);
winrt::Windows::Foundation::IInspectable ClearContentDynamicParameters(std::wstring const & path);
public object ClearContentDynamicParameters (string path);
public object? ClearContentDynamicParameters (string path);
abstract member ClearContentDynamicParameters : string -> obj
Public Function ClearContentDynamicParameters (path As String) As Object

Parameters

path
String

If the path was specified on the command line, this is the path to the item to get the dynamic parameters for.

Returns

Overrides of this method should return an object that has properties and fields decorated with parsing attributes similar to a cmdlet class or a RuntimeDefinedParameterDictionary.

The default implementation returns null. (no additional parameters)

Applies to