19 references to Purpose
System.Web (19)
Security\Cryptography\MachineKeyDataProtectorFactory.cs (1)
16private static readonly Purpose _creationTestingPurpose = new Purpose("test-1", "test-2", "test-3");
Security\Cryptography\MachineKeyMasterKeyProvider.cs (1)
145Purpose purpose = new Purpose(AUTOGEN_KEYDERIVATION_PRIMARYPURPOSE, specificPurposes.ToArray());
Security\Cryptography\Purpose.cs (17)
32public static readonly Purpose AnonymousIdentificationModule_Ticket = new Purpose("AnonymousIdentificationModule.Ticket"); 33public static readonly Purpose AssemblyResourceLoader_WebResourceUrl = new Purpose("AssemblyResourceLoader.WebResourceUrl"); 34public static readonly Purpose FormsAuthentication_Ticket = new Purpose("FormsAuthentication.Ticket"); 35public static readonly Purpose WebForms_Page_PreviousPageID = new Purpose("WebForms.Page.PreviousPageID"); 36public static readonly Purpose RolePrincipal_Ticket = new Purpose("RolePrincipal.Ticket"); 37public static readonly Purpose ScriptResourceHandler_ScriptResourceUrl = new Purpose("ScriptResourceHandler.ScriptResourceUrl"); 40public static readonly Purpose WebForms_ClientScriptManager_EventValidation = new Purpose("WebForms.ClientScriptManager.EventValidation"); 41public static readonly Purpose WebForms_DetailsView_KeyTable = new Purpose("WebForms.DetailsView.KeyTable"); 42public static readonly Purpose WebForms_GridView_DataKeys = new Purpose("WebForms.GridView.DataKeys"); 43public static readonly Purpose WebForms_GridView_SortExpression = new Purpose("WebForms.GridView.SortExpression"); 44public static readonly Purpose WebForms_HiddenFieldPageStatePersister_ClientState = new Purpose("WebForms.HiddenFieldPageStatePersister.ClientState"); 45public static readonly Purpose WebForms_ScriptManager_HistoryState = new Purpose("WebForms.ScriptManager.HistoryState"); 46public static readonly Purpose WebForms_SessionPageStatePersister_ClientState = new Purpose("WebForms.SessionPageStatePersister.ClientState"); 49public static readonly Purpose User_MachineKey_Protect = new Purpose("User.MachineKey.Protect"); // used by the MachineKey static class Protect / Unprotect methods 50public static readonly Purpose User_ObjectStateFormatter_Serialize = new Purpose("User.ObjectStateFormatter.Serialize"); // used by ObjectStateFormatter.Serialize() if called manually 90return new Purpose(PrimaryPurpose, newSpecificPurposes); 105return new Purpose(PrimaryPurpose, newSpecificPurposes);