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!

ISymbolReader.GetSymAttribute

Gets an attribute value given the attribute name.

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

Parameters

parent
The metadata token for the object for which the attribute is requested.
name
The attribute name.

Return Value

The value of the attribute.

Remarks

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

See Also

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