Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / clr / src / BCL / System / Security / Policy / IApplicationTrustManager.cs / 1 / 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; } } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SerializationStore.cs
- FontEditor.cs
- loginstatus.cs
- ToolTipAutomationPeer.cs
- OleDbParameter.cs
- _NegotiateClient.cs
- ManageRequest.cs
- CqlGenerator.cs
- DbConnectionStringCommon.cs
- PriorityQueue.cs
- EntityDescriptor.cs
- PropertyAccessVisitor.cs
- DataFormat.cs
- SqlNodeAnnotations.cs
- DataSourceView.cs
- NameValuePermission.cs
- BufferedReadStream.cs
- RegexRunner.cs
- LogicalTreeHelper.cs
- EdmItemError.cs
- MetadataArtifactLoaderResource.cs
- AdCreatedEventArgs.cs
- LocalTransaction.cs
- DragStartedEventArgs.cs
- SyndicationItem.cs
- DbParameterCollection.cs
- RestrictedTransactionalPackage.cs
- RowParagraph.cs
- ContextInformation.cs
- VisualBrush.cs
- XmlIlTypeHelper.cs
- ValidatingReaderNodeData.cs
- TextLineResult.cs
- BamlResourceSerializer.cs
- OpCopier.cs
- DocumentApplicationDocumentViewer.cs
- XamlTypeMapper.cs
- RegisteredDisposeScript.cs
- coordinatorscratchpad.cs
- ZoneIdentityPermission.cs
- SoapHeader.cs
- HostingPreferredMapPath.cs
- MissingSatelliteAssemblyException.cs
- XNameConverter.cs
- TextBox.cs
- UnauthorizedWebPart.cs
- DataGridViewRowConverter.cs
- SchemaImporter.cs
- PinnedBufferMemoryStream.cs
- AuthStoreRoleProvider.cs
- WindowsListViewGroupHelper.cs
- ContentValidator.cs
- EventMappingSettingsCollection.cs
- FilterElement.cs
- TextViewDesigner.cs
- PeerNode.cs
- ListBoxItem.cs
- ObjectNavigationPropertyMapping.cs
- AnnotationDocumentPaginator.cs
- ExtendedTransformFactory.cs
- SpellerInterop.cs
- EncryptedPackage.cs
- RequestBringIntoViewEventArgs.cs
- SignedXml.cs
- DurableOperationContext.cs
- DataGridComponentEditor.cs
- IISMapPath.cs
- MenuDesigner.cs
- DateTimeUtil.cs
- ValueSerializer.cs
- LifetimeServices.cs
- DataGridViewCellPaintingEventArgs.cs
- FontUnitConverter.cs
- OutputScopeManager.cs
- PerformanceCounter.cs
- DesignerTransaction.cs
- Bidi.cs
- ReliableChannelListener.cs
- BinaryCommonClasses.cs
- ZipIOBlockManager.cs
- DataServiceStreamResponse.cs
- ElementFactory.cs
- XmlSchemaAttributeGroupRef.cs
- Label.cs
- FixedSOMTableRow.cs
- NominalTypeEliminator.cs
- WebControlParameterProxy.cs
- InputReportEventArgs.cs
- TextContainerChangeEventArgs.cs
- Stack.cs
- DataError.cs
- ContextMenuStripGroup.cs
- DataView.cs
- SqlErrorCollection.cs
- DesigntimeLicenseContextSerializer.cs
- ListControl.cs
- CodeGotoStatement.cs
- FastPropertyAccessor.cs
- RequestContextBase.cs
- Encoding.cs