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