Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
.NET Framework 4
Creates an instance of the specified type using the dependency resolver or the type's default constructor.
Namespace:  Microsoft.AspNet.SignalR.Hosting
Assembly:  Microsoft.AspNet.SignalR.Core (in Microsoft.AspNet.SignalR.Core.dll)
Syntax
'Declaration
Public Function CreateInstance ( _
    connectionType As Type _
) As PersistentConnection
'Usage
Dim instance As PersistentConnectionFactory 
Dim connectionType As Type 
Dim returnValue As PersistentConnection 
returnValue = instance.CreateInstance(connectionType)
public PersistentConnection CreateInstance(
    Type connectionType
)
public:
PersistentConnection^ CreateInstance(
    Type^ connectionType
)
member CreateInstance : 
        connectionType:Type -> PersistentConnection
public function CreateInstance(
    connectionType : Type
) : PersistentConnection
Parameters
- connectionType
 Type: System.Type
 The type of PersistentConnection to create.
Return Value
Type: Microsoft.AspNet.SignalR.PersistentConnection
An instance of a PersistentConnection .