CaveTube.CaveTalk.Lib.CaveTubeClientWrapper.JoinRoomGenAsync C# (CSharp) Method

JoinRoomGenAsync() public method

public JoinRoomGenAsync ( String url ) : Task
url String
return Task
		public override async Task JoinRoomGenAsync(String url) {
			try {
				this.joinedRoomSummary = Mapper.Map<Summary>(await this.client.GetSummaryAsync(url));
				await this.client.JoinRoomAsync(url);
			} catch (FormatException ex) {
				throw new CommentException(ex.Message, ex);
			} catch (CavetubeException ex) {
				throw new CommentException(ex.Message, ex);
			}
		}