示例#1
0
        public static StarWebrtcContext CreateMentorContext(string overrideLocalPeerUsername = null)
        {
            StarWebrtcContext ctx = new StarWebrtcContext();

            ctx.UserType           = StarUserType.MENTOR;
            ctx.LocalPeerUsername  = "******";
            ctx.LocalPeerNameLabel = "STAR Mentor";

            return(ctx);
        }
示例#2
0
        public static StarWebrtcContext CreateTraineeContext()
        {
            StarWebrtcContext ctx = new StarWebrtcContext();

            ctx.UserType                       = StarUserType.TRAINEE;
            ctx.LocalPeerUsername              = "******";
            ctx.LocalPeerNameLabel             = "STAR Trainee";
            ctx.ExpectedRemoteReceiverUsername = "******";

            return(ctx);
        }