コード例 #1
0
        public void ScreenSubmit()
        {
            _client.Screen("UserId", "Name");
            _client.Screen("UserId", "Name");
            _client.Screen("UserId", "Name", "Category");
            _client.Screen("UserId", "Name", null, null);
            _client.Screen("UserId", "Name", options: null);
            _client.Screen("UserId", "Name", properties: null);

            Assert.AreEqual(6, _client.Statistics.Submitted);
        }
コード例 #2
0
ファイル: Actions.cs プロジェクト: rudderlabs/rudder-sdk-.net
 public static void Screen(RudderClient client)
 {
     client.Screen("user", "name", "category", Properties(), Options());
 }
コード例 #3
0
 public void TrackTest()
 {
     // verify it doesn't fail for a null options
     client.Screen("bar", "qaz", null, null);
 }