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
- URIFormatException.cs
- arclist.cs
- XmlArrayItemAttributes.cs
- PrintDocument.cs
- DbDataReader.cs
- CustomValidator.cs
- XmlSchemaObjectCollection.cs
- DriveNotFoundException.cs
- ClassHandlersStore.cs
- WebPartConnectVerb.cs
- Relationship.cs
- _UncName.cs
- NamedPipeTransportManager.cs
- TrailingSpaceComparer.cs
- ConstantExpression.cs
- ForwardPositionQuery.cs
- XmlLinkedNode.cs
- BrushProxy.cs
- Expressions.cs
- PathFigureCollectionValueSerializer.cs
- FixedSOMContainer.cs
- SqlNode.cs
- XPathBuilder.cs
- ExpandedProjectionNode.cs
- WebPartCatalogCloseVerb.cs
- SspiHelper.cs
- DataContractJsonSerializer.cs
- PrintDialog.cs
- QueuePathDialog.cs
- ErrorTableItemStyle.cs
- CompilationRelaxations.cs
- SByte.cs
- _AcceptOverlappedAsyncResult.cs
- OdbcTransaction.cs
- TrustSection.cs
- IgnoreSectionHandler.cs
- BaseResourcesBuildProvider.cs
- TraceSwitch.cs
- ItemCheckedEvent.cs
- ScriptResourceHandler.cs
- TextBoxView.cs
- DataTablePropertyDescriptor.cs
- XmlSchemaComplexType.cs
- followingquery.cs
- RequestCacheManager.cs
- MessagingActivityHelper.cs
- StreamUpdate.cs
- RootProfilePropertySettingsCollection.cs
- GetPageNumberCompletedEventArgs.cs
- PageScaling.cs
- InputBindingCollection.cs
- ServiceDescriptionSerializer.cs
- SymmetricKeyWrap.cs
- TextSerializer.cs
- ForEachAction.cs
- XmlDictionaryReader.cs
- CollectionView.cs
- RectangleConverter.cs
- BufferAllocator.cs
- DesignerOptionService.cs
- CookieParameter.cs
- METAHEADER.cs
- TreeView.cs
- DoubleCollectionValueSerializer.cs
- SqlClientFactory.cs
- DataBoundLiteralControl.cs
- DataGridViewCellStyleConverter.cs
- DataGridViewButtonColumn.cs
- MouseButton.cs
- ScrollProviderWrapper.cs
- RadioButton.cs
- SelectorItemAutomationPeer.cs
- PageRanges.cs
- SqlDelegatedTransaction.cs
- SessionIDManager.cs
- SocketException.cs
- TreeWalkHelper.cs
- GridViewEditEventArgs.cs
- EncoderFallback.cs
- BitmapPalettes.cs
- XamlPoint3DCollectionSerializer.cs
- BCryptSafeHandles.cs
- GeometryCombineModeValidation.cs
- DateTimePicker.cs
- COM2AboutBoxPropertyDescriptor.cs
- WebBrowser.cs
- TextRangeAdaptor.cs
- MissingSatelliteAssemblyException.cs
- StatusBar.cs
- Parser.cs
- Context.cs
- NameValueCollection.cs
- HtmlDocument.cs
- DateBoldEvent.cs
- webbrowsersite.cs
- ContextBase.cs
- SafeReversePInvokeHandle.cs
- CompModSwitches.cs
- Rect3D.cs
- DirectoryNotFoundException.cs