Class represents vkontakte longPollServer connection
Наследование: Object
Пример #1
0
 /// <summary>
 /// Create LongPoll connection unit
 /// </summary>
 /// <returns>LongPollServerConnection unit</returns>
 public LongPollServerConnection GetLongPollServerConnection(int waitTime)
 {
     LongPollServerConnection connection = new LongPollServerConnection(this.Manager);
     connection.WaitTime = waitTime;
     return connection;
 }
Пример #2
0
 /// <summary>
 /// Create LongPoll connection unit
 /// </summary>
 /// <returns>LongPollServerConnection unit</returns>
 public LongPollServerConnection GetLongPollServerConnection()
 {
     LongPollServerConnection connection = new LongPollServerConnection(this.Manager);
     return connection;
 }