473,729 Members | 2,309 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

C#-ILAsm custom attributes

Hello,

for some reason I need to use attributes in ILAsm code and read these
attributes in C# code. My problem is with the attribute declaration inside
ILAsm code. I know that I define any attribute by using ILasm's ".custom"
keyword but I do not understand how to initialize the attribute Value blob
when the attribute contains some fields. I just do not understand that
binary format:

..custom instance void MyAttribute::.c tor(bool) = (01 00 01 00 00)

(example taken from "Inside IL" by Serge Lidin, the attribute constructor
has only 1 parameter of type 'bool')

Lidin does not say anything on how the attrubute's constructor arguments
should be encoded (except of arguments of type 'string', he says that such
attributes should be represented by unicode hex data).

My questions:
- how do I encode any particular datatype (strings, ints, etc)?
- how do I encode attributes of custom types?
- how do I separate consecutive arguments in the argument list?

Thanks for any help,
Wiktor Zychla
Nov 16 '05 #1
4 2733
Wiktor Zychla wrote:
Hello,

for some reason I need to use attributes in ILAsm code and read these
attributes in C# code. My problem is with the attribute declaration inside
ILAsm code. I know that I define any attribute by using ILasm's ".custom"
keyword but I do not understand how to initialize the attribute Value blob
when the attribute contains some fields. I just do not understand that
binary format:

.custom instance void MyAttribute::.c tor(bool) = (01 00 01 00 00)

(example taken from "Inside IL" by Serge Lidin, the attribute constructor
has only 1 parameter of type 'bool')

Lidin does not say anything on how the attrubute's constructor arguments
should be encoded (except of arguments of type 'string', he says that such
attributes should be represented by unicode hex data).

My questions:
- how do I encode any particular datatype (strings, ints, etc)?
- how do I encode attributes of custom types?
- how do I separate consecutive arguments in the argument list?

Thanks for any help,
Wiktor Zychla


Why not create a dummy C# application with the attributes you require
applied, compile it and then use ILDASM to see what was generated?
Nov 16 '05 #2
Wiktor,

I'm curious, why are you declaring these in IL?

For the format of declaring an attribute, check (watch for line wrap):

http://jilc.sourceforge.net/ecma_p2_...m_Attributes_1

Here is the format for the blob used to pass parameters to the
constructor:

http://jilc.sourceforge.net/ecma_p2_...m_Attributes_2

Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"Wiktor Zychla" <us**@nospam.co m.eu> wrote in message
news:uc******** ******@TK2MSFTN GP10.phx.gbl...
Hello,

for some reason I need to use attributes in ILAsm code and read these
attributes in C# code. My problem is with the attribute declaration inside
ILAsm code. I know that I define any attribute by using ILasm's ".custom"
keyword but I do not understand how to initialize the attribute Value blob
when the attribute contains some fields. I just do not understand that
binary format:

.custom instance void MyAttribute::.c tor(bool) = (01 00 01 00 00)

(example taken from "Inside IL" by Serge Lidin, the attribute constructor
has only 1 parameter of type 'bool')

Lidin does not say anything on how the attrubute's constructor arguments
should be encoded (except of arguments of type 'string', he says that such
attributes should be represented by unicode hex data).

My questions:
- how do I encode any particular datatype (strings, ints, etc)?
- how do I encode attributes of custom types?
- how do I separate consecutive arguments in the argument list?

Thanks for any help,
Wiktor Zychla

Nov 16 '05 #3
> I'm curious, why are you declaring these in IL?

practical part of my PhD research.

thanks for your help.

Wiktor Zychla
Nov 16 '05 #4
Wiktor,

FYI, the Whidbey version of IL(D)ASM supports new, typed syntax for
the attribute data, so you no longer have to work with the raw blob
format.

Mattias

--
Mattias Sjögren [MVP] mattias @ mvps.org
http://www.msjogren.net/dotnet/ | http://www.dotnetinterop.com
Please reply only to the newsgroup.
Nov 16 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
454
by: Doug Holland | last post by:
Often you see code where an empty interface is used to indicate something about the class that realizes it. In the .NET world this can be done with custom attributes too, so which is better: public class SomeClass : IEmptyInterface or
3
2884
by: xAvailx | last post by:
I apologize ahead of time for the long post... Background: Working on a CRM type custom application. The application is for an event management company. The company will provide the application for other organizations to manage their own events. The events include conferences, corp meetings, sales meetings, etc... An event planner will define what information is needed for an attendee to register for an event. We will be providing a...
8
2187
by: nicolas.sanguinetti | last post by:
Hi, I want to add custom attributes to my xhtml documents to use with my DOM scripts. For example, I want to have some tags -say, the <h1>- have an attribute and a . The thing is that I also want the document to validate against xhtml 1.1 :-) How can I define a Schema (and embed it in my xhtml) to expand XHTML default and add this custom attributes?
1
2141
by: Bret Pehrson | last post by:
I've converted a non-trivial C++ library to managed, and get the following unhelpful linker error: Assignment.obj : error LNK2022: metadata operation failed (80131195) : Custom attributes are not consistent: (0x0c0001a5). Display.obj : error LNK2022: metadata operation failed (80131195) : Custom attributes are not consistent: (0x0c000108). The help for LNK2022 is completely useless:
3
2146
by: Edward Diener | last post by:
I understand the syntax of custom attributes, but I have no idea what they are supposed to do. Anyone care to give me a clue as to their functionality ?
1
4210
by: Tamas Demjen | last post by:
I started to experiment with VC++ 2005 Beta1. So far everything went fine, and already have a working project, but soon I realized that the compiler was ancient (not supporting half of the C++/CLI standard). So I downloaded the VC++ 2005 Tools Refresh (http://tinyurl.com/5mdq2). After that I tried to do a full rebuild, but my project wouldn't link anymore. I get the following errors: MSVCMRTD.lib(mstartup.obj) : error LNK2022: metadata...
3
3195
by: Mark R. Dawson | last post by:
Hi all, I am trying to get custom attributes from a property. I can do this if I pass in the name of the property i.e. "Name" to the reflection methods, but if I pass in set_Name which is what the set piece of the Name property gets compiled to, which I am getting from the stack trace, then the attributes are not returned. For example, Class Person has a property called "Name" which has a custom attribute decorating it. Inside the set...
2
2527
by: prabhupr | last post by:
Hi Folks I was reading this article (http://www.dotnetbips.com/articles/displayarticle.aspx?id=32) on "Custom Attribute", written by Bipin. The only thing I did not understand in this article is the usage of "Custom Attribute" in real life project. Can somebody please help me understand where are these informations really helpful in Development Environment; may be a few example(s) will help me understand.
5
1874
by: =?Utf-8?B?cGFnYXRlcw==?= | last post by:
Hello All, I am sure that I am just overlooking something, but here's something I can't quite get right... I want to be able to get the value of a parameter of an unknown custom attribute at runtime. All of the examples I have seen use casting of known custom attributes to get these values. Thanks,
1
1528
camel
by: camel | last post by:
Apologies if foolish question, but I somewhat expected Custom Attributes (i.e. inheriting from System.Attribute) decorating class properties to come through via WSDL to the proxy the same as built in Attributes (e.g., Xml .Serialization attributes). Have typically always accessed custom attributes in referenced assemblies rather than via WS so perhaps I imagined it...No attributes come through in generated proxy for WS so obviously...
0
9281
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9200
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9142
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
6722
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6022
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4525
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4795
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
2680
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2163
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.