Class DWIntegrationInfo
Class containing the basic integration information.
Inherited Members
Namespace: DocuWare.WebIntegration
Assembly: DocuWare.WebIntegration.dll
Syntax
public class DWIntegrationInfo : DWWebLoginInfo
Constructors
DWIntegrationInfo(String)
Initializes a new instance of the DWIntegrationInfo class.
Declaration
protected DWIntegrationInfo(string httpAddress)
Parameters
Type | Name | Description |
---|---|---|
System.String | httpAddress | String specifying the http address. |
DWIntegrationInfo(String, Boolean)
Declaration
public DWIntegrationInfo(string httpAddress, bool useWindowsLogin)
Parameters
Type | Name | Description |
---|---|---|
System.String | httpAddress | |
System.Boolean | useWindowsLogin |
DWIntegrationInfo(String, Guid, Boolean)
Initializes a new instance of the DWIntegrationInfo class.
Declaration
public DWIntegrationInfo(string httpAddress, Guid orgGuId, bool useWindowsLogin)
Parameters
Type | Name | Description |
---|---|---|
System.String | httpAddress | String specifying the HTTP address. |
System.Guid | orgGuId | The organization guid. |
System.Boolean | useWindowsLogin | Boolean parameter specifying whether to use windows credentials. |
Remarks
If the integration id is null then the standard hidden integration is used.
DWIntegrationInfo(String, Int32, Boolean)
Initializes a new instance of the DWIntegrationInfo class.
Declaration
[Obsolete]
public DWIntegrationInfo(string httpAddress, int orgId, bool useWindowsLogin)
Parameters
Type | Name | Description |
---|---|---|
System.String | httpAddress | String specifying the HTTP address. |
System.Int32 | orgId | The organization id. |
System.Boolean | useWindowsLogin | Boolean parameter specifying whether to use windows credentials. |
Remarks
This constructor is obsolete, please use the one with GUID or the one with organization name.
DWIntegrationInfo(String, String, Boolean)
Initializes a new instance of the DWIntegrationInfo class.
Declaration
public DWIntegrationInfo(string httpAddress, string orgName, bool useWindowsLogin)
Parameters
Type | Name | Description |
---|---|---|
System.String | httpAddress | String specifying the http address. |
System.String | orgName | |
System.Boolean | useWindowsLogin | Boolean parameter specifying whether to use windows credentials. |
Remarks
If the integration id is null then the standard hidden integration is used.
Properties
IsEncrypted
Boolean property indicating whether the integration is/ should encrypted.
Declaration
public bool IsEncrypted { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Methods
Parse(String)
Tries to parse a DWIntegrationInfo object from the passed url string. Returns null if this is not possible.
Declaration
public static DWIntegrationInfo Parse(string urlString)
Parameters
Type | Name | Description |
---|---|---|
System.String | urlString |
Returns
Type | Description |
---|---|
DWIntegrationInfo |