Skip to content

Commit

Permalink
Rename GetDomainDcAsync to GetDomainAsync.
Browse files Browse the repository at this point in the history
  • Loading branch information
maliming committed Jan 3, 2022
1 parent 63b6dbd commit dc37dfa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public interface ILdapSettingProvider

public Task<string> GetBaseDcAsync();

public Task<string> GetDomainDcAsync();
public Task<string> GetDomainAsync();

public Task<string> GetUserNameAsync();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public async Task<string> GetBaseDcAsync()
return await SettingProvider.GetOrNullAsync(LdapSettingNames.BaseDc);
}

public async Task<string> GetDomainDcAsync()
public async Task<string> GetDomainAsync()
{
return await SettingProvider.GetOrNullAsync(LdapSettingNames.Domain);
}
Expand Down

0 comments on commit dc37dfa

Please sign in to comment.