DCSIMG
Compiled XAML = BAML not IL - Essential XAML

Compiled XAML = BAML not IL

Yesterday I lectured about XAML and the following question was asked: Why XAML is compiled into BAML and not directly into IL for better performance?

Before giving the correct answer, I want to explain what BAML is.

There are actually two ways for handling a XAML file: Loose or Compiled.

  • Loose XAML file should be parsed at runtime, and can be deployed as a simple XML file, locally, remotely or embedded into the assembly.
  • Compiled is a XAML file marked as "Page" in Visual Studio (<Page Include="AXamlFile.xaml" /> in MSBuild), deployed as a BAML (Binary Application Markup Language) file and embedded as an assembly resource.

A loose XAML file can't include the x:Class XAML keyword, also it can't embed a source code, nor it can emit code by all means. It is possible to load a loose XAML file by calling XamlReader.Load() method, casting the return value into the root element. The loose XAML version provides a dynamic way to load and change the view, but provides poor performance due to the fact that the XML file is parsed at runtime.

A compiled XAML file (BAML) can emit code, by using x:Class, or by registering events for example. It is possible to load an element from inside the BAML by calling the Application.LoadComponent(), casting the return value into the root element. The compiled XAML version provides better performance since it is pre-tokenized binary version of the XAML file, hence it is smaller and can be loaded faster, but it is not dynamic.

Once upon a time, there was CAML. CAML was the exact IL version of the compiled XAML file. Unfortunately, the WPF team has decided to eliminate it, and keep the BAML version for the following reasons:

1. BAML is compact hence it can be downloaded faster (good for XBAP applications)

2. BAML is less security threat than code execution (good for XBAP applications)

3. BAML can be localized after compilation

In the bottom line, BAML is a little slower than IL but has more advantages than CAML.

Published Friday, May 25, 2007 9:46 AM by Tomer Shamam

Comments

# re: Compiled XAML = BAML not IL

Wednesday, May 05, 2010 6:01 PM by Jignesh

Good one.....Really helpful.....

# re: Compiled XAML = BAML not IL

Thursday, February 24, 2011 10:10 PM by Claude Glauser

Thanks a  lot for good your explanation! It is much clearer now. One question left: Why is BAML less security thread?

# re: Compiled XAML = BAML not IL

Thursday, February 24, 2011 10:54 PM by Tomer Shamam

Hi Claude,

It is said that BAML is safer than IL, since it can't contain malicious code, it is only a binary stream of WPF objects, where IL can be anything.

BAML is considered safer when dealing with XBAP applications.

# re: Compiled XAML = BAML not IL

Wednesday, March 02, 2011 6:33 PM by Lakshmi

Your explanation saved me alot instead of wasting one more day to load loose xaml.

# re: Compiled XAML = BAML not IL

Wednesday, February 08, 2012 6:01 PM by David

Great explanation

Leave a Comment

(required) 
(required) 
(optional)
(required) 

Enter the numbers above:
Powered by Community Server (Commercial Edition), by Telligent Systems