private static void ConfigureScope(Scope scope) { scope.User = new User { Id = SupportInformation.GetAnonymousIdentity(), Username = SupportInformation.GetSupportKey() }; }
private void btnSupportKey_Click(object sender, EventArgs e) { Clipboard.SetText(SupportInformation.GetSupportKey()); }
public void GetSupportKey_Returns_NotNullOrWhitespace() => SupportInformation.GetSupportKey() .Should() .NotBeNullOrWhiteSpace();
public AnalyticsOptionsPageCustom() { InitializeComponent(); lblSupportKey.Text = $"Support Key: {SupportInformation.GetSupportKey()}"; }