Table of Contents

Class RemoteServerConnection

Namespace
Dynamicweb.DataManagement
Assembly
Dynamicweb.DataManagement.dll

Connection settings for remote servers (like sql server - host, service, user name, pwd)

public abstract class RemoteServerConnection : DMConnection, ICloneable
Inheritance
RemoteServerConnection
Implements
Derived
Inherited Members

Properties

DBName

Database name

public override string DBName { get; }

Property Value

string

Password

Password.

public string Password { get; set; }

Property Value

string

password

Server

Server address.

public string Server { get; set; }

Property Value

string

server address

ServiceName

Remote service name. Can be database name for SQL server, or organization name for ms crm etc.

public string ServiceName { get; set; }

Property Value

string

service name

TrustedConnection

True, if connection trusted (windows auth used)

public bool TrustedConnection { get; set; }

Property Value

bool

UserID

User name.

public string UserID { get; set; }

Property Value

string

user name

Methods

Fill(IDataReader)

Fill fields: ServiceName, Server, UserId, Password, TrustedConnection

public override void Fill(IDataReader dataReader)

Parameters

dataReader IDataReader

FillRow(DataRow)

Fill fields: ServiceName, Server, UserId, Password, TrustedConnection

protected override void FillRow(DataRow row)

Parameters

row DataRow
To top