Пример #1
0
 /// <summary>
 /// Initializes a new instance of the OlapServer class.
 /// </summary>
 /// <param name="store">The Olap store that owns the server.</param>
 /// <param name="name">The name of the server.</param>
 public OlapServer(OlapStore store, string name)
 {
     _dataareaActive = new BoolPointer();
     _lastError      = new IntPointer();
     _dimensions     = null;
     _serverHandle   = 0;
     _store          = store;
     _name           = name;
     _disposed       = false;
 }
Пример #2
0
 /// <summary>
 /// Initializes a new instance of the OlapServers class.
 /// </summary>
 /// <param name="store">The OlapStore that owns this collection.</param>
 public OlapServers(OlapStore store)
 {
     _store = store;
 }