示例#1
0
    public void GetStoredURLSchemeOnBoot()
    {
        // 書き込みを行い、イベントを着火させる
        notif.Debug_WriteURLScheme("scheme://app?key=value&and=other");

        var result = new Dictionary <string, string>();

        // tempに保存してあるNotificationファイルを取得する
        notif.SetURLSchemeReceiver(
            data =>
        {
            result = data;
        }
            );

        True(0 < result.Count, "empty.");
    }