Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / CompMod / System / CodeDOM / Compiler / CompilerError.cs / 1 / CompilerError.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.CodeDom.Compiler { using System; using System.CodeDom; using System.Security.Permissions; using System.Globalization; ////// [Serializable()] [PermissionSet(SecurityAction.InheritanceDemand, Name="FullTrust")] public class CompilerError { private int line; private int column; private string errorNumber; private bool warning = false; private string errorText; private string fileName; ////// Represents a compiler error. /// ////// public CompilerError() { this.line = 0; this.column = 0; this.errorNumber = string.Empty; this.errorText = string.Empty; this.fileName = string.Empty; } ////// Initializes a new instance of ///. /// /// public CompilerError(string fileName, int line, int column, string errorNumber, string errorText) { this.line = line; this.column = column; this.errorNumber = errorNumber; this.errorText = errorText; this.fileName = fileName; } ////// Initializes a new instance of ///using the specified /// filename, line, column, error number and error text. /// /// public int Line { get { return line; } set { line = value; } } ////// Gets or sets the line number where the source of the error occurs. /// ////// public int Column { get { return column; } set { column = value; } } ////// Gets or sets the column number where the source of the error occurs. /// ////// public string ErrorNumber { get { return errorNumber; } set { errorNumber = value; } } ////// Gets or sets the error number. /// ////// public string ErrorText { get { return errorText; } set { errorText = value; } } ////// Gets or sets the text of the error message. /// ////// public bool IsWarning { get { return warning; } set { warning = value; } } ////// Gets or sets /// a value indicating whether the error is a warning. /// ////// public string FileName { get { return fileName; } set { fileName = value; } } ////// Gets or sets the filename of the source that caused the error. /// ////// public override string ToString() { if (FileName.Length > 0) { return string.Format(CultureInfo.InvariantCulture, "{0}({1},{2}) : {3} {4}: {5}", new object[] { FileName, Line, Column, IsWarning ? "warning" : "error", ErrorNumber, ErrorText}); } else return string.Format(CultureInfo.InvariantCulture, "{0} {1}: {2}", IsWarning ? "warning" : "error", ErrorNumber, ErrorText); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ ///// Overrides Object's ToString. /// ///// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.CodeDom.Compiler { using System; using System.CodeDom; using System.Security.Permissions; using System.Globalization; ////// [Serializable()] [PermissionSet(SecurityAction.InheritanceDemand, Name="FullTrust")] public class CompilerError { private int line; private int column; private string errorNumber; private bool warning = false; private string errorText; private string fileName; ////// Represents a compiler error. /// ////// public CompilerError() { this.line = 0; this.column = 0; this.errorNumber = string.Empty; this.errorText = string.Empty; this.fileName = string.Empty; } ////// Initializes a new instance of ///. /// /// public CompilerError(string fileName, int line, int column, string errorNumber, string errorText) { this.line = line; this.column = column; this.errorNumber = errorNumber; this.errorText = errorText; this.fileName = fileName; } ////// Initializes a new instance of ///using the specified /// filename, line, column, error number and error text. /// /// public int Line { get { return line; } set { line = value; } } ////// Gets or sets the line number where the source of the error occurs. /// ////// public int Column { get { return column; } set { column = value; } } ////// Gets or sets the column number where the source of the error occurs. /// ////// public string ErrorNumber { get { return errorNumber; } set { errorNumber = value; } } ////// Gets or sets the error number. /// ////// public string ErrorText { get { return errorText; } set { errorText = value; } } ////// Gets or sets the text of the error message. /// ////// public bool IsWarning { get { return warning; } set { warning = value; } } ////// Gets or sets /// a value indicating whether the error is a warning. /// ////// public string FileName { get { return fileName; } set { fileName = value; } } ////// Gets or sets the filename of the source that caused the error. /// ////// public override string ToString() { if (FileName.Length > 0) { return string.Format(CultureInfo.InvariantCulture, "{0}({1},{2}) : {3} {4}: {5}", new object[] { FileName, Line, Column, IsWarning ? "warning" : "error", ErrorNumber, ErrorText}); } else return string.Format(CultureInfo.InvariantCulture, "{0} {1}: {2}", IsWarning ? "warning" : "error", ErrorNumber, ErrorText); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// Overrides Object's ToString. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- HScrollProperties.cs
- OdbcTransaction.cs
- NetMsmqBindingElement.cs
- XamlInterfaces.cs
- TableParagraph.cs
- ObjectSet.cs
- AmbiguousMatchException.cs
- WebPartCollection.cs
- XmlTextEncoder.cs
- KeyEvent.cs
- InkCollectionBehavior.cs
- GlyphCache.cs
- loginstatus.cs
- XmlPreloadedResolver.cs
- ResourceDisplayNameAttribute.cs
- _SslSessionsCache.cs
- GC.cs
- DockingAttribute.cs
- TableColumnCollection.cs
- GlyphElement.cs
- SmtpNtlmAuthenticationModule.cs
- DbProviderConfigurationHandler.cs
- DataIdProcessor.cs
- RepeatInfo.cs
- AssociationSetEnd.cs
- XhtmlBasicPageAdapter.cs
- LowerCaseStringConverter.cs
- GetWinFXPath.cs
- File.cs
- StyleSheetComponentEditor.cs
- VisualStyleElement.cs
- MinMaxParagraphWidth.cs
- Memoizer.cs
- AssertSection.cs
- HttpModule.cs
- MemoryFailPoint.cs
- RegexGroupCollection.cs
- DataGrid.cs
- DataGridViewRowEventArgs.cs
- MenuEventArgs.cs
- WebServiceData.cs
- CompoundFileStorageReference.cs
- basenumberconverter.cs
- DefaultEventAttribute.cs
- GenericWebPart.cs
- NullableBoolConverter.cs
- RenameRuleObjectDialog.cs
- indexingfiltermarshaler.cs
- XmlEncodedRawTextWriter.cs
- TypeUtils.cs
- ToolStripRenderEventArgs.cs
- HttpCookieCollection.cs
- UpdateCompiler.cs
- sqlmetadatafactory.cs
- NodeFunctions.cs
- MulticastNotSupportedException.cs
- Deserializer.cs
- EncoderBestFitFallback.cs
- OleDbConnection.cs
- Nullable.cs
- LineVisual.cs
- OdbcParameter.cs
- ConstraintEnumerator.cs
- FormViewDeleteEventArgs.cs
- MenuEventArgs.cs
- AbandonedMutexException.cs
- ObjectStateEntryDbDataRecord.cs
- UnsafeNativeMethods.cs
- SqlNotificationRequest.cs
- BehaviorEditorPart.cs
- XmlnsDictionary.cs
- InstanceHandleReference.cs
- CellConstantDomain.cs
- OneOf.cs
- SelectingProviderEventArgs.cs
- DesignOnlyAttribute.cs
- ObjectAssociationEndMapping.cs
- ColorContextHelper.cs
- DataGridTextBox.cs
- DataFormats.cs
- GeneratedView.cs
- ApplicationContext.cs
- GregorianCalendarHelper.cs
- Timer.cs
- EntityViewContainer.cs
- FontCollection.cs
- TargetException.cs
- TreeBuilderXamlTranslator.cs
- RootBrowserWindowAutomationPeer.cs
- PenThreadPool.cs
- WebProxyScriptElement.cs
- _UriSyntax.cs
- CellRelation.cs
- DuplicateWaitObjectException.cs
- XmlSortKey.cs
- XPathScanner.cs
- MemberPath.cs
- PassportAuthentication.cs
- RegexStringValidator.cs
- TypeToken.cs