コード例 #1
0
 /// <summary>
 /// Gets the Stored user information.
 /// </summary>
 /// <param name="UserHash">User Hash to look up.</param>
 /// <returns>A StoredUser of the user.</returns>
 public StoredUser GetStoredUser(string UserHash)
 {
     return(StoredUserRetriever.Instance(MethodOfRetrieval, CO).GetStoredUser(UserHash));
 }
コード例 #2
0
 /// <summary>
 /// Checks to see if the UserName Matches the Username of the file.
 /// </summary>
 /// <param name="UserHash">Hash User Name to Look up.</param>
 /// <returns>True if in the json file.</returns>
 public bool HasData(string UserHash)
 {
     return(StoredUserRetriever.Instance(this.MethodOfRetrieval, CO).HasStoredUser(UserHash));
 }