Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Xml / System / Xml / schema / XmlSchemaValidationException.cs / 1305376 / XmlSchemaValidationException.cs
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// [....]
//-----------------------------------------------------------------------------
namespace System.Xml.Schema {
using System;
using System.IO;
using System.Text;
using System.Resources;
using System.Runtime.Serialization;
using System.Diagnostics;
using System.Security.Permissions;
///
[Serializable]
public class XmlSchemaValidationException : XmlSchemaException {
private Object sourceNodeObject;
///
protected XmlSchemaValidationException(SerializationInfo info, StreamingContext context) : base(info, context) {}
///
[SecurityPermissionAttribute(SecurityAction.LinkDemand,SerializationFormatter=true)]
public override void GetObjectData(SerializationInfo info, StreamingContext context) {
base.GetObjectData(info, context);
}
///
public XmlSchemaValidationException() : base(null) {
}
///
public XmlSchemaValidationException(String message) : base (message, ((Exception)null), 0, 0) {
}
///
public XmlSchemaValidationException(String message, Exception innerException) : base (message, innerException, 0, 0) {
}
///
public XmlSchemaValidationException(String message, Exception innerException, int lineNumber, int linePosition) :
base(message, innerException, lineNumber, linePosition) {
}
internal XmlSchemaValidationException(string res, string[] args) : base(res, args, null, null, 0, 0, null) {
}
internal XmlSchemaValidationException(string res, string arg) : base(res, new string[] { arg }, null, null, 0, 0, null) {
}
internal XmlSchemaValidationException(string res, string arg, string sourceUri, int lineNumber, int linePosition) :
base(res, new string[] { arg }, null, sourceUri, lineNumber, linePosition, null) {
}
internal XmlSchemaValidationException(string res, string sourceUri, int lineNumber, int linePosition) :
base(res, (string[])null, null, sourceUri, lineNumber, linePosition, null) {
}
internal XmlSchemaValidationException(string res, string[] args, string sourceUri, int lineNumber, int linePosition) :
base(res, args, null, sourceUri, lineNumber, linePosition, null) {
}
internal XmlSchemaValidationException(string res, string[] args, Exception innerException, string sourceUri, int lineNumber, int linePosition) :
base(res, args, innerException, sourceUri, lineNumber, linePosition, null) {
}
internal XmlSchemaValidationException(string res, string[] args, object sourceNode) :
base(res, args, null, null, 0, 0, null) {
this.sourceNodeObject = sourceNode;
}
internal XmlSchemaValidationException(string res, string[] args, string sourceUri, object sourceNode) :
base(res, args, null, sourceUri, 0, 0, null) {
this.sourceNodeObject = sourceNode;
}
internal XmlSchemaValidationException(string res, string[] args, string sourceUri, int lineNumber, int linePosition, XmlSchemaObject source, object sourceNode) :
base(res, args, null, sourceUri, lineNumber, linePosition, source) {
this.sourceNodeObject = sourceNode;
}
///
public Object SourceObject {
get { return this.sourceNodeObject; }
}
protected internal void SetSourceObject (Object sourceObject){
this.sourceNodeObject = sourceObject;
}
};
} // namespace System.Xml.Schema
// 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
- OracleString.cs
- OpCodes.cs
- FixedPage.cs
- FailedToStartupUIException.cs
- Transform3DCollection.cs
- ModuleConfigurationInfo.cs
- TypedDataSetSchemaImporterExtensionFx35.cs
- PatternMatcher.cs
- XslAstAnalyzer.cs
- TemplatePartAttribute.cs
- RegexParser.cs
- WhiteSpaceTrimStringConverter.cs
- PasswordDeriveBytes.cs
- OdbcStatementHandle.cs
- CachedPathData.cs
- BuildDependencySet.cs
- BamlTreeNode.cs
- SerializerProvider.cs
- SR.cs
- TransportSecurityHelpers.cs
- XmlnsDictionary.cs
- ClientConfigurationHost.cs
- SqlBuilder.cs
- KoreanLunisolarCalendar.cs
- SqlConnectionPoolProviderInfo.cs
- Operand.cs
- SqlUnionizer.cs
- followingquery.cs
- ListViewSortEventArgs.cs
- SingleAnimationUsingKeyFrames.cs
- Thickness.cs
- WebControlAdapter.cs
- Typeface.cs
- LinkArea.cs
- TableItemStyle.cs
- ToolStripButton.cs
- RegexRunner.cs
- SiteMapProvider.cs
- CodeCommentStatementCollection.cs
- SqlDataSourceCustomCommandPanel.cs
- Identifier.cs
- Tile.cs
- ResizeGrip.cs
- UserInitiatedRoutedEventPermission.cs
- PropertyItemInternal.cs
- PrintDocument.cs
- InvokeWebService.cs
- ProfileParameter.cs
- Rect3DConverter.cs
- TypeConverterAttribute.cs
- PageBreakRecord.cs
- ToolStripDropDown.cs
- NameValueCollection.cs
- ItemList.cs
- SmtpFailedRecipientException.cs
- AssertSection.cs
- ProtocolReflector.cs
- AccessViolationException.cs
- ListBoxAutomationPeer.cs
- InstanceCompleteException.cs
- Emitter.cs
- AssemblyLoader.cs
- TraceInternal.cs
- ConnectionStringSettings.cs
- DesigntimeLicenseContextSerializer.cs
- TableProviderWrapper.cs
- RadialGradientBrush.cs
- ListViewContainer.cs
- TransactionalPackage.cs
- DSACryptoServiceProvider.cs
- WrappedOptions.cs
- GridLengthConverter.cs
- BoundField.cs
- ProfileProvider.cs
- KeyFrames.cs
- XmlSortKeyAccumulator.cs
- OdbcFactory.cs
- Light.cs
- PageHandlerFactory.cs
- EntityDataSourceUtil.cs
- EndpointDiscoveryMetadata.cs
- XmlMapping.cs
- ImageFormat.cs
- XmlSchemaIdentityConstraint.cs
- ContainerUIElement3D.cs
- KeyValueSerializer.cs
- CellParagraph.cs
- FixedSOMElement.cs
- XmlNode.cs
- WebPartConnectionsCancelEventArgs.cs
- _Events.cs
- Buffer.cs
- CategoryAttribute.cs
- JpegBitmapEncoder.cs
- Misc.cs
- X509RawDataKeyIdentifierClause.cs
- VectorCollectionValueSerializer.cs
- RadioButtonFlatAdapter.cs
- WindowsButton.cs
- DrawItemEvent.cs