New to Telerik UI for WinFormsStart a free 30-day trial

Connection setting class used by XmlaDataProvider.

Definition

Namespace:Telerik.Pivot.Xmla

Assembly:Telerik.WinControls.PivotGrid.dll

Syntax:

C#
public class XmlaConnectionSettings

Inheritance: objectXmlaConnectionSettings

Constructors

Initializes a new instance of the XmlaConnectionSettings class.

C#
public XmlaConnectionSettings()

Properties

Gets or sets the client credentials used for XMLA service calls.

C#
public XmlaNetworkCredential Credentials { get; set; }
Property Value:

The credentials.

Gets or sets the name of the cube that will be used.

C#
public string Cube { get; set; }
Property Value:

Cube name.

Gets or sets the database to connect to.

C#
public string Database { get; set; }
Property Value:

Database name.

Gets or sets the encoding that is used for XMLA service calls.

C#
public Encoding Encoding { get; set; }
Property Value:

The encoding.

Properties that are used for Discover and Execute methods.

C#
public Collection<XmlaQueryProperty> QueryProperties { get; }
Property Value:

The query properties.

Gets or sets the server address.

C#
public string ServerAddress { get; set; }
Property Value:

The server address.

Methods

C#
public override bool Equals(object obj)
Parameters:objobjectReturns:

bool

Overrides: object.Equals(object)

C#
public override int GetHashCode()
Returns:

int

Overrides: object.GetHashCode()

C#
public override string ToString()
Returns:

string

Overrides: object.ToString()

Operators

Compares two instances for non-equality.

C#
public static bool operator !=(XmlaConnectionSettings left, XmlaConnectionSettings right)
Parameters:leftXmlaConnectionSettings

The left.

rightXmlaConnectionSettings

The right.

Returns:

bool

True, if instances are not equal.

Compares two instances for equality.

C#
public static bool operator ==(XmlaConnectionSettings left, XmlaConnectionSettings right)
Parameters:leftXmlaConnectionSettings

The left.

rightXmlaConnectionSettings

The right.

Returns:

bool

True, if instances are equal.