View Source
Class HashCodeCombiner
Used to create a .NET HashCode from multiple objects.
Assembly: Umbraco.Core.dll
Syntax
public class HashCodeCombiner
Methods
View Source
AddCaseInsensitiveString(string)
Declaration
public void AddCaseInsensitiveString(string s)
Parameters
| Type |
Name |
Description |
| string |
s |
|
View Source
AddDateTime(DateTime)
Declaration
public void AddDateTime(DateTime d)
Parameters
| Type |
Name |
Description |
| DateTime |
d |
|
View Source
AddFile(FileInfo)
Declaration
public void AddFile(FileInfo f)
Parameters
| Type |
Name |
Description |
| FileInfo |
f |
|
View Source
AddFileSystemItem(FileSystemInfo)
Declaration
public void AddFileSystemItem(FileSystemInfo f)
Parameters
| Type |
Name |
Description |
| FileSystemInfo |
f |
|
View Source
AddFolder(DirectoryInfo)
Declaration
public void AddFolder(DirectoryInfo d)
Parameters
| Type |
Name |
Description |
| DirectoryInfo |
d |
|
View Source
AddInt(int)
Declaration
public void AddInt(int i)
Parameters
| Type |
Name |
Description |
| int |
i |
|
View Source
AddObject(object)
Declaration
public void AddObject(object o)
Parameters
| Type |
Name |
Description |
| object |
o |
|
View Source
AddString(string)
Declaration
public void AddString(string s)
Parameters
| Type |
Name |
Description |
| string |
s |
|
View Source
GetCombinedHashCode()
Returns the hex code of the combined hash code
Declaration
public string GetCombinedHashCode()
Returns