CaveTube.CaveTalk.Lib.CaveTubeClientWrapper.JoinRoomGenAsync C# (CSharp) 메소드

JoinRoomGenAsync() 공개 메소드

public JoinRoomGenAsync ( String url ) : Task
url String
리턴 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);
			}
		}