Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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
- ConfigXmlComment.cs
- StylusCollection.cs
- StylusPlugInCollection.cs
- listviewsubitemcollectioneditor.cs
- WbemProvider.cs
- DataKey.cs
- SoapIgnoreAttribute.cs
- DataGridViewCellErrorTextNeededEventArgs.cs
- StreamedFramingRequestChannel.cs
- WebPartDisplayModeCollection.cs
- ControlCachePolicy.cs
- GPStream.cs
- BindingValueChangedEventArgs.cs
- ParameterSubsegment.cs
- Vertex.cs
- FormattedTextSymbols.cs
- DelimitedListTraceListener.cs
- Cursor.cs
- HtmlElementEventArgs.cs
- ProvideValueServiceProvider.cs
- CheckBox.cs
- PointAnimation.cs
- CatalogPartChrome.cs
- MatrixIndependentAnimationStorage.cs
- HttpListenerContext.cs
- PathFigureCollection.cs
- BufferedGenericXmlSecurityToken.cs
- MouseButtonEventArgs.cs
- RelationshipManager.cs
- BlurBitmapEffect.cs
- IisHelper.cs
- DesignerActionService.cs
- BuildProvidersCompiler.cs
- AutomationAttributeInfo.cs
- BamlVersionHeader.cs
- BuildProvider.cs
- UIAgentInitializationException.cs
- ToggleProviderWrapper.cs
- SimpleWebHandlerParser.cs
- ToolStripDropDownMenu.cs
- regiisutil.cs
- ResourceDisplayNameAttribute.cs
- FieldNameLookup.cs
- URLString.cs
- ExpandCollapseProviderWrapper.cs
- ConstraintEnumerator.cs
- DataGridViewBindingCompleteEventArgs.cs
- NewArrayExpression.cs
- StaticDataManager.cs
- Variable.cs
- XhtmlTextWriter.cs
- OdbcParameter.cs
- ConfigurationSectionCollection.cs
- ResumeStoryboard.cs
- HtmlTableCell.cs
- ToolStripDropDownClosingEventArgs.cs
- ProfileModule.cs
- Roles.cs
- MenuTracker.cs
- DataGridCommandEventArgs.cs
- ResourceReferenceExpression.cs
- Win32Exception.cs
- RightsManagementPermission.cs
- PagedControl.cs
- PingOptions.cs
- AccessViolationException.cs
- WebPageTraceListener.cs
- WebUtil.cs
- FormClosedEvent.cs
- GPRECT.cs
- UpdatePanel.cs
- StringUtil.cs
- PassportAuthenticationEventArgs.cs
- DeferredElementTreeState.cs
- Win32.cs
- Timer.cs
- ColorAnimation.cs
- ConsoleTraceListener.cs
- FileDetails.cs
- GradientSpreadMethodValidation.cs
- Util.cs
- InstanceCreationEditor.cs
- dataobject.cs
- DataControlLinkButton.cs
- DataKey.cs
- TypedElement.cs
- DependentList.cs
- CodeCompiler.cs
- FixUpCollection.cs
- MimeImporter.cs
- AggregateNode.cs
- ApplicationActivator.cs
- ColumnTypeConverter.cs
- XPathConvert.cs
- SetStateDesigner.cs
- ProjectionCamera.cs
- PaintEvent.cs
- Timer.cs
- WebPartUserCapability.cs
- SevenBitStream.cs