asked on December 16, 2014
Below is the old LFSO code. I am trying to duplicate this with RA. I can not find a similar property to TrustedDomainAccounts. Also, I'm assuming I should use the AccountReferenceCollection object to hold the trusted accounts?
trusteeNames = new List<string>();
ILFGrantedDomainAccountCollection TrustedAccounts = null;
TrustedAccounts = (ILFGrantedDomainAccountCollection)this._lfDatabase.TrustedDomainAccounts;
foreach (ILFTrustee trustee in TrustedAccounts)
{
trusteeNames.Add(trustee.Name);
}
0
0