System.Diagnostics.SymbolStore.SymbolToken Structure

Assembly: Mscorlib.dll
Namespace: System.Diagnostics.SymbolStore
Summary
Provides an opaque representation of the token used and returned by the metadata.
C# Syntax:
public struct SymbolToken
See also:
System.Diagnostics.SymbolStore Namespace

System.Diagnostics.SymbolStore.SymbolToken Member List:

Public Constructors
ctor #1 Initializes a new instance of the SymbolToken class when given a value.
Public Methods
Equals Overridden:
Determines whether obj is an instance of SymbolToken and is equal to this instance.
GetHashCode Overridden:
Generates the hash code for the current token.
GetToken Gets the value of the current token.
GetType
(inherited from System.Object)
See base class member description: System.Object.GetType

Derived from System.Object, the primary base class for all objects.
ToString
(inherited from System.ValueType)
See base class member description: System.ValueType.ToString


Returns the fully qualified type name of this instance.
Protected Methods
Finalize
(inherited from System.Object)
See base class member description: System.Object.Finalize

Derived from System.Object, the primary base class for all objects.
MemberwiseClone
(inherited from System.Object)
See base class member description: System.Object.MemberwiseClone

Derived from System.Object, the primary base class for all objects.

Hierarchy:


System.Diagnostics.SymbolStore.SymbolToken Member Details

ctor #1
Summary
Initializes a new instance of the SymbolToken class when given a value.
C# Syntax:
public SymbolToken(
   int val
);
Parameters:

val

The value to be used for the token.

Return to top


Overridden Method: Equals(
   object obj
)
Summary
Determines whether obj is an instance of SymbolToken and is equal to this instance.
C# Syntax:
public override bool Equals(
   object obj
);
Parameters:

obj

The object to check.

Return Value:
true if obj is an instance of SymbolToken and is equal to this instance; otherwise, false.

Return to top


Method: Finalize()
Inherited
See base class member description: System.Object.Finalize
C# Syntax:
~SymbolToken();

For more information on members inherited from System.Object click on the link above.

Return to top


Overridden Method: GetHashCode()
Summary
Generates the hash code for the current token.
C# Syntax:
public override int GetHashCode();
Return Value:
The hash code for the current token.

Return to top


Method: GetToken()
Summary
Gets the value of the current token.
C# Syntax:
public int GetToken();
Return Value:
The value of the current token.

Return to top


Method: GetType()
Inherited
See base class member description: System.Object.GetType
C# Syntax:
public Type GetType();

For more information on members inherited from System.Object click on the link above.

Return to top


Method: MemberwiseClone()
Inherited
See base class member description: System.Object.MemberwiseClone
C# Syntax:
protected object MemberwiseClone();

For more information on members inherited from System.Object click on the link above.

Return to top


Method: ToString()
Inherited
See base class member description: System.ValueType.ToString

Summary
Returns the fully qualified type name of this instance.
C# Syntax:
public override string ToString();
Return Value:
A String containing a fully qualified type name.

Return to top


Top of page

Copyright (c) 2002 Microsoft Corporation. All rights reserved.