public void Start()

in src/main/csharp/Connection.cs [65:78]


		public void Start()
		{
			if(started.CompareAndSet(false, true))
			{
				try
				{
					this.xmsConnection.Start();
				}
				catch(Exception ex)
				{
					ExceptionUtil.WrapAndThrowNMSException(ex);
				}
			}
		}