Struct ScopedIdentifier
Denotes the tuple of an attribute and its scope
Assembly: NMF.Models.dll
Syntax
public struct ScopedIdentifier : IEquatable<ScopedIdentifier>
Constructors
|
Edit this page
View Source
Creates a new scoped identifier
Declaration
public ScopedIdentifier(IAttribute identifier, IdentifierScope scope)
Parameters
Properties
|
Edit this page
View Source
Identifier
Gets the identifier attribute
Declaration
public readonly IAttribute Identifier { get; }
Property Value
|
Edit this page
View Source
Scope
Gets the scope in which the identifier is valid
Declaration
public readonly IdentifierScope Scope { get; }
Property Value
Methods
|
Edit this page
View Source
Equals(ScopedIdentifier)
Declaration
public bool Equals(ScopedIdentifier other)
Parameters
Returns
|
Edit this page
View Source
Equals(object)
Declaration
public override bool Equals(object obj)
Parameters
Type |
Name |
Description |
object |
obj |
|
Returns
Overrides
|
Edit this page
View Source
GetHashCode()
Declaration
public override readonly int GetHashCode()
Returns
Overrides
Operators
|
Edit this page
View Source
operator ==(ScopedIdentifier, ScopedIdentifier)
Declaration
public static bool operator ==(ScopedIdentifier obj1, ScopedIdentifier obj2)
Parameters
Returns
|
Edit this page
View Source
operator !=(ScopedIdentifier, ScopedIdentifier)
Declaration
public static bool operator !=(ScopedIdentifier obj1, ScopedIdentifier obj2)
Parameters
Returns
Implements