﻿<?xml version="1.0" encoding="utf-8"?><Type Name="InvalidProjectFileException" FullName="Microsoft.Build.BuildEngine.InvalidProjectFileException"><TypeSignature Language="C#" Value="public sealed class InvalidProjectFileException : Exception" /><AssemblyInfo><AssemblyName>Microsoft.Build.Engine</AssemblyName><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Base><BaseTypeName>System.Exception</BaseTypeName></Base><Interfaces /><Docs><remarks>To be added.</remarks><since version="2.0" /><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>This exception is thrown whenever there is a problem with the user's XML project file. The problem might be semantic or syntactical. If the problem is in the syntax, it can typically be caught by XSD validation. </para></summary></Docs><Members><Member MemberName=".ctor"><MemberSignature Language="C#" Value="public InvalidProjectFileException ();" /><MemberType>Constructor</MemberType><Parameters /><Docs><remarks>To be added.</remarks><since version="2.0" /><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Initializes a new instance of <see cref="T:Microsoft.Build.BuildEngine.InvalidProjectFileException" /> class. </para></summary></Docs><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName=".ctor"><MemberSignature Language="C#" Value="public InvalidProjectFileException (string message);" /><MemberType>Constructor</MemberType><Parameters><Parameter Name="message" Type="System.String" /></Parameters><Docs><remarks>To be added.</remarks><since version="2.0" /><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Initializes a new instance of <see cref="T:Microsoft.Build.BuildEngine.InvalidProjectFileException" /> class using the specified message.</para></summary><param name="message"><attribution license="cc4" from="Microsoft" modified="false" />The error message that explains the reason for the exception.</param></Docs><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName=".ctor"><MemberSignature Language="C#" Value="public InvalidProjectFileException (string message, Exception innerException);" /><MemberType>Constructor</MemberType><Parameters><Parameter Name="message" Type="System.String" /><Parameter Name="innerException" Type="System.Exception" /></Parameters><Docs><remarks>To be added.</remarks><since version="2.0" /><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Initializes a new instance of <see cref="T:Microsoft.Build.BuildEngine.InvalidProjectFileException" /> class using the specified error message and inner exception.</para></summary><param name="message"><attribution license="cc4" from="Microsoft" modified="false" />The error message that explains the reason for the exception.</param><param name="innerException"><attribution license="cc4" from="Microsoft" modified="false" />The exception that is the cause of the current excpetion. If the <paramref name="innerException" /> parameter is not a null reference (Nothing in vbprvb), the current exception is raised in a catch block that handles the inner exception.</param></Docs><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName=".ctor"><MemberSignature Language="C#" Value="public InvalidProjectFileException (System.Xml.XmlNode xmlNode, string message, string errorSubcategory, string errorCode, string helpKeyword);" /><MemberType>Constructor</MemberType><Parameters><Parameter Name="xmlNode" Type="System.Xml.XmlNode" /><Parameter Name="message" Type="System.String" /><Parameter Name="errorSubcategory" Type="System.String" /><Parameter Name="errorCode" Type="System.String" /><Parameter Name="helpKeyword" Type="System.String" /></Parameters><Docs><since version="2.0" /><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This constructor is preferred over the basic constructors.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Initializes a new instance of <see cref="T:Microsoft.Build.BuildEngine.InvalidProjectFileException" /> class using rich error information.</para></summary><param name="xmlNode"><attribution license="cc4" from="Microsoft" modified="false" />The XML node where the error is located. Can be null.</param><param name="message"><attribution license="cc4" from="Microsoft" modified="false" />The error message text for the exception.</param><param name="errorSubcategory"><attribution license="cc4" from="Microsoft" modified="false" />A description for the error. This parameter can be a null reference (Nothing in vbprvb).</param><param name="errorCode"><attribution license="cc4" from="Microsoft" modified="false" />The error code. This parameter can be a null reference (Nothing).</param><param name="helpKeyword"><attribution license="cc4" from="Microsoft" modified="false" />The F1-help keyword for the host IDE. Can be null.</param></Docs><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName=".ctor"><MemberSignature Language="C#" Value="public InvalidProjectFileException (string projectFile, int lineNumber, int columnNumber, int endLineNumber, int endColumnNumber, string message, string errorSubcategory, string errorCode, string helpKeyword);" /><MemberType>Constructor</MemberType><Parameters><Parameter Name="projectFile" Type="System.String" /><Parameter Name="lineNumber" Type="System.Int32" /><Parameter Name="columnNumber" Type="System.Int32" /><Parameter Name="endLineNumber" Type="System.Int32" /><Parameter Name="endColumnNumber" Type="System.Int32" /><Parameter Name="message" Type="System.String" /><Parameter Name="errorSubcategory" Type="System.String" /><Parameter Name="errorCode" Type="System.String" /><Parameter Name="helpKeyword" Type="System.String" /></Parameters><Docs><since version="2.0" /><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This constructor is preferred over the basic constructors.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Initializes a new instance of <see cref="T:Microsoft.Build.BuildEngine.InvalidProjectFileException" /> class using rich error information.</para></summary><param name="projectFile"><attribution license="cc4" from="Microsoft" modified="false" />The invalid project file. Can be an empty string.</param><param name="lineNumber"><attribution license="cc4" from="Microsoft" modified="false" />The invalid line number in the project. Set to zero if not available.</param><param name="columnNumber"><attribution license="cc4" from="Microsoft" modified="false" />The invalid column number in the project. Set to zero if not available.</param><param name="endLineNumber"><attribution license="cc4" from="Microsoft" modified="false" />The end of a range of invalid lines in the project. Set to zero if not available.</param><param name="endColumnNumber"><attribution license="cc4" from="Microsoft" modified="false" />The end of a range of invalid columns in the project. Set to zero if not available.</param><param name="message"><attribution license="cc4" from="Microsoft" modified="false" />The error message text for the exception.</param><param name="errorSubcategory"><attribution license="cc4" from="Microsoft" modified="false" />The description of the error. This parameter can be a null reference (Nothing in vbprvb).</param><param name="errorCode"><attribution license="cc4" from="Microsoft" modified="false" />The error code. This parameter can be a null reference (Nothing).</param><param name="helpKeyword"><attribution license="cc4" from="Microsoft" modified="false" />The F1-help keyword for the host IDE. This parameter can be a null reference (Nothing).</param></Docs><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="BaseMessage"><MemberSignature Language="C#" Value="public string BaseMessage { get; }" /><MemberType>Property</MemberType><ReturnValue><ReturnType>System.String</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks>To be added.</remarks><since version="2.0" /><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets the exception message, not including the project file.</para></summary></Docs><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="ColumnNumber"><MemberSignature Language="C#" Value="public int ColumnNumber { get; }" /><MemberType>Property</MemberType><ReturnValue><ReturnType>System.Int32</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks>To be added.</remarks><since version="2.0" /><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets the invalid column number, if any, in the project.</para></summary></Docs><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="EndColumnNumber"><MemberSignature Language="C#" Value="public int EndColumnNumber { get; }" /><MemberType>Property</MemberType><ReturnValue><ReturnType>System.Int32</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks>To be added.</remarks><since version="2.0" /><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets the last column number, if any, of a range of invalid columns in the project.</para></summary></Docs><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="EndLineNumber"><MemberSignature Language="C#" Value="public int EndLineNumber { get; }" /><MemberType>Property</MemberType><ReturnValue><ReturnType>System.Int32</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks>To be added.</remarks><since version="2.0" /><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets the last line number, if any, of a range of invalid lines in the project.</para></summary></Docs><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="ErrorCode"><MemberSignature Language="C#" Value="public string ErrorCode { get; }" /><MemberType>Property</MemberType><ReturnValue><ReturnType>System.String</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks>To be added.</remarks><since version="2.0" /><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets the error code, if any, associated with the exception message.</para></summary></Docs><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="ErrorSubcategory"><MemberSignature Language="C#" Value="public string ErrorSubcategory { get; }" /><MemberType>Property</MemberType><ReturnValue><ReturnType>System.String</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks>To be added.</remarks><since version="2.0" /><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets the error sub-category, if any that describes the type of this error.</para></summary></Docs><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="GetObjectData"><MemberSignature Language="C#" Value="public override void GetObjectData (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="info" Type="System.Runtime.Serialization.SerializationInfo" /><Parameter Name="context" Type="System.Runtime.Serialization.StreamingContext" /></Parameters><Docs><remarks>To be added.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with information about the exception.</para></summary><param name="info"><attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param><param name="context"><attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param></Docs></Member><Member MemberName="HelpKeyword"><MemberSignature Language="C#" Value="public string HelpKeyword { get; }" /><MemberType>Property</MemberType><ReturnValue><ReturnType>System.String</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks>To be added.</remarks><since version="2.0" /><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets the F1-help keyword, if any, associated with this error, for the host IDE.</para></summary></Docs><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="LineNumber"><MemberSignature Language="C#" Value="public int LineNumber { get; }" /><MemberType>Property</MemberType><ReturnValue><ReturnType>System.Int32</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks>To be added.</remarks><since version="2.0" /><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets the invalid line number, if any, in the project.</para></summary></Docs><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Message"><MemberSignature Language="C#" Value="public override string Message { get; }" /><MemberType>Property</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.String</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks>To be added.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets the exception message, including the affected project file, if any.</para></summary></Docs></Member><Member MemberName="ProjectFile"><MemberSignature Language="C#" Value="public string ProjectFile { get; }" /><MemberType>Property</MemberType><ReturnValue><ReturnType>System.String</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks>To be added.</remarks><since version="2.0" /><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets the project file, if any, associated with this exception.</para></summary></Docs><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member></Members></Type>