BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
Connection connection= new Connection { DataSources = new List<DataSourceConnectionString>()};
ConnectionStringBuilder genetator =new ConnectionStringBuilder();
ConnectionParameters connectionParameter1 = new ConnectionParameters
{
Url=””, // Your web data source url
AuthenticationType = 1, //Server or Windows Authentication Type. Mostly on demand connection should be Server Authentication.
};
connection.DataSources.Add(new DataSourceConnectionString
{
Name = "DataSource1",
ConnectionString = generator.GetConnectionString(connectionParameter1, ConnectionProviderType. WebDataConnector, OdbcDbmsType.None)
});
|