IFactoryService Interface

Defines properties and methods that represent the FactoryService.

Namespace:  Microsoft.SqlServer.Management
Assembly:  Microsoft.SqlServer.Management.SDK.SqlStudio (in Microsoft.SqlServer.Management.SDK.SqlStudio.dll)

Syntax

'Declaration
<GuidAttribute("3f68ba77-75e9-488e-a0b4-8227df82463b")> _
<ComVisibleAttribute(True)> _
Public Interface IFactoryService
'Usage
Dim instance As IFactoryService
[GuidAttribute("3f68ba77-75e9-488e-a0b4-8227df82463b")]
[ComVisibleAttribute(true)]
public interface IFactoryService
[GuidAttribute(L"3f68ba77-75e9-488e-a0b4-8227df82463b")]
[ComVisibleAttribute(true)]
public interface class IFactoryService
[<GuidAttribute("3f68ba77-75e9-488e-a0b4-8227df82463b")>]
[<ComVisibleAttribute(true)>]
type IFactoryService =  interface end
public interface IFactoryService

The IFactoryService type exposes the following members.

Methods

  Name Description
Public method CreateInstance(String, array<Object[]) Instantiates an object by supplied full name.
Public method CreateInstance<T>(String, array<Object[]) Instantiates an object based on the given full name.
Public method GetManifestResourceStream Loads the specified manifest resource from the service.
Public method GetType Retrieves the type of the object for the supplied full type name.
Public method LoadResourceManager Instantiates an object based on the supplied path.

Top