Interface IConnectionsController
Namespace: DotNetNuke.Services.Connections
Assembly: DotNetNuke.dll
Syntax
public interface IConnectionsController
Methods
| Improve this Doc View SourceGetConnectionConfigs(Int32, String)
Get Connection Configuration Value.
Declaration
IDictionary<string, string> GetConnectionConfigs(int portalId, string name)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | portalId | The portal ID. |
System.String | name | The connector name. |
Returns
Type | Description |
---|---|
IDictionary<System.String, System.String> | A dictionary of configuration values for the connector, or null. |
GetConnections(Int32)
Get Connection Settings for a Site.
Declaration
IList<IConnector> GetConnections(int portalId)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | portalId |
Returns
Type | Description |
---|---|
IList<IConnector> | A list of IConnector instances. |