Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / 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); } } }/// Overrides Object's ToString. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ThreadPool.cs
- SecurityTokenParametersEnumerable.cs
- DashStyles.cs
- VersionedStreamOwner.cs
- GeometryModel3D.cs
- JsonReader.cs
- XmlWriterTraceListener.cs
- Helper.cs
- ContextQuery.cs
- DataServiceQuery.cs
- Point3DAnimationUsingKeyFrames.cs
- SrgsOneOf.cs
- SafeNativeMethods.cs
- ProviderConnectionPointCollection.cs
- TemplateBindingExtensionConverter.cs
- DataGridViewElement.cs
- MeshGeometry3D.cs
- ASCIIEncoding.cs
- AsynchronousChannelMergeEnumerator.cs
- ShapingEngine.cs
- SchemaEntity.cs
- ModuleBuilder.cs
- CodeTypeMember.cs
- RewritingValidator.cs
- ListenerSingletonConnectionReader.cs
- StringValidator.cs
- HttpCacheVaryByContentEncodings.cs
- NetworkCredential.cs
- InputBuffer.cs
- Part.cs
- GcHandle.cs
- BackgroundFormatInfo.cs
- MarginsConverter.cs
- StringDictionary.cs
- ToolboxItemCollection.cs
- SuppressIldasmAttribute.cs
- DataShape.cs
- SliderAutomationPeer.cs
- OutputCacheModule.cs
- WebServiceData.cs
- XmlSchemaComplexType.cs
- PersonalizationStateInfoCollection.cs
- BlurEffect.cs
- ServiceAuthorizationManager.cs
- WsiProfilesElement.cs
- RowVisual.cs
- CompiledRegexRunner.cs
- TranslateTransform.cs
- DbUpdateCommandTree.cs
- SelectedDatesCollection.cs
- Asn1IntegerConverter.cs
- ObjectListShowCommandsEventArgs.cs
- SessionPageStatePersister.cs
- CodeCatchClause.cs
- figurelength.cs
- ProfileSection.cs
- ImageButton.cs
- MatrixStack.cs
- HttpRuntime.cs
- DrawingVisualDrawingContext.cs
- PowerModeChangedEventArgs.cs
- TableColumnCollectionInternal.cs
- SafeNativeMethodsOther.cs
- XsltLibrary.cs
- TypeLoadException.cs
- TrustLevelCollection.cs
- TailCallAnalyzer.cs
- HttpResponseHeader.cs
- SoapFaultCodes.cs
- SelectionItemPatternIdentifiers.cs
- PerspectiveCamera.cs
- DataMisalignedException.cs
- MaskDescriptor.cs
- WinCategoryAttribute.cs
- VirtualizingStackPanel.cs
- CategoryGridEntry.cs
- datacache.cs
- ListBoxAutomationPeer.cs
- Formatter.cs
- Model3D.cs
- RotateTransform3D.cs
- PropertyGeneratedEventArgs.cs
- AuthenticationModulesSection.cs
- Selector.cs
- SqlError.cs
- ExtenderProvidedPropertyAttribute.cs
- GridViewRow.cs
- AttachedPropertyBrowsableForChildrenAttribute.cs
- AttributeProviderAttribute.cs
- FileDataSourceCache.cs
- QuotedStringWriteStateInfo.cs
- SQLDateTime.cs
- AutomationPropertyChangedEventArgs.cs
- FlowDocument.cs
- Utils.cs
- IODescriptionAttribute.cs
- EntryIndex.cs
- FormView.cs
- BoolLiteral.cs
- TrackBarRenderer.cs