SPCmdletPipeBind<TCmdletObject> members
An abstract class that represents a binding for pipeline and command-line input to PowerShell cmdlet parameters. This generic base class for SharePoint pipebind classes takes a generic type of TCmdletObject. The SPCmdletPipeBind<TCmdletObject> class provides the abstract methods Read and Discover. The cmdlet classes use the Read method to retrieve results. The Read method retrieves the object instance that represents the parameters associated with the current pipebind object; the Discover method populates the information that is required to retrieve or recreate the given object. All derived classes must override and implement these methods.
The SPCmdletPipeBind<TCmdletObject> type exposes the following members.
Constructors
Name | Description | |
---|---|---|
SPCmdletPipeBind<TCmdletObject>() | Initializes a new instance of the SPCmdletPipeBind<TCmdletObject> class. | |
SPCmdletPipeBind<TCmdletObject>(TCmdletObject) | Initializes a new instance of the SPCmdletPipeBind<TCmdletObject> class. This constructor uses information from the supplied instance of an input object to initialize the pipebind object. |
Top
Methods
Name | Description | |
---|---|---|
Discover | Populates information that is required to retrieve or recreate a given object instance. | |
Equals | (Inherited from Object.) | |
Finalize | (Inherited from Object.) | |
GetHashCode | (Inherited from Object.) | |
GetType | (Inherited from Object.) | |
MemberwiseClone | (Inherited from Object.) | |
Read | Retrieves the input object that is associated with the current pipebind object. | |
ToString | (Inherited from Object.) |
Top