ContentCmdletProviderIntrinsics.GetWriter 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.
Overloads
GetWriter(String) |
Gets the content writer for the item(s) at the specified path. |
GetWriter(String[], Boolean, Boolean) |
Gets the content writer for the item(s) at the specified path. |
GetWriter(String)
Gets the content writer for the item(s) at the specified path.
public:
System::Collections::ObjectModel::Collection<System::Management::Automation::Provider::IContentWriter ^> ^ GetWriter(System::String ^ path);
public System.Collections.ObjectModel.Collection<System.Management.Automation.Provider.IContentWriter> GetWriter (string path);
member this.GetWriter : string -> System.Collections.ObjectModel.Collection<System.Management.Automation.Provider.IContentWriter>
Public Function GetWriter (path As String) As Collection(Of IContentWriter)
Parameters
- path
- String
The path to the item(s) to get the content writer for.
Returns
The IContentWriter for the item(s) at the specified path.
Exceptions
If path
is null.
If the path
refers to a provider that could not be found.
If the path
refers to a drive that could not be found.
If path
does not contain glob characters and
could not be found.
If the provider that the path
refers to does
not support this operation.
If the provider threw an exception.
Applies to
GetWriter(String[], Boolean, Boolean)
Gets the content writer for the item(s) at the specified path.
public:
System::Collections::ObjectModel::Collection<System::Management::Automation::Provider::IContentWriter ^> ^ GetWriter(cli::array <System::String ^> ^ path, bool force, bool literalPath);
public System.Collections.ObjectModel.Collection<System.Management.Automation.Provider.IContentWriter> GetWriter (string[] path, bool force, bool literalPath);
member this.GetWriter : string[] * bool * bool -> System.Collections.ObjectModel.Collection<System.Management.Automation.Provider.IContentWriter>
Public Function GetWriter (path As String(), force As Boolean, literalPath As Boolean) As Collection(Of IContentWriter)
Parameters
- path
- String[]
The path(s) to the item(s) to get the content writer for.
- force
- Boolean
Passed on to providers to force operations.
- literalPath
- Boolean
If true, globbing is not done on paths.
Returns
The IContentWriter for the item(s) at the specified path.
Exceptions
If path
is null.
If the path
refers to a provider that could not be found.
If the path
refers to a drive that could not be found.
If path
does not contain glob characters and
could not be found.
If the provider that the path
refers to does
not support this operation.
If the provider threw an exception.