Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / XmlUtils / System / Xml / Xsl / XslException.cs / 1305376 / XslException.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- using System.CodeDom.Compiler; using System.Diagnostics; using System.Globalization; using System.Resources; using System.Runtime.Serialization; using System.Security.Permissions; using System.Text; namespace System.Xml.Xsl { using Res = System.Xml.Utils.Res; [Serializable] internal class XslTransformException : XsltException { protected XslTransformException(SerializationInfo info, StreamingContext context) : base(info, context) {} public XslTransformException(Exception inner, string res, params string[] args) : base(CreateMessage(res, args), inner) {} public XslTransformException(string message) : base(CreateMessage(message, null), null) {} internal XslTransformException(string res, params string[] args) : this(null, res, args) {} internal static string CreateMessage(string res, params string[] args) { string message = null; try { message = Res.GetString(res, args); } catch (MissingManifestResourceException) { } if (message != null) { return message; } StringBuilder sb = new StringBuilder(res); if (args != null && args.Length > 0) { Debug.Fail("Resource string '" + res + "' was not found"); sb.Append('('); sb.Append(args[0]); for (int idx = 1; idx < args.Length; idx++) { sb.Append(", "); sb.Append(args[idx]); } sb.Append(')'); } return sb.ToString(); } internal virtual string FormatDetailedMessage() { return Message; } public override string ToString() { string result = this.GetType().FullName; string info = FormatDetailedMessage(); if (info != null && info.Length > 0) { result += ": " + info; } if (InnerException != null) { result += " ---> " + InnerException.ToString() + Environment.NewLine + " " + CreateMessage(Res.Xml_EndOfInnerExceptionStack); } if (StackTrace != null) { result += Environment.NewLine + StackTrace; } return result; } } [Serializable] internal class XslLoadException : XslTransformException { ISourceLineInfo lineInfo; protected XslLoadException (SerializationInfo info, StreamingContext context) : base(info, context) { bool hasLineInfo = (bool) info.GetValue("hasLineInfo", typeof(bool)); if (hasLineInfo) { string uriString; int startLine, startPos, endLine, endPos; uriString = (string) info.GetValue("Uri" , typeof(string )); startLine = (int) info.GetValue("StartLine" , typeof(int )); startPos = (int) info.GetValue("StartPos" , typeof(int )); endLine = (int) info.GetValue("EndLine" , typeof(int )); endPos = (int) info.GetValue("EndPos" , typeof(int )); lineInfo = new SourceLineInfo(uriString, startLine, startPos, endLine, endPos); } } [SecurityPermissionAttribute(SecurityAction.LinkDemand, SerializationFormatter=true)] public override void GetObjectData(SerializationInfo info, StreamingContext context) { base.GetObjectData(info, context); info.AddValue("hasLineInfo" , lineInfo != null); if (lineInfo != null) { info.AddValue("Uri" , lineInfo.Uri); info.AddValue("StartLine", lineInfo.Start.Line); info.AddValue("StartPos" , lineInfo.Start.Pos ); info.AddValue("EndLine" , lineInfo.End.Line); info.AddValue("EndPos" , lineInfo.End.Pos ); } } internal XslLoadException(string res, params string[] args) : base(null, res, args) {} internal XslLoadException(Exception inner, ISourceLineInfo lineInfo) : base(inner, Res.Xslt_CompileError2, null) { SetSourceLineInfo(lineInfo); } internal XslLoadException(CompilerError error) : base(Res.Xml_UserException, new string[] { error.ErrorText }) { int errorLine = error.Line; int errorColumn = error.Column; if (errorLine == 0) { // If the compiler reported error on Line 0 - ignore columns, // 0 means it doesn't know where the error was and our SourceLineInfo // expects either all zeroes or all non-zeroes errorColumn = 0; } else { if (errorColumn == 0) { // In this situation the compiler returned for example Line 10, Column 0. // This means that the compiler knows the line of the error, but it doesn't // know (or support) the column part of the location. // Since we don't allow column 0 (as it's invalid), let's turn it into 1 (the begining of the line) errorColumn = 1; } } SetSourceLineInfo(new SourceLineInfo(error.FileName, errorLine, errorColumn, errorLine, errorColumn)); } internal void SetSourceLineInfo(ISourceLineInfo lineInfo) { Debug.Assert(lineInfo == null || lineInfo.Uri != null); this.lineInfo = lineInfo; } public override string SourceUri { get { return lineInfo != null ? lineInfo.Uri : null; } } public override int LineNumber { get { return lineInfo != null ? lineInfo.Start.Line : 0; } } public override int LinePosition { get { return lineInfo != null ? lineInfo.Start.Pos : 0; } } private static string AppendLineInfoMessage(string message, ISourceLineInfo lineInfo) { if (lineInfo != null) { string fileName = SourceLineInfo.GetFileName(lineInfo.Uri); string lineInfoMessage = CreateMessage(Res.Xml_ErrorFilePosition, fileName, lineInfo.Start.Line.ToString(CultureInfo.InvariantCulture), lineInfo.Start.Pos.ToString(CultureInfo.InvariantCulture)); if (lineInfoMessage != null && lineInfoMessage.Length > 0) { if (message.Length > 0 && !XmlCharType.Instance.IsWhiteSpace(message[message.Length - 1])) { message += " "; } message += lineInfoMessage; } } return message; } internal static string CreateMessage(ISourceLineInfo lineInfo, string res, params string[] args) { return AppendLineInfoMessage(CreateMessage(res, args), lineInfo); } internal override string FormatDetailedMessage() { return AppendLineInfoMessage(Message, lineInfo); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- using System.CodeDom.Compiler; using System.Diagnostics; using System.Globalization; using System.Resources; using System.Runtime.Serialization; using System.Security.Permissions; using System.Text; namespace System.Xml.Xsl { using Res = System.Xml.Utils.Res; [Serializable] internal class XslTransformException : XsltException { protected XslTransformException(SerializationInfo info, StreamingContext context) : base(info, context) {} public XslTransformException(Exception inner, string res, params string[] args) : base(CreateMessage(res, args), inner) {} public XslTransformException(string message) : base(CreateMessage(message, null), null) {} internal XslTransformException(string res, params string[] args) : this(null, res, args) {} internal static string CreateMessage(string res, params string[] args) { string message = null; try { message = Res.GetString(res, args); } catch (MissingManifestResourceException) { } if (message != null) { return message; } StringBuilder sb = new StringBuilder(res); if (args != null && args.Length > 0) { Debug.Fail("Resource string '" + res + "' was not found"); sb.Append('('); sb.Append(args[0]); for (int idx = 1; idx < args.Length; idx++) { sb.Append(", "); sb.Append(args[idx]); } sb.Append(')'); } return sb.ToString(); } internal virtual string FormatDetailedMessage() { return Message; } public override string ToString() { string result = this.GetType().FullName; string info = FormatDetailedMessage(); if (info != null && info.Length > 0) { result += ": " + info; } if (InnerException != null) { result += " ---> " + InnerException.ToString() + Environment.NewLine + " " + CreateMessage(Res.Xml_EndOfInnerExceptionStack); } if (StackTrace != null) { result += Environment.NewLine + StackTrace; } return result; } } [Serializable] internal class XslLoadException : XslTransformException { ISourceLineInfo lineInfo; protected XslLoadException (SerializationInfo info, StreamingContext context) : base(info, context) { bool hasLineInfo = (bool) info.GetValue("hasLineInfo", typeof(bool)); if (hasLineInfo) { string uriString; int startLine, startPos, endLine, endPos; uriString = (string) info.GetValue("Uri" , typeof(string )); startLine = (int) info.GetValue("StartLine" , typeof(int )); startPos = (int) info.GetValue("StartPos" , typeof(int )); endLine = (int) info.GetValue("EndLine" , typeof(int )); endPos = (int) info.GetValue("EndPos" , typeof(int )); lineInfo = new SourceLineInfo(uriString, startLine, startPos, endLine, endPos); } } [SecurityPermissionAttribute(SecurityAction.LinkDemand, SerializationFormatter=true)] public override void GetObjectData(SerializationInfo info, StreamingContext context) { base.GetObjectData(info, context); info.AddValue("hasLineInfo" , lineInfo != null); if (lineInfo != null) { info.AddValue("Uri" , lineInfo.Uri); info.AddValue("StartLine", lineInfo.Start.Line); info.AddValue("StartPos" , lineInfo.Start.Pos ); info.AddValue("EndLine" , lineInfo.End.Line); info.AddValue("EndPos" , lineInfo.End.Pos ); } } internal XslLoadException(string res, params string[] args) : base(null, res, args) {} internal XslLoadException(Exception inner, ISourceLineInfo lineInfo) : base(inner, Res.Xslt_CompileError2, null) { SetSourceLineInfo(lineInfo); } internal XslLoadException(CompilerError error) : base(Res.Xml_UserException, new string[] { error.ErrorText }) { int errorLine = error.Line; int errorColumn = error.Column; if (errorLine == 0) { // If the compiler reported error on Line 0 - ignore columns, // 0 means it doesn't know where the error was and our SourceLineInfo // expects either all zeroes or all non-zeroes errorColumn = 0; } else { if (errorColumn == 0) { // In this situation the compiler returned for example Line 10, Column 0. // This means that the compiler knows the line of the error, but it doesn't // know (or support) the column part of the location. // Since we don't allow column 0 (as it's invalid), let's turn it into 1 (the begining of the line) errorColumn = 1; } } SetSourceLineInfo(new SourceLineInfo(error.FileName, errorLine, errorColumn, errorLine, errorColumn)); } internal void SetSourceLineInfo(ISourceLineInfo lineInfo) { Debug.Assert(lineInfo == null || lineInfo.Uri != null); this.lineInfo = lineInfo; } public override string SourceUri { get { return lineInfo != null ? lineInfo.Uri : null; } } public override int LineNumber { get { return lineInfo != null ? lineInfo.Start.Line : 0; } } public override int LinePosition { get { return lineInfo != null ? lineInfo.Start.Pos : 0; } } private static string AppendLineInfoMessage(string message, ISourceLineInfo lineInfo) { if (lineInfo != null) { string fileName = SourceLineInfo.GetFileName(lineInfo.Uri); string lineInfoMessage = CreateMessage(Res.Xml_ErrorFilePosition, fileName, lineInfo.Start.Line.ToString(CultureInfo.InvariantCulture), lineInfo.Start.Pos.ToString(CultureInfo.InvariantCulture)); if (lineInfoMessage != null && lineInfoMessage.Length > 0) { if (message.Length > 0 && !XmlCharType.Instance.IsWhiteSpace(message[message.Length - 1])) { message += " "; } message += lineInfoMessage; } } return message; } internal static string CreateMessage(ISourceLineInfo lineInfo, string res, params string[] args) { return AppendLineInfoMessage(CreateMessage(res, args), lineInfo); } internal override string FormatDetailedMessage() { return AppendLineInfoMessage(Message, lineInfo); } } } // 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
- ClientSettingsProvider.cs
- WFItemsToSpacerVisibility.cs
- StandardBindingImporter.cs
- BuildDependencySet.cs
- EntityDataSourceView.cs
- StrongNameUtility.cs
- CornerRadiusConverter.cs
- XsdDataContractExporter.cs
- AsymmetricKeyExchangeDeformatter.cs
- DispatcherSynchronizationContext.cs
- SystemParameters.cs
- MultiDataTrigger.cs
- DockPattern.cs
- Blend.cs
- ListViewInsertionMark.cs
- DecoderNLS.cs
- FailedToStartupUIException.cs
- coordinatorscratchpad.cs
- RSAPKCS1SignatureDeformatter.cs
- DoWorkEventArgs.cs
- MachineKeyConverter.cs
- UserInitiatedRoutedEventPermissionAttribute.cs
- IdentityValidationException.cs
- HostedImpersonationContext.cs
- XPathArrayIterator.cs
- XmlILModule.cs
- Encoder.cs
- HashAlgorithm.cs
- CaseInsensitiveComparer.cs
- SpecialNameAttribute.cs
- errorpatternmatcher.cs
- HandlerFactoryWrapper.cs
- ClientBuildManager.cs
- FrameworkReadOnlyPropertyMetadata.cs
- PropertyTabAttribute.cs
- Code.cs
- IPHostEntry.cs
- LogExtentCollection.cs
- UpdateCommand.cs
- EncryptedKeyIdentifierClause.cs
- TreeNodeMouseHoverEvent.cs
- BindingContext.cs
- CompiledQuery.cs
- SoapExtensionReflector.cs
- OracleBFile.cs
- TypeResolvingOptions.cs
- PrintPreviewDialog.cs
- CommandManager.cs
- SqlNotificationRequest.cs
- NumberFormatInfo.cs
- StructuralObject.cs
- RootBrowserWindowProxy.cs
- DispatcherProcessingDisabled.cs
- WindowsListBox.cs
- ImpersonateTokenRef.cs
- XmlSchemaDatatype.cs
- BoundColumn.cs
- DateRangeEvent.cs
- InstanceKey.cs
- DataGridCheckBoxColumn.cs
- InkPresenterAutomationPeer.cs
- LostFocusEventManager.cs
- TableCell.cs
- ExclusiveCanonicalizationTransform.cs
- DocumentPageView.cs
- CommandEventArgs.cs
- DummyDataSource.cs
- ExceptionTranslationTable.cs
- HyperLink.cs
- CultureMapper.cs
- RelatedImageListAttribute.cs
- _NegoStream.cs
- HashCodeCombiner.cs
- DataGridViewRowPrePaintEventArgs.cs
- ToolStripPanelRenderEventArgs.cs
- DataTableCollection.cs
- ItemType.cs
- TextElement.cs
- DataRelation.cs
- JapaneseLunisolarCalendar.cs
- LogStore.cs
- CounterNameConverter.cs
- FontResourceCache.cs
- WebPartConnectionsCancelVerb.cs
- XmlSchemaSequence.cs
- Vector3DCollectionConverter.cs
- SharedStatics.cs
- BitmapMetadataBlob.cs
- SecureUICommand.cs
- LinkLabelLinkClickedEvent.cs
- TrackPoint.cs
- FormParameter.cs
- RepeaterItemCollection.cs
- MetadataItem.cs
- COM2Enum.cs
- DesignerResources.cs
- ProviderCommandInfoUtils.cs
- ChangeInterceptorAttribute.cs
- MobileCategoryAttribute.cs
- AsmxEndpointPickerExtension.cs