36 references to Outbound
System.DirectoryServices (34)
System\DirectoryServices\ActiveDirectory\Domain.cs (14)
611TrustHelper.VerifyTrust(context, Name, targetDomainName, false/*not forest*/, TrustDirection.Outbound, false/*just TC verification*/, null /* no need to go to specific server*/); 625if ((direction & TrustDirection.Outbound) != 0) 629TrustHelper.VerifyTrust(context, Name, targetDomain.Name, false/*not forest*/, TrustDirection.Outbound, false/*just TC verification*/, null /* no need to go to specific server*/); 642TrustHelper.VerifyTrust(targetDomain.GetDirectoryContext(), targetDomain.Name, Name, false/*not forest*/, TrustDirection.Outbound, false/*just TC verification*/, null /* no need to go to specific server*/); 696reverseDirection |= (int)TrustDirection.Outbound; 697if ((direction & TrustDirection.Outbound) != 0) 762reverseDirection |= TrustDirection.Outbound; 763if ((newTrustDirection & TrustDirection.Outbound) != 0) 784if ((direction & TrustDirection.Outbound) != 0) 786TrustHelper.VerifyTrust(context, Name, targetDomain.Name, false /*not forest*/, TrustDirection.Outbound, true /*reset secure channel*/, null /* no need to go to specific server*/); 792TrustHelper.VerifyTrust(targetDomain.GetDirectoryContext(), targetDomain.Name, Name, false /*not forest*/, TrustDirection.Outbound, true/*reset secure channel*/, null /* no need to go to specific server*/); 1443if ((direction & TrustDirection.Outbound) != 0) 1447TrustHelper.VerifyTrust(context, Name, targetDomain.Name, false /*not forest*/, TrustDirection.Outbound, true /*reset secure channel*/, targetServerName /* need to specify which target server */); 1460TrustHelper.VerifyTrust(targetDomain.GetDirectoryContext(), targetDomain.Name, Name, false /*not forest*/, TrustDirection.Outbound, true/*reset secure channel*/, sourceServerName /* need to specify which target server */);
System\DirectoryServices\ActiveDirectory\Forest.cs (14)
423TrustHelper.VerifyTrust(_context, Name, targetForestName, true/*forest*/, TrustDirection.Outbound, false /*just TC verification*/, null /* no need to go to specific server*/); 437if ((direction & TrustDirection.Outbound) != 0) 441TrustHelper.VerifyTrust(_context, Name, targetForest.Name, true/*forest*/, TrustDirection.Outbound, false/*just TC verification*/, null /* no need to go to specific server*/); 454TrustHelper.VerifyTrust(targetForest.GetDirectoryContext(), targetForest.Name, Name, true/*forest*/, TrustDirection.Outbound, false/*just TC verification*/, null /* no need to go to specific server*/); 508reverseDirection |= (int)TrustDirection.Outbound; 509if ((direction & TrustDirection.Outbound) != 0) 574reverseDirection |= TrustDirection.Outbound; 575if ((newTrustDirection & TrustDirection.Outbound) != 0) 595if ((direction & TrustDirection.Outbound) != 0) 597TrustHelper.VerifyTrust(_context, Name, targetForest.Name, true /*is forest*/, TrustDirection.Outbound, true/*reset secure channel*/, null /* no need to go to specific server*/); 603TrustHelper.VerifyTrust(targetForest.GetDirectoryContext(), targetForest.Name, Name, true/*is forest*/, TrustDirection.Outbound, true/*reset secure channel*/, null /* no need to go to specific server*/); 1167if ((direction & TrustDirection.Outbound) != 0) 1171TrustHelper.VerifyTrust(_context, Name, targetForest.Name, true /*is forest*/, TrustDirection.Outbound, true/*reset secure channel*/, targetServerName /* need to specify which target server */); 1184TrustHelper.VerifyTrust(targetForest.GetDirectoryContext(), targetForest.Name, Name, true/*is forest*/, TrustDirection.Outbound, true/*reset secure channel*/, sourceServerName /* need to specify which target server */);
System\DirectoryServices\ActiveDirectory\ForestTrustRelationshipInformation.cs (1)
43direction = TrustDirection.Outbound;
System\DirectoryServices\ActiveDirectory\TrustHelper.cs (3)
486if ((direction & TrustDirection.Outbound) != 0) 639if ((direction & TrustDirection.Outbound) != 0) 771if ((newTrustDirection & TrustDirection.Outbound) != 0)
System\DirectoryServices\ActiveDirectory\TrustRelationshipInformation.cs (2)
21Bidirectional = Outbound | Inbound 47direction = TrustDirection.Outbound;
System.DirectoryServices.AccountManagement (2)
System\DirectoryServices\AccountManagement\AD\ADUtils.cs (2)
465if (TrustDirection.Outbound == TRI.TrustDirection || TrustDirection.Bidirectional == TRI.TrustDirection) 483if (TrustDirection.Outbound == FTC.TrustDirection || TrustDirection.Bidirectional == FTC.TrustDirection)