IContentCmdletProvider.GetContentReader(String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the content reader for the item at the specified path.
public:
System::Management::Automation::Provider::IContentReader ^ GetContentReader(System::String ^ path);
public System.Management.Automation.Provider.IContentReader GetContentReader (string path);
public System.Management.Automation.Provider.IContentReader? GetContentReader (string path);
abstract member GetContentReader : string -> System.Management.Automation.Provider.IContentReader
Public Function GetContentReader (path As String) As IContentReader
Parameters
- path
- String
The path to the item to get the content reader for.
Returns
Remarks
Overrides of this method should return an IContentReader for the item specified by the path.
Providers that declare ProviderCapabilities of ExpandWildcards, Filter, Include, or Exclude should ensure that the path passed meets those requirements by accessing the appropriate property from the base class.
By default overrides of this method should not return a content reader for objects that are generally hidden from the user unless the Force property is set to true. An error should be sent to the WriteError method if the path represents an item that is hidden from the user and Force is set to false.