Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Xml / System / Xml / schema / XmlSchemaValidationException.cs / 1 / 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.Demand,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. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Operand.cs
- AbstractDataSvcMapFileLoader.cs
- OlePropertyStructs.cs
- ToolZone.cs
- SiteMapDataSource.cs
- DriveInfo.cs
- NameGenerator.cs
- RowSpanVector.cs
- _ConnectStream.cs
- ComponentDispatcher.cs
- ContentFilePart.cs
- ThemeDictionaryExtension.cs
- Vector3DCollectionConverter.cs
- TextEffect.cs
- HttpConfigurationSystem.cs
- MultiPageTextView.cs
- DefaultTextStore.cs
- UrlMappingsModule.cs
- QilCloneVisitor.cs
- PropertyDescriptorCollection.cs
- FigureHelper.cs
- PasswordValidationException.cs
- BorderSidesEditor.cs
- HttpListenerTimeoutManager.cs
- SettingsPropertyWrongTypeException.cs
- XamlSerializerUtil.cs
- ViewManagerAttribute.cs
- ObjectQueryProvider.cs
- OleDbParameterCollection.cs
- altserialization.cs
- CodeActivity.cs
- ChannelPool.cs
- StyleXamlParser.cs
- SoapConverter.cs
- ArrayElementGridEntry.cs
- HotSpotCollection.cs
- ResXBuildProvider.cs
- DropDownButton.cs
- XmlEventCache.cs
- ChannelServices.cs
- LineBreakRecord.cs
- XmlIncludeAttribute.cs
- PrintDialog.cs
- ControlParser.cs
- XmlUnspecifiedAttribute.cs
- _OSSOCK.cs
- Win32Exception.cs
- ChtmlTextBoxAdapter.cs
- ReadOnlyHierarchicalDataSource.cs
- SimpleTypeResolver.cs
- SimpleWorkerRequest.cs
- DoubleLinkListEnumerator.cs
- PauseStoryboard.cs
- IgnoreSection.cs
- EmptyReadOnlyDictionaryInternal.cs
- ToolStripOverflow.cs
- ObjectAnimationUsingKeyFrames.cs
- SqlUserDefinedAggregateAttribute.cs
- WebBaseEventKeyComparer.cs
- ColorMap.cs
- precedingquery.cs
- ObjRef.cs
- PrinterUnitConvert.cs
- TextRange.cs
- ILGenerator.cs
- MouseEventArgs.cs
- PtsPage.cs
- SqlDataSourceCustomCommandEditor.cs
- IconHelper.cs
- DockProviderWrapper.cs
- CatalogZoneBase.cs
- TextBox.cs
- SimpleHandlerBuildProvider.cs
- UnSafeCharBuffer.cs
- ContentIterators.cs
- ManagedFilter.cs
- SupportingTokenChannel.cs
- StoryFragments.cs
- CustomPopupPlacement.cs
- DrawingAttributes.cs
- Tokenizer.cs
- ImageField.cs
- ImportContext.cs
- SiteMapDataSource.cs
- QueuePathDialog.cs
- SendMailErrorEventArgs.cs
- ControlPropertyNameConverter.cs
- RSAPKCS1KeyExchangeDeformatter.cs
- ZeroOpNode.cs
- DataBoundControlActionList.cs
- CallTemplateAction.cs
- StringPropertyBuilder.cs
- CryptoConfig.cs
- DocumentViewerBaseAutomationPeer.cs
- EmptyReadOnlyDictionaryInternal.cs
- CachedBitmap.cs
- _HTTPDateParse.cs
- CompositeControlDesigner.cs
- LayoutUtils.cs
- RealizationContext.cs