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
- Constants.cs
- OptimalBreakSession.cs
- _RequestCacheProtocol.cs
- RouteValueDictionary.cs
- FileInfo.cs
- FontFamily.cs
- CapabilitiesRule.cs
- ActivityCodeDomSerializationManager.cs
- _ListenerAsyncResult.cs
- KeyToListMap.cs
- DataGridColumnHeaderCollection.cs
- PasswordTextContainer.cs
- parserscommon.cs
- ReachPrintTicketSerializer.cs
- DocumentApplicationJournalEntry.cs
- Image.cs
- ChannelServices.cs
- Win32KeyboardDevice.cs
- Configuration.cs
- thaishape.cs
- LookupNode.cs
- ProxyFragment.cs
- XmlSerializationGeneratedCode.cs
- HyperLinkStyle.cs
- HttpRequestMessageProperty.cs
- LinearGradientBrush.cs
- compensatingcollection.cs
- MsmqEncryptionAlgorithm.cs
- ChannelCacheDefaults.cs
- SimpleBitVector32.cs
- ColumnReorderedEventArgs.cs
- _NestedSingleAsyncResult.cs
- BindingSource.cs
- FlowDocumentView.cs
- NativeCompoundFileAPIs.cs
- SystemResourceHost.cs
- PropertyManager.cs
- BinaryObjectInfo.cs
- WebServiceBindingAttribute.cs
- ProfilePropertySettings.cs
- GroupStyle.cs
- InitializationEventAttribute.cs
- ActivityInstanceMap.cs
- DefaultTraceListener.cs
- AnimationException.cs
- Mapping.cs
- SimpleType.cs
- ZipArchive.cs
- DataGridToolTip.cs
- DataGridViewCellEventArgs.cs
- WinCategoryAttribute.cs
- FormatException.cs
- CompiledRegexRunnerFactory.cs
- BindingExpression.cs
- CapiSafeHandles.cs
- PerformanceCountersElement.cs
- HostVisual.cs
- CorruptingExceptionCommon.cs
- SourceLineInfo.cs
- HttpProfileBase.cs
- QilCloneVisitor.cs
- OracleFactory.cs
- UnauthorizedWebPart.cs
- RegexStringValidatorAttribute.cs
- SrgsElementList.cs
- RIPEMD160Managed.cs
- ControlPaint.cs
- ProcessModule.cs
- BitSet.cs
- ProfilePropertySettings.cs
- SecurityKeyType.cs
- UnhandledExceptionEventArgs.cs
- XPathDocumentIterator.cs
- DataGridBoolColumn.cs
- XsdValidatingReader.cs
- QuaternionConverter.cs
- CroppedBitmap.cs
- DataGridViewCellConverter.cs
- SchemaMerger.cs
- CachingHintValidation.cs
- ImageCodecInfoPrivate.cs
- GridViewPageEventArgs.cs
- ButtonStandardAdapter.cs
- ReferenceService.cs
- Int32Animation.cs
- XsltArgumentList.cs
- ConfigXmlSignificantWhitespace.cs
- AttributeQuery.cs
- Attributes.cs
- JoinGraph.cs
- ServiceModelConfigurationElementCollection.cs
- RectangleGeometry.cs
- SqlExpressionNullability.cs
- DataGridViewCellErrorTextNeededEventArgs.cs
- StandardTransformFactory.cs
- SQLUtility.cs
- AssemblyBuilderData.cs
- SynthesizerStateChangedEventArgs.cs
- DoWorkEventArgs.cs
- DbReferenceCollection.cs