Class VersionedName
A name with a semantic version.
Inheritance
VersionedName
Assembly: PeerTalk.dll
Syntax
public class VersionedName : IEquatable<VersionedName>, IComparable<VersionedName>
Properties
|
Improve this Doc
View Source
Name
Declaration
public string Name { get; set; }
Property Value
|
Improve this Doc
View Source
Version
Declaration
public SemVersion Version { get; set; }
Property Value
Type |
Description |
Semver.SemVersion |
|
Methods
|
Improve this Doc
View Source
CompareTo(VersionedName)
Declaration
public int CompareTo(VersionedName that)
Parameters
Returns
|
Improve this Doc
View Source
Equals(VersionedName)
Declaration
public bool Equals(VersionedName that)
Parameters
Returns
|
Improve this Doc
View Source
Equals(Object)
Declaration
public override bool Equals(object obj)
Parameters
Type |
Name |
Description |
Object |
obj |
|
Returns
Overrides
|
Improve this Doc
View Source
GetHashCode()
Declaration
public override int GetHashCode()
Returns
Overrides
|
Improve this Doc
View Source
Parse(String)
Declaration
public static VersionedName Parse(string s)
Parameters
Type |
Name |
Description |
String |
s |
|
Returns
|
Improve this Doc
View Source
ToString()
Declaration
public override string ToString()
Returns
Overrides
Operators
|
Improve this Doc
View Source
Equality(VersionedName, VersionedName)
Declaration
public static bool operator ==(VersionedName a, VersionedName b)
Parameters
Returns
|
Improve this Doc
View Source
Inequality(VersionedName, VersionedName)
Declaration
public static bool operator !=(VersionedName a, VersionedName b)
Parameters
Returns
Implements