public static StarWebrtcContext CreateMentorContext(string overrideLocalPeerUsername = null) { StarWebrtcContext ctx = new StarWebrtcContext(); ctx.UserType = StarUserType.MENTOR; ctx.LocalPeerUsername = "******"; ctx.LocalPeerNameLabel = "STAR Mentor"; return(ctx); }
public static StarWebrtcContext CreateTraineeContext() { StarWebrtcContext ctx = new StarWebrtcContext(); ctx.UserType = StarUserType.TRAINEE; ctx.LocalPeerUsername = "******"; ctx.LocalPeerNameLabel = "STAR Trainee"; ctx.ExpectedRemoteReceiverUsername = "******"; return(ctx); }