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!

ISymbolWriter.SetSymAttribute

Defines an attribute given the attribute name and the attribute value.

[Visual Basic]
Sub SetSymAttribute( _
   ByVal parent As SymbolToken, _
   ByVal name As String, _
   ByVal data() As Byte _
)
[C#]
void SetSymAttribute(
   SymbolToken parent,
   string name,
   byte[] data
);
[C++]
void SetSymAttribute(
   SymbolToken parent,
   String* name,
   unsigned char* data[]
) = 0;
[JScript]
function SetSymAttribute(
   parent : SymbolToken,
   name : String,
   data : Byte[]
);

Parameters

parent
The metadata token for which the attribute is being defined.
name
The attribute name.
data
The attribute value.

Remarks

This attribute is associated only with symbolic information and is not a metadata custom attribute.

See Also

ISymbolWriter Interface | ISymbolWriter Members | System.Diagnostics.SymbolStore Namespace