private static void ConfigureScope(Scope scope)
 {
     scope.User = new User
     {
         Id       = SupportInformation.GetAnonymousIdentity(),
         Username = SupportInformation.GetSupportKey()
     };
 }
Beispiel #2
0
 private void btnSupportKey_Click(object sender, EventArgs e)
 {
     Clipboard.SetText(SupportInformation.GetSupportKey());
 }
Beispiel #3
0
 public void GetSupportKey_Returns_NotNullOrWhitespace()
 => SupportInformation.GetSupportKey()
 .Should()
 .NotBeNullOrWhiteSpace();
Beispiel #4
0
        public AnalyticsOptionsPageCustom()
        {
            InitializeComponent();

            lblSupportKey.Text = $"Support Key: {SupportInformation.GetSupportKey()}";
        }