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
- WindowsScrollBar.cs
- AuthenticatedStream.cs
- IsolatedStorageFile.cs
- COM2ExtendedUITypeEditor.cs
- ClientCultureInfo.cs
- ScrollEvent.cs
- XslUrlEditor.cs
- WebPartZoneCollection.cs
- NavigationProperty.cs
- QuarticEase.cs
- TextServicesDisplayAttributePropertyRanges.cs
- Camera.cs
- _AutoWebProxyScriptEngine.cs
- UiaCoreApi.cs
- PropertySet.cs
- SerialPinChanges.cs
- FastPropertyAccessor.cs
- InternalBufferOverflowException.cs
- GridViewPageEventArgs.cs
- OdbcException.cs
- EntityContainer.cs
- EtwTrace.cs
- CodeSnippetTypeMember.cs
- HtmlElementCollection.cs
- DataGridToolTip.cs
- XmlHierarchicalEnumerable.cs
- CuspData.cs
- DiscoveryDocument.cs
- SessionStateSection.cs
- ClientConvert.cs
- ToolStripItemCollection.cs
- TypeElementCollection.cs
- CodeAttributeArgumentCollection.cs
- ImmutableAssemblyCacheEntry.cs
- TimerElapsedEvenArgs.cs
- ISFClipboardData.cs
- EventWaitHandle.cs
- System.Data_BID.cs
- RuntimeWrappedException.cs
- CallbackTimeoutsElement.cs
- __Filters.cs
- ChildDocumentBlock.cs
- File.cs
- XmlSerializationGeneratedCode.cs
- Msec.cs
- DataGridViewImageCell.cs
- UnsafeNativeMethods.cs
- BamlResourceDeserializer.cs
- ListViewGroupItemCollection.cs
- ParenthesizePropertyNameAttribute.cs
- Touch.cs
- LinkButton.cs
- ValueTypePropertyReference.cs
- ObjectTypeMapping.cs
- OleDbWrapper.cs
- PropertyBuilder.cs
- GeneralTransform3DTo2D.cs
- Method.cs
- SqlDataSourceQuery.cs
- XmlTypeAttribute.cs
- IndentedWriter.cs
- ConfigurationSettings.cs
- BinaryVersion.cs
- EdmEntityTypeAttribute.cs
- wgx_sdk_version.cs
- TextTreeDeleteContentUndoUnit.cs
- NodeInfo.cs
- SoapSchemaImporter.cs
- ComponentCollection.cs
- CodeMethodReturnStatement.cs
- SoapSchemaExporter.cs
- XPathItem.cs
- EventHandlerList.cs
- ASCIIEncoding.cs
- SourceFileBuildProvider.cs
- ByteAnimationBase.cs
- BreakSafeBase.cs
- Char.cs
- SystemFonts.cs
- CodePageUtils.cs
- JsonDeserializer.cs
- KeyEvent.cs
- WindowsListViewGroupHelper.cs
- DesignerDataColumn.cs
- TypeSource.cs
- Stylesheet.cs
- EntityCommandDefinition.cs
- FlatButtonAppearance.cs
- FileSecurity.cs
- MemberAssignmentAnalysis.cs
- SymmetricCryptoHandle.cs
- RemotingException.cs
- SerializationInfo.cs
- FormattedText.cs
- TrackingParticipant.cs
- GridPatternIdentifiers.cs
- Material.cs
- TemplateBindingExpressionConverter.cs
- BooleanKeyFrameCollection.cs
- AutomationEvent.cs