Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / clr / src / BCL / System / Security / Policy / IApplicationTrustManager.cs / 1305376 / IApplicationTrustManager.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== //[....] // // // IApplicationTrustManager.cs // namespace System.Security.Policy { // // Interface that defines an IApplicationTrustManager. An IApplicationTrustManager handles application security decisions // when there is no stored policy for that app, be this by prompting the user, checking a web service, or other means. // [System.Runtime.InteropServices.ComVisible(true)] public interface IApplicationTrustManager : ISecurityEncodable { ApplicationTrust DetermineApplicationTrust (ActivationContext activationContext, TrustManagerContext context); } // // This enumeration provides a hint to the trust manager as to the UI it should provide for the trust decision. // [System.Runtime.InteropServices.ComVisible(true)] public enum TrustManagerUIContext { Install, Upgrade, Run } // // The TrustManagerContext class represents context that the host would like the Trust Manager to consider when making // a run/no-run decision and when setting up the security on a new AppDomain in which to run an application. // This class can be extended by trust managers so it is non-sealed. // [System.Runtime.InteropServices.ComVisible(true)] public class TrustManagerContext { private bool m_ignorePersistedDecision; private TrustManagerUIContext m_uiContext; private bool m_noPrompt; private bool m_keepAlive; private bool m_persist; private ApplicationIdentity m_appId; public TrustManagerContext () : this (TrustManagerUIContext.Run) {} public TrustManagerContext (TrustManagerUIContext uiContext) { m_ignorePersistedDecision = false; m_uiContext = uiContext; m_keepAlive = false; m_persist = true; } public virtual TrustManagerUIContext UIContext { get { return m_uiContext; } set { m_uiContext = value; } } public virtual bool NoPrompt { get { return m_noPrompt; } set { m_noPrompt = value; } } public virtual bool IgnorePersistedDecision { get { return m_ignorePersistedDecision; } set { m_ignorePersistedDecision = value; } } public virtual bool KeepAlive { get { return m_keepAlive; } set { m_keepAlive = value; } } public virtual bool Persist { get { return m_persist; } set { m_persist = value; } } public virtual ApplicationIdentity PreviousApplicationIdentity { get { return m_appId; } set { m_appId = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- StyleSelector.cs
- Walker.cs
- StylusPointPropertyId.cs
- SchemaManager.cs
- TextTreeUndo.cs
- TableLayoutSettings.cs
- GeneralTransform.cs
- ConfigXmlComment.cs
- ReadOnlyDataSourceView.cs
- NumberAction.cs
- NameTable.cs
- EdmRelationshipNavigationPropertyAttribute.cs
- SmiEventSink_Default.cs
- QilNode.cs
- ToolStripDropDownItemDesigner.cs
- PointAnimation.cs
- TextModifierScope.cs
- ActivityBuilderXamlWriter.cs
- AlternationConverter.cs
- DataGridViewRowsRemovedEventArgs.cs
- VersionPair.cs
- Helper.cs
- TypographyProperties.cs
- ComponentResourceKeyConverter.cs
- Keyboard.cs
- SqlParameterCollection.cs
- DataGridViewCellStyleConverter.cs
- CheckBox.cs
- WSHttpSecurityElement.cs
- DataGrid.cs
- SHA384CryptoServiceProvider.cs
- RemotingConfiguration.cs
- ToolStripProfessionalLowResolutionRenderer.cs
- ClipboardData.cs
- HMACMD5.cs
- XmlCDATASection.cs
- EnumUnknown.cs
- InputProcessorProfilesLoader.cs
- HexParser.cs
- CookielessHelper.cs
- InfoCardRSAOAEPKeyExchangeFormatter.cs
- Switch.cs
- DbConnectionHelper.cs
- DataBindingHandlerAttribute.cs
- MouseEventArgs.cs
- connectionpool.cs
- OptimalTextSource.cs
- OutputCacheSection.cs
- TemplateXamlParser.cs
- GenericEnumerator.cs
- ResXResourceReader.cs
- TransformedBitmap.cs
- CodeVariableReferenceExpression.cs
- ObjectAnimationBase.cs
- FastEncoder.cs
- GenerateDerivedKeyRequest.cs
- QueryExpr.cs
- MDIClient.cs
- OdbcConnectionHandle.cs
- BamlRecordHelper.cs
- XmlDataSourceNodeDescriptor.cs
- ArcSegment.cs
- MetadataItemCollectionFactory.cs
- SplitterPanel.cs
- LocalizationParserHooks.cs
- ExternalException.cs
- EditorZoneAutoFormat.cs
- ReceiveDesigner.xaml.cs
- ImmComposition.cs
- DirectoryNotFoundException.cs
- SchemaImporterExtensionElement.cs
- CompilerLocalReference.cs
- CompilationRelaxations.cs
- CodeEntryPointMethod.cs
- Int16Converter.cs
- XmlNode.cs
- DbProviderFactoriesConfigurationHandler.cs
- MetadataWorkspace.cs
- _Rfc2616CacheValidators.cs
- ComplexType.cs
- ColorAnimationUsingKeyFrames.cs
- XmlArrayItemAttributes.cs
- MemoryPressure.cs
- IncrementalCompileAnalyzer.cs
- DataGridViewCellStyleEditor.cs
- XmlTextEncoder.cs
- CommandHelpers.cs
- SiteMapPath.cs
- SerializableAttribute.cs
- HebrewNumber.cs
- Keyboard.cs
- NetworkInformationPermission.cs
- ResXResourceSet.cs
- ButtonBaseAdapter.cs
- WinFormsUtils.cs
- QilTypeChecker.cs
- HttpListenerElement.cs
- IndicShape.cs
- EntityDataSourceChangingEventArgs.cs
- QueryStatement.cs