SocketIOClient.Eventing.RegistrationManager.InvokeCallBack C# (CSharp) Метод

InvokeCallBack() публичный Метод

public InvokeCallBack ( int ackId, JsonEncodedEventMessage value ) : void
ackId int
value JsonEncodedEventMessage
Результат void
		public void InvokeCallBack(int? ackId, JsonEncodedEventMessage value)
		{
			Action<dynamic> target = null;
			if (ackId.HasValue)
			{
				if (this.callBackRegistry.TryRemove(ackId.Value, out target))
				{
					target.Invoke(value);
					//target.BeginInvoke(value, target.EndInvoke, null);
				}
			}
		}

Same methods

RegistrationManager::InvokeCallBack ( int ackId, string value ) : void