Base:
method
Translate
System.Security.Principal.IdentityReference.Translate(System.Type)
10 references to Translate
mscorlib (3)
system\security\accesscontrol\objectsecurity.cs (2)
368return _securityDescriptor.Owner.Translate( targetType ); 412return _securityDescriptor.Group.Translate( targetType );
system\security\principal\windowsidentity.cs (1)
509NTAccount ntAccount = this.User.Translate(typeof(NTAccount)) as NTAccount;
System.ServiceModel (1)
System\ServiceModel\Security\Tokens\WindowsSidIdentity.cs (1)
61this.name = ((NTAccount)this.sid.Translate(typeof(NTAccount))).Value;
System.ServiceModel.Activities (1)
System\ServiceModel\Activities\Description\WorkflowInstanceManagementBehavior.cs (1)
124NTAccount account = (NTAccount)identifier.Translate(typeof(NTAccount));
System.Workflow.Activities (3)
Executors\WorkflowWebService.cs (1)
185securityIdentifier = windowsIdentity.User.Translate(typeof(NTAccount)).ToString();
LocalService\WorkflowMessageEventHandler.cs (1)
123securityIdentifier = windowsIdentity.User.Translate(typeof(NTAccount)).ToString();
Role\ADRole.cs (1)
246identityRefs.Add(entrySid.Translate(typeof(NTAccount)).ToString());
System.Workflow.Runtime (1)
DebugEngine\DebugController.cs (1)
345IdentityReference idRef = si.Translate(typeof(NTAccount));
WsatUI (1)
MMCUI\WsatSecurityModel.cs (1)
138allowed.Add(sid.Translate(typeof(NTAccount)).Value);