NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

ConstructorBuilder.SetSymCustomAttribute

Sets this constructor's custom attribute associated with symbolic information.

[Visual Basic]
Public Sub SetSymCustomAttribute( _
   ByVal name As String, _
   ByVal data() As Byte _
)
[C#]
public void SetSymCustomAttribute(
   string name,
   byte[] data
);
[C++]
public: void SetSymCustomAttribute(
   String* name,
   unsigned char* data[]
);
[JScript]
public function SetSymCustomAttribute(
   name : String,
   data : Byte[]
);

Parameters

name
The name of the custom attribute.
data
[To be supplied.]

Exceptions

Exception Type Condition
InvalidOperationException If the containing type has been created using CreateType.

See Also

ConstructorBuilder Class | ConstructorBuilder Members | System.Reflection.Emit Namespace