Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / clr / src / BCL / System / Security / HostProtectionException.cs / 1 / HostProtectionException.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================================== ** ** Class: HostProtectionException ** ** Purpose: Exception class for HostProtection ** ** =============================================================================*/ namespace System.Security { using System.Security; using System; using System.Runtime.Serialization; using System.Security.Permissions; using System.Reflection; using System.Text; [System.Runtime.InteropServices.ComVisible(true)] [Serializable] public class HostProtectionException : SystemException { private HostProtectionResource m_protected; private HostProtectionResource m_demanded; private const String ProtectedResourcesName = "ProtectedResources"; private const String DemandedResourcesName = "DemandedResources"; public HostProtectionException() : base() { m_protected = HostProtectionResource.None; m_demanded = HostProtectionResource.None; } public HostProtectionException(string message) : base(message) { m_protected = HostProtectionResource.None; m_demanded = HostProtectionResource.None; } public HostProtectionException(string message, Exception e) : base(message, e) { m_protected = HostProtectionResource.None; m_demanded = HostProtectionResource.None; } protected HostProtectionException(SerializationInfo info, StreamingContext context) : base(info, context) { if (info==null) throw new ArgumentNullException("info"); m_protected = (HostProtectionResource)info.GetValue(ProtectedResourcesName, typeof(HostProtectionResource)); m_demanded = (HostProtectionResource)info.GetValue(DemandedResourcesName, typeof(HostProtectionResource)); } public HostProtectionException(string message, HostProtectionResource protectedResources, HostProtectionResource demandedResources) : base(message) { SetErrorCode(__HResults.COR_E_HOSTPROTECTION); m_protected = protectedResources; m_demanded = demandedResources; } // Called from the VM to create a HP Exception private HostProtectionException(HostProtectionResource protectedResources, HostProtectionResource demandedResources) : base(SecurityException.GetResString("HostProtection_HostProtection")) { SetErrorCode(__HResults.COR_E_HOSTPROTECTION); m_protected = protectedResources; m_demanded = demandedResources; } public HostProtectionResource ProtectedResources { get { return m_protected; } } public HostProtectionResource DemandedResources { get { return m_demanded; } } private String ToStringHelper(String resourceString, Object attr) { if (attr == null) return ""; StringBuilder sb = new StringBuilder(); sb.Append(Environment.NewLine); sb.Append(Environment.NewLine); sb.Append(Environment.GetResourceString( resourceString )); sb.Append(Environment.NewLine); sb.Append(attr); return sb.ToString(); } public override String ToString() { StringBuilder sb = new StringBuilder(); sb.Append(base.ToString()); sb.Append(ToStringHelper("HostProtection_ProtectedResources", ProtectedResources)); sb.Append(ToStringHelper("HostProtection_DemandedResources", DemandedResources)); return sb.ToString(); } [SecurityPermissionAttribute(SecurityAction.LinkDemand, Flags=SecurityPermissionFlag.SerializationFormatter)] public override void GetObjectData(SerializationInfo info, StreamingContext context) { if (info==null) throw new ArgumentNullException("info"); base.GetObjectData( info, context ); info.AddValue(ProtectedResourcesName, ProtectedResources, typeof(HostProtectionResource)); info.AddValue(DemandedResourcesName, DemandedResources, typeof(HostProtectionResource)); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================================== ** ** Class: HostProtectionException ** ** Purpose: Exception class for HostProtection ** ** =============================================================================*/ namespace System.Security { using System.Security; using System; using System.Runtime.Serialization; using System.Security.Permissions; using System.Reflection; using System.Text; [System.Runtime.InteropServices.ComVisible(true)] [Serializable] public class HostProtectionException : SystemException { private HostProtectionResource m_protected; private HostProtectionResource m_demanded; private const String ProtectedResourcesName = "ProtectedResources"; private const String DemandedResourcesName = "DemandedResources"; public HostProtectionException() : base() { m_protected = HostProtectionResource.None; m_demanded = HostProtectionResource.None; } public HostProtectionException(string message) : base(message) { m_protected = HostProtectionResource.None; m_demanded = HostProtectionResource.None; } public HostProtectionException(string message, Exception e) : base(message, e) { m_protected = HostProtectionResource.None; m_demanded = HostProtectionResource.None; } protected HostProtectionException(SerializationInfo info, StreamingContext context) : base(info, context) { if (info==null) throw new ArgumentNullException("info"); m_protected = (HostProtectionResource)info.GetValue(ProtectedResourcesName, typeof(HostProtectionResource)); m_demanded = (HostProtectionResource)info.GetValue(DemandedResourcesName, typeof(HostProtectionResource)); } public HostProtectionException(string message, HostProtectionResource protectedResources, HostProtectionResource demandedResources) : base(message) { SetErrorCode(__HResults.COR_E_HOSTPROTECTION); m_protected = protectedResources; m_demanded = demandedResources; } // Called from the VM to create a HP Exception private HostProtectionException(HostProtectionResource protectedResources, HostProtectionResource demandedResources) : base(SecurityException.GetResString("HostProtection_HostProtection")) { SetErrorCode(__HResults.COR_E_HOSTPROTECTION); m_protected = protectedResources; m_demanded = demandedResources; } public HostProtectionResource ProtectedResources { get { return m_protected; } } public HostProtectionResource DemandedResources { get { return m_demanded; } } private String ToStringHelper(String resourceString, Object attr) { if (attr == null) return ""; StringBuilder sb = new StringBuilder(); sb.Append(Environment.NewLine); sb.Append(Environment.NewLine); sb.Append(Environment.GetResourceString( resourceString )); sb.Append(Environment.NewLine); sb.Append(attr); return sb.ToString(); } public override String ToString() { StringBuilder sb = new StringBuilder(); sb.Append(base.ToString()); sb.Append(ToStringHelper("HostProtection_ProtectedResources", ProtectedResources)); sb.Append(ToStringHelper("HostProtection_DemandedResources", DemandedResources)); return sb.ToString(); } [SecurityPermissionAttribute(SecurityAction.LinkDemand, Flags=SecurityPermissionFlag.SerializationFormatter)] public override void GetObjectData(SerializationInfo info, StreamingContext context) { if (info==null) throw new ArgumentNullException("info"); base.GetObjectData( info, context ); info.AddValue(ProtectedResourcesName, ProtectedResources, typeof(HostProtectionResource)); info.AddValue(DemandedResourcesName, DemandedResources, typeof(HostProtectionResource)); } } } // 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
- QilInvokeLateBound.cs
- EventTrigger.cs
- _NtlmClient.cs
- IPEndPoint.cs
- FileDialogCustomPlacesCollection.cs
- PageTheme.cs
- XMLUtil.cs
- ScrollChrome.cs
- ToolBarOverflowPanel.cs
- SHA512.cs
- LockedHandleGlyph.cs
- Debug.cs
- SessionEndingEventArgs.cs
- LogRecordSequence.cs
- ErrorFormatterPage.cs
- WindowsIdentity.cs
- WebBrowserNavigatedEventHandler.cs
- Point4D.cs
- SymbolMethod.cs
- ReadWriteObjectLock.cs
- CodeParameterDeclarationExpression.cs
- ArrayTypeMismatchException.cs
- CatalogZone.cs
- DrawingContextWalker.cs
- EdmRelationshipRoleAttribute.cs
- CurrentChangedEventManager.cs
- LocalValueEnumerator.cs
- AccessKeyManager.cs
- DbProviderFactoriesConfigurationHandler.cs
- WindowsIdentity.cs
- AttachmentService.cs
- PerSessionInstanceContextProvider.cs
- EpmCustomContentSerializer.cs
- StrokeRenderer.cs
- ViewBox.cs
- DeploymentExceptionMapper.cs
- WrappingXamlSchemaContext.cs
- WindowsListViewGroupHelper.cs
- AbstractExpressions.cs
- RelationshipDetailsRow.cs
- Baml2006ReaderFrame.cs
- TableLayoutStyleCollection.cs
- XmlMembersMapping.cs
- HttpSocketManager.cs
- TextSelectionHighlightLayer.cs
- EditorPartCollection.cs
- OleDbCommand.cs
- LazyInitializer.cs
- HostExecutionContextManager.cs
- UndirectedGraph.cs
- TimeStampChecker.cs
- MenuItem.cs
- BitStream.cs
- VisualTarget.cs
- SrgsRuleRef.cs
- TimestampInformation.cs
- BamlCollectionHolder.cs
- RouteItem.cs
- BatchWriter.cs
- HttpStaticObjectsCollectionBase.cs
- base64Transforms.cs
- OleDbInfoMessageEvent.cs
- DirectoryObjectSecurity.cs
- ManualResetEvent.cs
- DirectoryNotFoundException.cs
- HostSecurityManager.cs
- Certificate.cs
- SqlTrackingWorkflowInstance.cs
- FixedFindEngine.cs
- UInt32Converter.cs
- TableLayoutStyle.cs
- XmlWrappingReader.cs
- ModelItemImpl.cs
- TdsParser.cs
- TreeNodeCollection.cs
- BindingBase.cs
- CapabilitiesSection.cs
- Internal.cs
- HttpCookie.cs
- XmlNodeChangedEventArgs.cs
- LocationSectionRecord.cs
- MatrixConverter.cs
- StringConverter.cs
- ProgressBar.cs
- TimeSpanSecondsConverter.cs
- DesignerAutoFormatCollection.cs
- JavaScriptObjectDeserializer.cs
- CompositeControl.cs
- TypeBuilderInstantiation.cs
- CachedTypeface.cs
- Point4DConverter.cs
- FixedSOMPageConstructor.cs
- PageSettings.cs
- RenderCapability.cs
- GPPOINTF.cs
- BorderSidesEditor.cs
- UndirectedGraph.cs
- CalendarDay.cs
- SetStoryboardSpeedRatio.cs
- ObjectView.cs