30 references to TD
System.IdentityModel (30)
System\IdentityModel\Selectors\SecurityTokenAuthenticator.cs (6)
42if (TD.TokenValidationStartedIsEnabled()) 46TD.TokenValidationStarted(eventTraceActivity, tokenType, token.Id); 53if (TD.TokenValidationFailureIsEnabled()) 57TD.TokenValidationFailure(eventTraceActivity, tokenType, token.Id, errorMsg); 63if (TD.TokenValidationSuccessIsEnabled()) 67TD.TokenValidationSuccess(eventTraceActivity, tokenType, token.Id);
System\IdentityModel\Tokens\ConfigurationBasedIssuerNameRegistry.cs (4)
147if (TD.GetIssuerNameSuccessIsEnabled()) 149TD.GetIssuerNameSuccess(EventTraceActivity.GetFromThreadOrCreate(), issuerName, securityToken.Id); 156if (TD.GetIssuerNameFailureIsEnabled()) 158TD.GetIssuerNameFailure(EventTraceActivity.GetFromThreadOrCreate(), securityToken.Id);
System\IdentityModel\Tokens\SecurityTokenHandler.cs (4)
292if (TD.TokenValidationSuccessIsEnabled()) 294TD.TokenValidationSuccess(this.EventTraceActivity, token.GetType().ToString(), token.Id); 300if (TD.TokenValidationFailureIsEnabled()) 302TD.TokenValidationFailure(this.EventTraceActivity, token.GetType().ToString(), token.Id, errorMessage);
TD.Designer.cs (16)
43resourceManager = new System.Resources.ResourceManager("System.IdentityModel.Diagnostics.Application.TD", typeof(TD).Assembly); 68return (FxTrace.ShouldTraceError && TD.IsEtwEventEnabled(0)); 80if (TD.IsEtwEventEnabled(0)) 82TD.WriteEtwEvent(0, eventTraceActivity, tokenID, payload.HostReference, payload.AppDomainFriendlyName); 92return (FxTrace.ShouldTraceVerbose && TD.IsEtwEventEnabled(1)); 105if (TD.IsEtwEventEnabled(1)) 107TD.WriteEtwEvent(1, eventTraceActivity, issuerName, tokenID, payload.HostReference, payload.AppDomainFriendlyName); 117return (FxTrace.ShouldTraceError && TD.IsEtwEventEnabled(2)); 131if (TD.IsEtwEventEnabled(2)) 133TD.WriteEtwEvent(2, eventTraceActivity, tokenType, tokenID, errorMessage, payload.HostReference, payload.AppDomainFriendlyName); 143return (FxTrace.ShouldTraceVerbose && TD.IsEtwEventEnabled(3)); 156if (TD.IsEtwEventEnabled(3)) 158TD.WriteEtwEvent(3, eventTraceActivity, tokenType, tokenID, payload.HostReference, payload.AppDomainFriendlyName); 168return (FxTrace.ShouldTraceVerbose && TD.IsEtwEventEnabled(4)); 181if (TD.IsEtwEventEnabled(4)) 183TD.WriteEtwEvent(4, eventTraceActivity, tokenType, tokenID, payload.HostReference, payload.AppDomainFriendlyName);