Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / 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
- EntityDataSourceStatementEditorForm.cs
- WizardStepCollectionEditor.cs
- __Error.cs
- CharAnimationBase.cs
- SemaphoreSecurity.cs
- TypeUtil.cs
- RNGCryptoServiceProvider.cs
- EmptyElement.cs
- sqlmetadatafactory.cs
- ConstructorBuilder.cs
- PageContentAsyncResult.cs
- HeaderCollection.cs
- MD5.cs
- AutomationElementCollection.cs
- SrgsNameValueTag.cs
- DesignConnectionCollection.cs
- DbConnectionClosed.cs
- TypedReference.cs
- SystemInformation.cs
- FontStretchConverter.cs
- RuntimeResourceSet.cs
- BaseDataBoundControlDesigner.cs
- XmlDataFileEditor.cs
- ResourceAttributes.cs
- Validator.cs
- XsltSettings.cs
- Line.cs
- EncodingStreamWrapper.cs
- Preprocessor.cs
- PartialCachingControl.cs
- GuidelineSet.cs
- TextPointerBase.cs
- KeyValueInternalCollection.cs
- WebServiceHandlerFactory.cs
- DataGridViewRowDividerDoubleClickEventArgs.cs
- RoleManagerEventArgs.cs
- SiteMapDataSource.cs
- FontDriver.cs
- PopOutPanel.cs
- ThreadAbortException.cs
- DES.cs
- Light.cs
- NavigationProperty.cs
- MarshalByRefObject.cs
- CompoundFileIOPermission.cs
- SqlUDTStorage.cs
- SafeReversePInvokeHandle.cs
- ConfigXmlText.cs
- InputMethod.cs
- InkCanvasInnerCanvas.cs
- DetailsViewUpdatedEventArgs.cs
- ImageMetadata.cs
- HttpCookiesSection.cs
- BulletedListDesigner.cs
- DataServiceQuery.cs
- Stream.cs
- ReadWriteObjectLock.cs
- ReferencedType.cs
- LayoutManager.cs
- OutputScopeManager.cs
- PolyQuadraticBezierSegment.cs
- NativeCompoundFileAPIs.cs
- XmlWriterTraceListener.cs
- TableLayoutColumnStyleCollection.cs
- SymLanguageType.cs
- XPathBinder.cs
- CombinedGeometry.cs
- LayoutTableCell.cs
- SecurityAccessDeniedException.cs
- MethodBuilderInstantiation.cs
- ServicePoint.cs
- ActivationServices.cs
- QuadraticBezierSegment.cs
- BitmapImage.cs
- SingleStorage.cs
- CodeCompiler.cs
- ImageSource.cs
- HostProtectionPermission.cs
- DataGridViewLinkColumn.cs
- HeaderedContentControl.cs
- AudioFormatConverter.cs
- PenLineJoinValidation.cs
- ListViewDataItem.cs
- PerformanceCounterLib.cs
- SqlConnectionPoolGroupProviderInfo.cs
- EntityDataSourceReferenceGroup.cs
- AffineTransform3D.cs
- BitArray.cs
- MexTcpBindingCollectionElement.cs
- InProcStateClientManager.cs
- ApplicationFileParser.cs
- PerfService.cs
- GridViewCommandEventArgs.cs
- ToolBarDesigner.cs
- DoubleAnimationClockResource.cs
- DebugController.cs
- XmlSchemaImporter.cs
- EventHandlerList.cs
- XPathBinder.cs
- PackageProperties.cs