<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://dev.eiffel.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Raphaels</id>
		<title>EiffelStudio: an EiffelSoftware project - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="https://dev.eiffel.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Raphaels"/>
		<link rel="alternate" type="text/html" href="https://dev.eiffel.com/Special:Contributions/Raphaels"/>
		<updated>2026-05-07T12:00:22Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.24.1</generator>

	<entry>
		<id>https://dev.eiffel.com/index.php?title=Routine_IDs&amp;diff=3517</id>
		<title>Routine IDs</title>
		<link rel="alternate" type="text/html" href="https://dev.eiffel.com/index.php?title=Routine_IDs&amp;diff=3517"/>
				<updated>2006-06-15T19:30:10Z</updated>
		
		<summary type="html">&lt;p&gt;Raphaels: /* Definitions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Compiler]]&lt;br /&gt;
==Definitions==&lt;br /&gt;
A '''routine ID''' is an ID used to identify a set of features which are redeclarations of a unique ancestor. This is used for dynamic binding.&lt;br /&gt;
&lt;br /&gt;
Every feature has a '''routine ID set'''. The set is most of the time made of one element because most feature are the declaration themself, or the redeclaration of just one ancestor. When you have more than one element, it means that it is the redeclaration of more than one ancestor (e.g. case of merging of two features coming from two different parents).&lt;/div&gt;</summary>
		<author><name>Raphaels</name></author>	</entry>

	<entry>
		<id>https://dev.eiffel.com/index.php?title=MDC_InformationTips&amp;diff=3060</id>
		<title>MDC InformationTips</title>
		<link rel="alternate" type="text/html" href="https://dev.eiffel.com/index.php?title=MDC_InformationTips&amp;diff=3060"/>
				<updated>2006-05-25T21:13:38Z</updated>
		
		<summary type="html">&lt;p&gt;Raphaels: /* Configuration */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Eiffel for .NET]]&lt;br /&gt;
&lt;br /&gt;
This document details the customization of the balloon tips provided by the Eiffel Metadata Consumer.&lt;br /&gt;
&lt;br /&gt;
== Requirements == &lt;br /&gt;
&lt;br /&gt;
Balloon tips are supported in the 2.0, or greater, release of the .NET framework. This means you will either need to build the Metadata Consumer using the 2.0 (using the configuration target 'consumer_20') or be using the 64bit version of EiffelStudio.&lt;br /&gt;
&lt;br /&gt;
== Configuration ==&lt;br /&gt;
&lt;br /&gt;
Currently configuration is provided via a system environment variable. This variable is MDC_BALLOON_MSG. The variable can contain any text and can contain message functions, which are in the form ''${namespace:function}''. There is no escaping provided as the balloon tips are more of a debug/awareness tool.&lt;br /&gt;
&lt;br /&gt;
New lines are tab characters are also supported in the balloon tips. Although, again, there is no support for escaping. New lines can be added by using the Eiffel-esk ''%N'' and tab characters can be added using ''%T''.&lt;br /&gt;
&lt;br /&gt;
== Functions ==&lt;br /&gt;
&lt;br /&gt;
There are a number of functions encompassed on three namespaces. &lt;br /&gt;
&lt;br /&gt;
Message functions are case-insensitive, but use the lower-case Eiffel-like convention.&lt;br /&gt;
&lt;br /&gt;
===module Namespace===&lt;br /&gt;
&lt;br /&gt;
The ''module'' namespace pertains to the Metadata consumer tool itself, so provides information on the consumer binary only.&lt;br /&gt;
&lt;br /&gt;
Here are a list of functions:&lt;br /&gt;
&lt;br /&gt;
* ''name'': Assembly name.&lt;br /&gt;
* ''version'': Assembly version.&lt;br /&gt;
* ''culture'': Assembly locale.&lt;br /&gt;
* ''key'': Assembly public key token.&lt;br /&gt;
* ''full_name'': Assembly fusion name.&lt;br /&gt;
* ''path'': Path where assembly was loaded from.&lt;br /&gt;
* ''clr'': Version of the CLR the assembly was loaded under.&lt;br /&gt;
&lt;br /&gt;
===assembly Namespace===&lt;br /&gt;
&lt;br /&gt;
The ''assembly'' namespace pertains to the assembly being consumed at any point during the consumer instatiated lifespan.&lt;br /&gt;
&lt;br /&gt;
Here are a list of functions:&lt;br /&gt;
&lt;br /&gt;
* ''name'': Assembly name.&lt;br /&gt;
* ''version'': Assembly version.&lt;br /&gt;
* ''culture'': Assembly locale.&lt;br /&gt;
* ''key'': Assembly public key token.&lt;br /&gt;
* ''full_name'': Assembly fusion name.&lt;br /&gt;
* ''path'': Path where assembly was loaded from.&lt;br /&gt;
&lt;br /&gt;
===consume Namespace===&lt;br /&gt;
&lt;br /&gt;
The ''consume '' namespace pertains to information on the consume process.&lt;br /&gt;
&lt;br /&gt;
Here are a list of functions:&lt;br /&gt;
&lt;br /&gt;
* ''reason'': A brief description of why the assembly is being consumed.&lt;br /&gt;
* ''cache_id'': An Eiffel Assembly Cache ID (in the form of a GUID) for an assembly being consumed.&lt;br /&gt;
* ''cache_path'': Full path to an Eiffel Assembly Cache the Metadata Consumer was initialized with.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
The default balloon tooltip is created using:&lt;br /&gt;
&lt;br /&gt;
 set MDC_BALLOON_MSG=&lt;br /&gt;
 Consuming assembly '${assembly:name}, Version=${assembly:version}'.%N%NCLR Version:&lt;br /&gt;
 ${module:clr}%NReason: ${consume:reason}%NAssembly:${assembly:path}%N%NID: ${consume:cache_id}&lt;br /&gt;
&lt;br /&gt;
== Final Note ==&lt;br /&gt;
&lt;br /&gt;
Balloon tips are limited to 256 character (255 printable and 1 null character). This is a Micrsoft API limitation in the Win32 API. Given that a file path can be up to 256 character you should pay attention to what message functions you use.&lt;/div&gt;</summary>
		<author><name>Raphaels</name></author>	</entry>

	<entry>
		<id>https://dev.eiffel.com/index.php?title=MDC_InformationTips&amp;diff=3059</id>
		<title>MDC InformationTips</title>
		<link rel="alternate" type="text/html" href="https://dev.eiffel.com/index.php?title=MDC_InformationTips&amp;diff=3059"/>
				<updated>2006-05-25T21:13:12Z</updated>
		
		<summary type="html">&lt;p&gt;Raphaels: /* Example */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Eiffel for .NET]]&lt;br /&gt;
&lt;br /&gt;
This document details the customization of the balloon tips provided by the Eiffel Metadata Consumer.&lt;br /&gt;
&lt;br /&gt;
== Requirements == &lt;br /&gt;
&lt;br /&gt;
Balloon tips are supported in the 2.0, or greater, release of the .NET framework. This means you will either need to build the Metadata Consumer using the 2.0 (using the configuration target 'consumer_20') or be using the 64bit version of EiffelStudio.&lt;br /&gt;
&lt;br /&gt;
== Configuration ==&lt;br /&gt;
&lt;br /&gt;
Currently configuration is provided via a system environment variable. This variable is MDC_BALLOON_TIP. The variable can contain any text and can contain message functions, which are in the form ''${namespace:function}''. There is no escaping provided as the balloon tips are more of a debug/awareness tool.&lt;br /&gt;
&lt;br /&gt;
New lines are tab characters are also supported in the balloon tips. Although, again, there is no support for escaping. New lines can be added by using the Eiffel-esk ''%N'' and tab characters can be added using ''%T''.&lt;br /&gt;
&lt;br /&gt;
== Functions ==&lt;br /&gt;
&lt;br /&gt;
There are a number of functions encompassed on three namespaces. &lt;br /&gt;
&lt;br /&gt;
Message functions are case-insensitive, but use the lower-case Eiffel-like convention.&lt;br /&gt;
&lt;br /&gt;
===module Namespace===&lt;br /&gt;
&lt;br /&gt;
The ''module'' namespace pertains to the Metadata consumer tool itself, so provides information on the consumer binary only.&lt;br /&gt;
&lt;br /&gt;
Here are a list of functions:&lt;br /&gt;
&lt;br /&gt;
* ''name'': Assembly name.&lt;br /&gt;
* ''version'': Assembly version.&lt;br /&gt;
* ''culture'': Assembly locale.&lt;br /&gt;
* ''key'': Assembly public key token.&lt;br /&gt;
* ''full_name'': Assembly fusion name.&lt;br /&gt;
* ''path'': Path where assembly was loaded from.&lt;br /&gt;
* ''clr'': Version of the CLR the assembly was loaded under.&lt;br /&gt;
&lt;br /&gt;
===assembly Namespace===&lt;br /&gt;
&lt;br /&gt;
The ''assembly'' namespace pertains to the assembly being consumed at any point during the consumer instatiated lifespan.&lt;br /&gt;
&lt;br /&gt;
Here are a list of functions:&lt;br /&gt;
&lt;br /&gt;
* ''name'': Assembly name.&lt;br /&gt;
* ''version'': Assembly version.&lt;br /&gt;
* ''culture'': Assembly locale.&lt;br /&gt;
* ''key'': Assembly public key token.&lt;br /&gt;
* ''full_name'': Assembly fusion name.&lt;br /&gt;
* ''path'': Path where assembly was loaded from.&lt;br /&gt;
&lt;br /&gt;
===consume Namespace===&lt;br /&gt;
&lt;br /&gt;
The ''consume '' namespace pertains to information on the consume process.&lt;br /&gt;
&lt;br /&gt;
Here are a list of functions:&lt;br /&gt;
&lt;br /&gt;
* ''reason'': A brief description of why the assembly is being consumed.&lt;br /&gt;
* ''cache_id'': An Eiffel Assembly Cache ID (in the form of a GUID) for an assembly being consumed.&lt;br /&gt;
* ''cache_path'': Full path to an Eiffel Assembly Cache the Metadata Consumer was initialized with.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
The default balloon tooltip is created using:&lt;br /&gt;
&lt;br /&gt;
 set MDC_BALLOON_MSG=&lt;br /&gt;
 Consuming assembly '${assembly:name}, Version=${assembly:version}'.%N%NCLR Version:&lt;br /&gt;
 ${module:clr}%NReason: ${consume:reason}%NAssembly:${assembly:path}%N%NID: ${consume:cache_id}&lt;br /&gt;
&lt;br /&gt;
== Final Note ==&lt;br /&gt;
&lt;br /&gt;
Balloon tips are limited to 256 character (255 printable and 1 null character). This is a Micrsoft API limitation in the Win32 API. Given that a file path can be up to 256 character you should pay attention to what message functions you use.&lt;/div&gt;</summary>
		<author><name>Raphaels</name></author>	</entry>

	<entry>
		<id>https://dev.eiffel.com/index.php?title=MDC_InformationTips&amp;diff=3049</id>
		<title>MDC InformationTips</title>
		<link rel="alternate" type="text/html" href="https://dev.eiffel.com/index.php?title=MDC_InformationTips&amp;diff=3049"/>
				<updated>2006-05-25T18:02:19Z</updated>
		
		<summary type="html">&lt;p&gt;Raphaels: /* Example */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Eiffel for .NET]]&lt;br /&gt;
&lt;br /&gt;
This document details the customization of the balloon tips provided by the Eiffel Metadata Consumer.&lt;br /&gt;
&lt;br /&gt;
== Requirements == &lt;br /&gt;
&lt;br /&gt;
Balloon tips are supported in the 2.0, or greater, release of the .NET framework. This means you will either need to build the Metadata Consumer using the 2.0 (using the configuration target 'consumer_20') or be using the 64bit version of EiffelStudio.&lt;br /&gt;
&lt;br /&gt;
== Configuration ==&lt;br /&gt;
&lt;br /&gt;
Currently configuration is provided via a system environment variable. This variable is MDC_BALLOON_TIP. The variable can contain any text and can contain message functions, which are in the form ''${namespace:function}''. There is no escaping provided as the balloon tips are more of a debug/awareness tool.&lt;br /&gt;
&lt;br /&gt;
== Functions ==&lt;br /&gt;
&lt;br /&gt;
There are a number of functions encompassed on three namespaces. &lt;br /&gt;
&lt;br /&gt;
Message functions are case-insensitive, but use the lower-case Eiffel-like convention.&lt;br /&gt;
&lt;br /&gt;
===module Namespace===&lt;br /&gt;
&lt;br /&gt;
The ''module'' namespace pertains to the Metadata consumer tool itself, so provides information on the consumer binary only.&lt;br /&gt;
&lt;br /&gt;
Here are a list of functions:&lt;br /&gt;
&lt;br /&gt;
* ''name'': Assembly name.&lt;br /&gt;
* ''version'': Assembly version.&lt;br /&gt;
* ''culture'': Assembly locale.&lt;br /&gt;
* ''key'': Assembly public key token.&lt;br /&gt;
* ''full_name'': Assembly fusion name.&lt;br /&gt;
* ''path'': Path where assembly was loaded from.&lt;br /&gt;
* ''clr'': Version of the CLR the assembly was loaded under.&lt;br /&gt;
&lt;br /&gt;
===assembly Namespace===&lt;br /&gt;
&lt;br /&gt;
The ''assembly'' namespace pertains to the assembly being consumed at any point during the consumer instatiated lifespan.&lt;br /&gt;
&lt;br /&gt;
Here are a list of functions:&lt;br /&gt;
&lt;br /&gt;
* ''name'': Assembly name.&lt;br /&gt;
* ''version'': Assembly version.&lt;br /&gt;
* ''culture'': Assembly locale.&lt;br /&gt;
* ''key'': Assembly public key token.&lt;br /&gt;
* ''full_name'': Assembly fusion name.&lt;br /&gt;
* ''path'': Path where assembly was loaded from.&lt;br /&gt;
&lt;br /&gt;
===consume Namespace===&lt;br /&gt;
&lt;br /&gt;
The ''consume '' namespace pertains to information on the consume process.&lt;br /&gt;
&lt;br /&gt;
Here are a list of functions:&lt;br /&gt;
&lt;br /&gt;
* ''reason'': A brief description of why the assembly is being consumed.&lt;br /&gt;
* ''cache_id'': An Eiffel Assembly Cache ID (in the form of a GUID) for an assembly being consumed.&lt;br /&gt;
* ''cache_path'': Full path to an Eiffel Assembly Cache the Metadata Consumer was initialized with.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
The default balloon tooltip is created using:&lt;br /&gt;
&lt;br /&gt;
 set MDC_BALLOON_TIP=&lt;br /&gt;
 Consuming assembly '${assembly:name}, Version=${assembly:version}'.%N%NCLR Version:&lt;br /&gt;
 ${module:clr}%NReason: ${consume:reason}%NAssembly:${assembly:path}%N%NID: ${consume:cache_id}&lt;br /&gt;
&lt;br /&gt;
== Final Note ==&lt;br /&gt;
&lt;br /&gt;
Balloon tips are limited to 256 character (255 printable and 1 null character). This is a Micrsoft API limitation in the Win32 API. Given that a file path can be up to 256 character you should pay attention to what message functions you use.&lt;/div&gt;</summary>
		<author><name>Raphaels</name></author>	</entry>

	<entry>
		<id>https://dev.eiffel.com/index.php?title=MDC_InformationTips&amp;diff=3048</id>
		<title>MDC InformationTips</title>
		<link rel="alternate" type="text/html" href="https://dev.eiffel.com/index.php?title=MDC_InformationTips&amp;diff=3048"/>
				<updated>2006-05-25T18:02:01Z</updated>
		
		<summary type="html">&lt;p&gt;Raphaels: /* Example */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Eiffel for .NET]]&lt;br /&gt;
&lt;br /&gt;
This document details the customization of the balloon tips provided by the Eiffel Metadata Consumer.&lt;br /&gt;
&lt;br /&gt;
== Requirements == &lt;br /&gt;
&lt;br /&gt;
Balloon tips are supported in the 2.0, or greater, release of the .NET framework. This means you will either need to build the Metadata Consumer using the 2.0 (using the configuration target 'consumer_20') or be using the 64bit version of EiffelStudio.&lt;br /&gt;
&lt;br /&gt;
== Configuration ==&lt;br /&gt;
&lt;br /&gt;
Currently configuration is provided via a system environment variable. This variable is MDC_BALLOON_TIP. The variable can contain any text and can contain message functions, which are in the form ''${namespace:function}''. There is no escaping provided as the balloon tips are more of a debug/awareness tool.&lt;br /&gt;
&lt;br /&gt;
== Functions ==&lt;br /&gt;
&lt;br /&gt;
There are a number of functions encompassed on three namespaces. &lt;br /&gt;
&lt;br /&gt;
Message functions are case-insensitive, but use the lower-case Eiffel-like convention.&lt;br /&gt;
&lt;br /&gt;
===module Namespace===&lt;br /&gt;
&lt;br /&gt;
The ''module'' namespace pertains to the Metadata consumer tool itself, so provides information on the consumer binary only.&lt;br /&gt;
&lt;br /&gt;
Here are a list of functions:&lt;br /&gt;
&lt;br /&gt;
* ''name'': Assembly name.&lt;br /&gt;
* ''version'': Assembly version.&lt;br /&gt;
* ''culture'': Assembly locale.&lt;br /&gt;
* ''key'': Assembly public key token.&lt;br /&gt;
* ''full_name'': Assembly fusion name.&lt;br /&gt;
* ''path'': Path where assembly was loaded from.&lt;br /&gt;
* ''clr'': Version of the CLR the assembly was loaded under.&lt;br /&gt;
&lt;br /&gt;
===assembly Namespace===&lt;br /&gt;
&lt;br /&gt;
The ''assembly'' namespace pertains to the assembly being consumed at any point during the consumer instatiated lifespan.&lt;br /&gt;
&lt;br /&gt;
Here are a list of functions:&lt;br /&gt;
&lt;br /&gt;
* ''name'': Assembly name.&lt;br /&gt;
* ''version'': Assembly version.&lt;br /&gt;
* ''culture'': Assembly locale.&lt;br /&gt;
* ''key'': Assembly public key token.&lt;br /&gt;
* ''full_name'': Assembly fusion name.&lt;br /&gt;
* ''path'': Path where assembly was loaded from.&lt;br /&gt;
&lt;br /&gt;
===consume Namespace===&lt;br /&gt;
&lt;br /&gt;
The ''consume '' namespace pertains to information on the consume process.&lt;br /&gt;
&lt;br /&gt;
Here are a list of functions:&lt;br /&gt;
&lt;br /&gt;
* ''reason'': A brief description of why the assembly is being consumed.&lt;br /&gt;
* ''cache_id'': An Eiffel Assembly Cache ID (in the form of a GUID) for an assembly being consumed.&lt;br /&gt;
* ''cache_path'': Full path to an Eiffel Assembly Cache the Metadata Consumer was initialized with.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
The default balloon tooltip is created using:&lt;br /&gt;
&lt;br /&gt;
 set MDC_BALLOON_TIP=&lt;br /&gt;
 Consuming assembly '${assembly:name}, Version=${assembly:version}'.%N%NCLR Version: ${module:clr}%NReason: ${consume:reason}%NAssembly:${assembly:path}%N%NID: ${consume:cache_id}&lt;br /&gt;
&lt;br /&gt;
== Final Note ==&lt;br /&gt;
&lt;br /&gt;
Balloon tips are limited to 256 character (255 printable and 1 null character). This is a Micrsoft API limitation in the Win32 API. Given that a file path can be up to 256 character you should pay attention to what message functions you use.&lt;/div&gt;</summary>
		<author><name>Raphaels</name></author>	</entry>

	<entry>
		<id>https://dev.eiffel.com/index.php?title=MDC_InformationTips&amp;diff=3047</id>
		<title>MDC InformationTips</title>
		<link rel="alternate" type="text/html" href="https://dev.eiffel.com/index.php?title=MDC_InformationTips&amp;diff=3047"/>
				<updated>2006-05-25T17:59:52Z</updated>
		
		<summary type="html">&lt;p&gt;Raphaels: /* Final Note */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Eiffel for .NET]]&lt;br /&gt;
&lt;br /&gt;
This document details the customization of the balloon tips provided by the Eiffel Metadata Consumer.&lt;br /&gt;
&lt;br /&gt;
== Requirements == &lt;br /&gt;
&lt;br /&gt;
Balloon tips are supported in the 2.0, or greater, release of the .NET framework. This means you will either need to build the Metadata Consumer using the 2.0 (using the configuration target 'consumer_20') or be using the 64bit version of EiffelStudio.&lt;br /&gt;
&lt;br /&gt;
== Configuration ==&lt;br /&gt;
&lt;br /&gt;
Currently configuration is provided via a system environment variable. This variable is MDC_BALLOON_TIP. The variable can contain any text and can contain message functions, which are in the form ''${namespace:function}''. There is no escaping provided as the balloon tips are more of a debug/awareness tool.&lt;br /&gt;
&lt;br /&gt;
== Functions ==&lt;br /&gt;
&lt;br /&gt;
There are a number of functions encompassed on three namespaces. &lt;br /&gt;
&lt;br /&gt;
Message functions are case-insensitive, but use the lower-case Eiffel-like convention.&lt;br /&gt;
&lt;br /&gt;
===module Namespace===&lt;br /&gt;
&lt;br /&gt;
The ''module'' namespace pertains to the Metadata consumer tool itself, so provides information on the consumer binary only.&lt;br /&gt;
&lt;br /&gt;
Here are a list of functions:&lt;br /&gt;
&lt;br /&gt;
* ''name'': Assembly name.&lt;br /&gt;
* ''version'': Assembly version.&lt;br /&gt;
* ''culture'': Assembly locale.&lt;br /&gt;
* ''key'': Assembly public key token.&lt;br /&gt;
* ''full_name'': Assembly fusion name.&lt;br /&gt;
* ''path'': Path where assembly was loaded from.&lt;br /&gt;
* ''clr'': Version of the CLR the assembly was loaded under.&lt;br /&gt;
&lt;br /&gt;
===assembly Namespace===&lt;br /&gt;
&lt;br /&gt;
The ''assembly'' namespace pertains to the assembly being consumed at any point during the consumer instatiated lifespan.&lt;br /&gt;
&lt;br /&gt;
Here are a list of functions:&lt;br /&gt;
&lt;br /&gt;
* ''name'': Assembly name.&lt;br /&gt;
* ''version'': Assembly version.&lt;br /&gt;
* ''culture'': Assembly locale.&lt;br /&gt;
* ''key'': Assembly public key token.&lt;br /&gt;
* ''full_name'': Assembly fusion name.&lt;br /&gt;
* ''path'': Path where assembly was loaded from.&lt;br /&gt;
&lt;br /&gt;
===consume Namespace===&lt;br /&gt;
&lt;br /&gt;
The ''consume '' namespace pertains to information on the consume process.&lt;br /&gt;
&lt;br /&gt;
Here are a list of functions:&lt;br /&gt;
&lt;br /&gt;
* ''reason'': A brief description of why the assembly is being consumed.&lt;br /&gt;
* ''cache_id'': An Eiffel Assembly Cache ID (in the form of a GUID) for an assembly being consumed.&lt;br /&gt;
* ''cache_path'': Full path to an Eiffel Assembly Cache the Metadata Consumer was initialized with.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
The default balloon tooltip is created using:&lt;br /&gt;
&lt;br /&gt;
 Consuming assembly '${assembly:name}, Version=${assembly:version}'.%N%NCLR Version: ${module:clr}%NReason: ${consume:reason}%NAssembly:${assembly:path}%N%NID: ${consume:cache_id}&lt;br /&gt;
&lt;br /&gt;
== Final Note ==&lt;br /&gt;
&lt;br /&gt;
Balloon tips are limited to 256 character (255 printable and 1 null character). This is a Micrsoft API limitation in the Win32 API. Given that a file path can be up to 256 character you should pay attention to what message functions you use.&lt;/div&gt;</summary>
		<author><name>Raphaels</name></author>	</entry>

	<entry>
		<id>https://dev.eiffel.com/index.php?title=MDC_InformationTips&amp;diff=3046</id>
		<title>MDC InformationTips</title>
		<link rel="alternate" type="text/html" href="https://dev.eiffel.com/index.php?title=MDC_InformationTips&amp;diff=3046"/>
				<updated>2006-05-25T17:57:47Z</updated>
		
		<summary type="html">&lt;p&gt;Raphaels: /* Configuration */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Eiffel for .NET]]&lt;br /&gt;
&lt;br /&gt;
This document details the customization of the balloon tips provided by the Eiffel Metadata Consumer.&lt;br /&gt;
&lt;br /&gt;
== Requirements == &lt;br /&gt;
&lt;br /&gt;
Balloon tips are supported in the 2.0, or greater, release of the .NET framework. This means you will either need to build the Metadata Consumer using the 2.0 (using the configuration target 'consumer_20') or be using the 64bit version of EiffelStudio.&lt;br /&gt;
&lt;br /&gt;
== Configuration ==&lt;br /&gt;
&lt;br /&gt;
Currently configuration is provided via a system environment variable. This variable is MDC_BALLOON_TIP. The variable can contain any text and can contain message functions, which are in the form ''${namespace:function}''. There is no escaping provided as the balloon tips are more of a debug/awareness tool.&lt;br /&gt;
&lt;br /&gt;
== Functions ==&lt;br /&gt;
&lt;br /&gt;
There are a number of functions encompassed on three namespaces. &lt;br /&gt;
&lt;br /&gt;
Message functions are case-insensitive, but use the lower-case Eiffel-like convention.&lt;br /&gt;
&lt;br /&gt;
===module Namespace===&lt;br /&gt;
&lt;br /&gt;
The ''module'' namespace pertains to the Metadata consumer tool itself, so provides information on the consumer binary only.&lt;br /&gt;
&lt;br /&gt;
Here are a list of functions:&lt;br /&gt;
&lt;br /&gt;
* ''name'': Assembly name.&lt;br /&gt;
* ''version'': Assembly version.&lt;br /&gt;
* ''culture'': Assembly locale.&lt;br /&gt;
* ''key'': Assembly public key token.&lt;br /&gt;
* ''full_name'': Assembly fusion name.&lt;br /&gt;
* ''path'': Path where assembly was loaded from.&lt;br /&gt;
* ''clr'': Version of the CLR the assembly was loaded under.&lt;br /&gt;
&lt;br /&gt;
===assembly Namespace===&lt;br /&gt;
&lt;br /&gt;
The ''assembly'' namespace pertains to the assembly being consumed at any point during the consumer instatiated lifespan.&lt;br /&gt;
&lt;br /&gt;
Here are a list of functions:&lt;br /&gt;
&lt;br /&gt;
* ''name'': Assembly name.&lt;br /&gt;
* ''version'': Assembly version.&lt;br /&gt;
* ''culture'': Assembly locale.&lt;br /&gt;
* ''key'': Assembly public key token.&lt;br /&gt;
* ''full_name'': Assembly fusion name.&lt;br /&gt;
* ''path'': Path where assembly was loaded from.&lt;br /&gt;
&lt;br /&gt;
===consume Namespace===&lt;br /&gt;
&lt;br /&gt;
The ''consume '' namespace pertains to information on the consume process.&lt;br /&gt;
&lt;br /&gt;
Here are a list of functions:&lt;br /&gt;
&lt;br /&gt;
* ''reason'': A brief description of why the assembly is being consumed.&lt;br /&gt;
* ''cache_id'': An Eiffel Assembly Cache ID (in the form of a GUID) for an assembly being consumed.&lt;br /&gt;
* ''cache_path'': Full path to an Eiffel Assembly Cache the Metadata Consumer was initialized with.&lt;br /&gt;
&lt;br /&gt;
== Final Note ==&lt;br /&gt;
&lt;br /&gt;
Balloon tips are limited to 256 character (255 printable and 1 null character). This is a Micrsoft API limitation in the Win32 API. Given that a file path can be up to 256 character you should pay attention to what message functions you use.&lt;/div&gt;</summary>
		<author><name>Raphaels</name></author>	</entry>

	</feed>