コード例 #1
0
    public static void LogApplication(Batch.Application app)
    {
        System.Console.WriteLine("-----------------");

        System.Console.WriteLine("Has scheme : "+app.HasScheme());
        if( app.HasScheme() )
        {
            System.Console.WriteLine("scheme : "+app.Scheme);
        }

        System.Console.WriteLine("Has bundle : "+app.HasBundleId());
        if( app.HasBundleId() )
        {
            System.Console.WriteLine("bundle : "+app.BundleId);
        }

        System.Console.WriteLine("-----------------");
    }