In C#, InitialSessionState class provides a way to import specific modules and make it available to all the runspaces in the runspacepool using "ImportPSModule" method. (But this imports all cmdlets in the module being imported)
To import specific cmdlets from a module, "Import-Module" command accepts a parameter "Cmdlet", using which we can import only specific cmdltes from that module. How to achieve this behaviour (importing only specific cmdlets from module) in Runspacepool