Code:
/ FX-1434 / FX-1434 / 1.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
- SafeLibraryHandle.cs
- Int64AnimationUsingKeyFrames.cs
- HasCopySemanticsAttribute.cs
- DisableDpiAwarenessAttribute.cs
- QualifiedCellIdBoolean.cs
- IRCollection.cs
- EmissiveMaterial.cs
- FixedPageStructure.cs
- SecurityContextKeyIdentifierClause.cs
- XsdValidatingReader.cs
- BezierSegment.cs
- SecurityDocument.cs
- SecurityMessageProperty.cs
- FileLevelControlBuilderAttribute.cs
- ComboBoxRenderer.cs
- DynamicUpdateCommand.cs
- PermissionAttributes.cs
- WindowsBrush.cs
- DeclarativeCatalogPart.cs
- ControlIdConverter.cs
- DotAtomReader.cs
- DoubleConverter.cs
- AccessText.cs
- EdmConstants.cs
- AssociationProvider.cs
- ToolStripGrip.cs
- AffineTransform3D.cs
- ErrorHandler.cs
- CodeTypeDeclaration.cs
- ButtonStandardAdapter.cs
- GlobalItem.cs
- shaperfactory.cs
- SaveRecipientRequest.cs
- AnnotationMap.cs
- RectAnimation.cs
- ReadWriteSpinLock.cs
- RadioButton.cs
- Page.cs
- GradientStop.cs
- RepeaterItemEventArgs.cs
- X509Extension.cs
- ValidationSettings.cs
- DefaultObjectMappingItemCollection.cs
- EncryptedType.cs
- PageParserFilter.cs
- TextPointerBase.cs
- ContractMapping.cs
- CheckableControlBaseAdapter.cs
- GridViewDeleteEventArgs.cs
- XmlElementAttributes.cs
- ToolBarButton.cs
- DragEventArgs.cs
- VScrollBar.cs
- SchemaNotation.cs
- Cell.cs
- NativeMethods.cs
- WmlValidatorAdapter.cs
- FindRequestContext.cs
- SortedDictionary.cs
- ValidationResult.cs
- Int32RectConverter.cs
- HttpRuntimeSection.cs
- DataGridViewCellMouseEventArgs.cs
- LinkConverter.cs
- SchemaNames.cs
- PassportIdentity.cs
- IsolatedStorageSecurityState.cs
- GridView.cs
- MarkupExtensionReturnTypeAttribute.cs
- CodeThrowExceptionStatement.cs
- IItemProperties.cs
- RootProfilePropertySettingsCollection.cs
- FrameworkElementAutomationPeer.cs
- ModelTypeConverter.cs
- SqlCachedBuffer.cs
- SmiEventSink.cs
- XmlMembersMapping.cs
- BroadcastEventHelper.cs
- SqlFlattener.cs
- MetabaseServerConfig.cs
- Selection.cs
- PointCollection.cs
- _SecureChannel.cs
- XmlTextAttribute.cs
- DetailsViewInsertEventArgs.cs
- CodeIdentifier.cs
- ReverseInheritProperty.cs
- InvokeHandlers.cs
- EventWaitHandleSecurity.cs
- SqlPersistenceProviderFactory.cs
- Point3DValueSerializer.cs
- GlyphsSerializer.cs
- InputLanguageCollection.cs
- LabelEditEvent.cs
- WebPartConnectionCollection.cs
- ZipIOZip64EndOfCentralDirectoryLocatorBlock.cs
- DesignerActionItem.cs
- HitTestFilterBehavior.cs
- SafeWaitHandle.cs
- VisualBrush.cs