Click here to Skip to main content
15,895,667 members
Articles / Desktop Programming / XAML

Paste Date Time Stamp While Capturing Image in Windows Store App

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
20 Dec 2012CPOL4 min read 27.7K   423   7  
Here I am presenting you how can you paste date time in photo. This article will be helpful to those devs who want to add CamaraCaptureUI in their apps.
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>SharpDX</name>
    </assembly>
    <members>
        <member name="T:SharpDX.AngleSingle">
            <summary>
            Represents a unit independant angle using a single-precision floating-point
            internal representation.
            </summary>
        </member>
        <member name="F:SharpDX.AngleSingle.Degree">
            <summary>
            A value that specifies the size of a single degree.
            </summary>
        </member>
        <member name="F:SharpDX.AngleSingle.Minute">
            <summary>
            A value that specifies the size of a single minute.
            </summary>
        </member>
        <member name="F:SharpDX.AngleSingle.Second">
            <summary>
            A value that specifies the size of a single second.
            </summary>
        </member>
        <member name="F:SharpDX.AngleSingle.Radian">
            <summary>
            A value that specifies the size of a single radian.
            </summary>
        </member>
        <member name="F:SharpDX.AngleSingle.Milliradian">
            <summary>
            A value that specifies the size of a single milliradian.
            </summary>
        </member>
        <member name="F:SharpDX.AngleSingle.Gradian">
            <summary>
            A value that specifies the size of a single gradian.
            </summary>
        </member>
        <member name="F:SharpDX.AngleSingle.radians">
            <summary>
            The internal representation of the angle.
            </summary>
        </member>
        <member name="M:SharpDX.AngleSingle.#ctor(System.Single,SharpDX.AngleType)">
            <summary>
            Initializes a new instance of the SharpDX.AngleSingle structure with the
            given unit dependant angle and unit type.
            </summary>
            <param name="angle">A unit dependant measure of the angle.</param>
            <param name="type">The type of unit the angle argument is.</param>
        </member>
        <member name="M:SharpDX.AngleSingle.#ctor(System.Single,System.Single)">
            <summary>
            Initializes a new instance of the SharpDX.AngleSingle structure using the
            arc length formula (θ = s/r).
            </summary>
            <param name="arcLength">The measure of the arc.</param>
            <param name="radius">The radius of the circle.</param>
        </member>
        <member name="M:SharpDX.AngleSingle.Wrap">
            <summary>
            Wraps this SharpDX.AngleSingle to be in the range [π, -π].
            </summary>
        </member>
        <member name="M:SharpDX.AngleSingle.WrapPositive">
            <summary>
            Wraps this SharpDX.AngleSingle to be in the range [0, 2π).
            </summary>
        </member>
        <member name="M:SharpDX.AngleSingle.Wrap(SharpDX.AngleSingle)">
            <summary>
            Wraps the SharpDX.AngleSingle given in the value argument to be in the range [π, -π].
            </summary>
            <param name="value">A SharpDX.AngleSingle to wrap.</param>
            <returns>The SharpDX.AngleSingle that is wrapped.</returns>
        </member>
        <member name="M:SharpDX.AngleSingle.WrapPositive(SharpDX.AngleSingle)">
            <summary>
            Wraps the SharpDX.AngleSingle given in the value argument to be in the range [0, 2π).
            </summary>
            <param name="value">A SharpDX.AngleSingle to wrap.</param>
            <returns>The SharpDX.AngleSingle that is wrapped.</returns>
        </member>
        <member name="M:SharpDX.AngleSingle.Min(SharpDX.AngleSingle,SharpDX.AngleSingle)">
            <summary>
            Compares two SharpDX.AngleSingle instances and returns the smaller angle.
            </summary>
            <param name="left">The first SharpDX.AngleSingle instance to compare.</param>
            <param name="right">The second SharpDX.AngleSingle instance to compare.</param>
            <returns>The smaller of the two given SharpDX.AngleSingle instances.</returns>
        </member>
        <member name="M:SharpDX.AngleSingle.Max(SharpDX.AngleSingle,SharpDX.AngleSingle)">
            <summary>
            Compares two SharpDX.AngleSingle instances and returns the greater angle.
            </summary>
            <param name="left">The first SharpDX.AngleSingle instance to compare.</param>
            <param name="right">The second SharpDX.AngleSingle instance to compare.</param>
            <returns>The greater of the two given SharpDX.AngleSingle instances.</returns>
        </member>
        <member name="M:SharpDX.AngleSingle.Add(SharpDX.AngleSingle,SharpDX.AngleSingle)">
            <summary>
            Adds two SharpDX.AngleSingle objects and returns the result.
            </summary>
            <param name="left">The first object to add.</param>
            <param name="right">The second object to add.</param>
            <returns>The value of the two objects added together.</returns>
        </member>
        <member name="M:SharpDX.AngleSingle.Subtract(SharpDX.AngleSingle,SharpDX.AngleSingle)">
            <summary>
            Subtracts two SharpDX.AngleSingle objects and returns the result.
            </summary>
            <param name="left">The first object to subtract.</param>
            <param name="right">The second object to subtract.</param>
            <returns>The value of the two objects subtracted.</returns>
        </member>
        <member name="M:SharpDX.AngleSingle.Multiply(SharpDX.AngleSingle,SharpDX.AngleSingle)">
            <summary>
            Multiplies two SharpDX.AngleSingle objects and returns the result.
            </summary>
            <param name="left">The first object to multiply.</param>
            <param name="right">The second object to multiply.</param>
            <returns>The value of the two objects multiplied together.</returns>
        </member>
        <member name="M:SharpDX.AngleSingle.Divide(SharpDX.AngleSingle,SharpDX.AngleSingle)">
            <summary>
            Divides two SharpDX.AngleSingle objects and returns the result.
            </summary>
            <param name="left">The numerator object.</param>
            <param name="right">The denominator object.</param>
            <returns>The value of the two objects divided.</returns>
        </member>
        <member name="M:SharpDX.AngleSingle.op_Equality(SharpDX.AngleSingle,SharpDX.AngleSingle)">
            <summary>
            Returns a System.Boolean that indicates whether the values of two SharpDX.Angle
            objects are equal.
            </summary>
            <param name="left">The first object to compare.</param>
            <param name="right">The second object to compare.</param>
            <returns>True if the left and right parameters have the same value; otherwise, false.</returns>
        </member>
        <member name="M:SharpDX.AngleSingle.op_Inequality(SharpDX.AngleSingle,SharpDX.AngleSingle)">
            <summary>
            Returns a System.Boolean that indicates whether the values of two SharpDX.Angle
            objects are not equal.
            </summary>
            <param name="left">The first object to compare.</param>
            <param name="right">The second object to compare.</param>
            <returns>True if the left and right parameters do not have the same value; otherwise, false.</returns>
        </member>
        <member name="M:SharpDX.AngleSingle.op_LessThan(SharpDX.AngleSingle,SharpDX.AngleSingle)">
            <summary>
            Returns a System.Boolean that indicates whether a SharpDX.Angle
            object is less than another SharpDX.AngleSingle object.
            </summary>
            <param name="left">The first object to compare.</param>
            <param name="right">The second object to compare.</param>
            <returns>True if left is less than right; otherwise, false.</returns>
        </member>
        <member name="M:SharpDX.AngleSingle.op_GreaterThan(SharpDX.AngleSingle,SharpDX.AngleSingle)">
            <summary>
            Returns a System.Boolean that indicates whether a SharpDX.Angle
            object is greater than another SharpDX.AngleSingle object.
            </summary>
            <param name="left">The first object to compare.</param>
            <param name="right">The second object to compare.</param>
            <returns>True if left is greater than right; otherwise, false.</returns>
        </member>
        <member name="M:SharpDX.AngleSingle.op_LessThanOrEqual(SharpDX.AngleSingle,SharpDX.AngleSingle)">
            <summary>
            Returns a System.Boolean that indicates whether a SharpDX.Angle
            object is less than or equal to another SharpDX.AngleSingle object.
            </summary>
            <param name="left">The first object to compare.</param>
            <param name="right">The second object to compare.</param>
            <returns>True if left is less than or equal to right; otherwise, false.</returns>
        </member>
        <member name="M:SharpDX.AngleSingle.op_GreaterThanOrEqual(SharpDX.AngleSingle,SharpDX.AngleSingle)">
            <summary>
            Returns a System.Boolean that indicates whether a SharpDX.Angle
            object is greater than or equal to another SharpDX.AngleSingle object.
            </summary>
            <param name="left">The first object to compare.</param>
            <param name="right">The second object to compare.</param>
            <returns>True if left is greater than or equal to right; otherwise, false.</returns>
        </member>
        <member name="M:SharpDX.AngleSingle.op_UnaryPlus(SharpDX.AngleSingle)">
            <summary>
            Returns the value of the SharpDX.AngleSingle operand. (The sign of
            the operand is unchanged.)
            </summary>
            <param name="value">A SharpDX.AngleSingle object.</param>
            <returns>The value of the value parameter.</returns>
        </member>
        <member name="M:SharpDX.AngleSingle.op_UnaryNegation(SharpDX.AngleSingle)">
            <summary>
            Returns the the negated value of the SharpDX.AngleSingle operand.
            </summary>
            <param name="value">A SharpDX.AngleSingle object.</param>
            <returns>The negated value of the value parameter.</returns>
        </member>
        <member name="M:SharpDX.AngleSingle.op_Addition(SharpDX.AngleSingle,SharpDX.AngleSingle)">
            <summary>
            Adds two SharpDX.AngleSingle objects and returns the result.
            </summary>
            <param name="left">The first object to add.</param>
            <param name="right">The second object to add.</param>
            <returns>The value of the two objects added together.</returns>
        </member>
        <member name="M:SharpDX.AngleSingle.op_Subtraction(SharpDX.AngleSingle,SharpDX.AngleSingle)">
            <summary>
            Subtracts two SharpDX.AngleSingle objects and returns the result.
            </summary>
            <param name="left">The first object to subtract</param>
            <param name="right">The second object to subtract.</param>
            <returns>The value of the two objects subtracted.</returns>
        </member>
        <member name="M:SharpDX.AngleSingle.op_Multiply(SharpDX.AngleSingle,SharpDX.AngleSingle)">
            <summary>
            Multiplies two SharpDX.AngleSingle objects and returns the result.
            </summary>
            <param name="left">The first object to multiply.</param>
            <param name="right">The second object to multiply.</param>
            <returns>The value of the two objects multiplied together.</returns>
        </member>
        <member name="M:SharpDX.AngleSingle.op_Division(SharpDX.AngleSingle,SharpDX.AngleSingle)">
            <summary>
            Divides two SharpDX.AngleSingle objects and returns the result.
            </summary>
            <param name="left">The numerator object.</param>
            <param name="right">The denominator object.</param>
            <returns>The value of the two objects divided.</returns>
        </member>
        <member name="M:SharpDX.AngleSingle.CompareTo(System.Object)">
            <summary>
            Compares this instance to a specified object and returns an integer that
            indicates whether the value of this instance is less than, equal to, or greater
            than the value of the specified object.
            </summary>
            <param name="other">The object to compare.</param>
            <returns>
            A signed integer that indicates the relationship of the current instance
            to the obj parameter. If the value is less than zero, the current instance
            is less than the other. If the value is zero, the current instance is equal
            to the other. If the value is greater than zero, the current instance is
            greater than the other.
            </returns>
        </member>
        <member name="M:SharpDX.AngleSingle.CompareTo(SharpDX.AngleSingle)">
            <summary>
            Compares this instance to a second SharpDX.AngleSingle and returns
            an integer that indicates whether the value of this instance is less than,
            equal to, or greater than the value of the specified object.
            </summary>
            <param name="other">The object to compare.</param>
            <returns>
            A signed integer that indicates the relationship of the current instance
            to the obj parameter. If the value is less than zero, the current instance
            is less than the other. If the value is zero, the current instance is equal
            to the other. If the value is greater than zero, the current instance is
            greater than the other.
            </returns>
        </member>
        <member name="M:SharpDX.AngleSingle.Equals(SharpDX.AngleSingle)">
            <summary>
            Returns a value that indicates whether the current instance and a specified
            SharpDX.AngleSingle object have the same value.
            </summary>
            <param name="other">The object to compare.</param>
            <returns>
            Returns true if this SharpDX.AngleSingle object and another have the same value;
            otherwise, false.
            </returns>
        </member>
        <member name="M:SharpDX.AngleSingle.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.AngleSingle.ToString(System.String)">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <param name="format">The format.</param>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.AngleSingle.ToString(System.IFormatProvider)">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <param name="formatProvider">The format provider.</param>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.AngleSingle.ToString(System.String,System.IFormatProvider)">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <param name="format">The format.</param>
            <param name="formatProvider">The format provider.</param>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.AngleSingle.GetHashCode">
            <summary>
            Returns a hash code for this SharpDX.AngleSingle instance.
            </summary>
            <returns>A 32-bit signed integer hash code.</returns>
        </member>
        <member name="M:SharpDX.AngleSingle.Equals(System.Object)">
            <summary>
            Returns a value that indicates whether the current instance and a specified
            object have the same value.
            </summary>
            <param name="obj">The object to compare.</param>
            <returns>
            Returns true if the obj parameter is a SharpDX.AngleSingle object or a type
            capable of implicit conversion to a SharpDX.AngleSingle value, and
            its value is equal to the value of the current SharpDX.Angle
            object; otherwise, false.
            </returns>
        </member>
        <member name="P:SharpDX.AngleSingle.Revolutions">
            <summary>
            Gets or sets the total number of revolutions this SharpDX.AngleSingle represents.
            </summary>
        </member>
        <member name="P:SharpDX.AngleSingle.Degrees">
            <summary>
            Gets or sets the total number of degrees this SharpDX.AngleSingle represents.
            </summary>
        </member>
        <member name="P:SharpDX.AngleSingle.Minutes">
            <summary>
            Gets or sets the minutes component of the degrees this SharpDX.AngleSingle represents.
            When setting the minutes, if the value is in the range (-60, 60) the whole degrees are
            not changed; otherwise, the whole degrees may be changed. Fractional values may set
            the seconds component.
            </summary>
        </member>
        <member name="P:SharpDX.AngleSingle.Seconds">
            <summary>
            Gets or sets the seconds of the degrees this SharpDX.AngleSingle represents.
            When setting te seconds, if the value is in the range (-60, 60) the whole minutes
            or whole degrees are not changed; otherwise, the whole minutes or whole degrees
            may be changed.
            </summary>
        </member>
        <member name="P:SharpDX.AngleSingle.Radians">
            <summary>
            Gets or sets the total number of radians this SharpDX.AngleSingle represents.
            </summary>
        </member>
        <member name="P:SharpDX.AngleSingle.Milliradians">
            <summary>
            Gets or sets the total number of milliradians this SharpDX.AngleSingle represents.
            One milliradian is equal to 1/(2000π).
            </summary>
        </member>
        <member name="P:SharpDX.AngleSingle.Gradians">
            <summary>
            Gets or sets the total number of gradians this SharpDX.AngleSingle represents.
            </summary>
        </member>
        <member name="P:SharpDX.AngleSingle.IsRight">
            <summary>
            Gets a System.Boolean that determines whether this SharpDX.Angle
            is a right angle (i.e. 90° or π/2).
            </summary>
        </member>
        <member name="P:SharpDX.AngleSingle.IsStraight">
            <summary>
            Gets a System.Boolean that determines whether this SharpDX.Angle
            is a straight angle (i.e. 180° or π).
            </summary>
        </member>
        <member name="P:SharpDX.AngleSingle.IsFullRotation">
            <summary>
            Gets a System.Boolean that determines whether this SharpDX.Angle
            is a full rotation angle (i.e. 360° or 2π).
            </summary>
        </member>
        <member name="P:SharpDX.AngleSingle.IsOblique">
            <summary>
            Gets a System.Boolean that determines whether this SharpDX.Angle
            is an oblique angle (i.e. is not 90° or a multiple of 90°).
            </summary>
        </member>
        <member name="P:SharpDX.AngleSingle.IsAcute">
            <summary>
            Gets a System.Boolean that determines whether this SharpDX.Angle
            is an acute angle (i.e. less than 90° but greater than 0°).
            </summary>
        </member>
        <member name="P:SharpDX.AngleSingle.IsObtuse">
            <summary>
            Gets a System.Boolean that determines whether this SharpDX.Angle
            is an obtuse angle (i.e. greater than 90° but less than 180°).
            </summary>
        </member>
        <member name="P:SharpDX.AngleSingle.IsReflex">
            <summary>
            Gets a System.Boolean that determines whether this SharpDX.Angle
            is a reflex angle (i.e. greater than 180° but less than 360°).
            </summary>
        </member>
        <member name="P:SharpDX.AngleSingle.Complement">
            <summary>
            Gets a SharpDX.AngleSingle instance that complements this angle (i.e. the two angles add to 90°).
            </summary>
        </member>
        <member name="P:SharpDX.AngleSingle.Supplement">
            <summary>
            Gets a SharpDX.AngleSingle instance that supplements this angle (i.e. the two angles add to 180°).
            </summary>
        </member>
        <member name="P:SharpDX.AngleSingle.ZeroAngle">
            <summary>
            Gets a new SharpDX.AngleSingle instance that represents the zero angle (i.e. 0°).
            </summary>
        </member>
        <member name="P:SharpDX.AngleSingle.RightAngle">
            <summary>
            Gets a new SharpDX.AngleSingle instance that represents the right angle (i.e. 90° or π/2).
            </summary>
        </member>
        <member name="P:SharpDX.AngleSingle.StraightAngle">
            <summary>
            Gets a new SharpDX.AngleSingle instance that represents the straight angle (i.e. 180° or π).
            </summary>
        </member>
        <member name="P:SharpDX.AngleSingle.FullRotationAngle">
            <summary>
            Gets a new SharpDX.AngleSingle instance that represents the full rotation angle (i.e. 360° or 2π).
            </summary>
        </member>
        <member name="T:SharpDX.BoundingBox">
            <summary>
            Represents an axis-aligned bounding box in three dimensional space.
            </summary>
        </member>
        <member name="F:SharpDX.BoundingBox.Minimum">
            <summary>
            The minimum point of the box.
            </summary>
        </member>
        <member name="F:SharpDX.BoundingBox.Maximum">
            <summary>
            The maximum point of the box.
            </summary>
        </member>
        <member name="M:SharpDX.BoundingBox.#ctor(SharpDX.Vector3,SharpDX.Vector3)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.BoundingBox"/> struct.
            </summary>
            <param name="minimum">The minimum vertex of the bounding box.</param>
            <param name="maximum">The maximum vertex of the bounding box.</param>
        </member>
        <member name="M:SharpDX.BoundingBox.GetCorners">
            <summary>
            Retrieves the eight corners of the bounding box.
            </summary>
            <returns>An array of points representing the eight corners of the bounding box.</returns>
        </member>
        <member name="M:SharpDX.BoundingBox.Intersects(SharpDX.Ray@)">
            <summary>
            Determines if there is an intersection between the current object and a <see cref="T:SharpDX.Ray"/>.
            </summary>
            <param name="ray">The ray to test.</param>
            <returns>Whether the two objects intersected.</returns>
        </member>
        <member name="M:SharpDX.BoundingBox.Intersects(SharpDX.Ray@,System.Single@)">
            <summary>
            Determines if there is an intersection between the current object and a <see cref="T:SharpDX.Ray"/>.
            </summary>
            <param name="ray">The ray to test.</param>
            <param name="distance">When the method completes, contains the distance of the intersection,
            or 0 if there was no intersection.</param>
            <returns>Whether the two objects intersected.</returns>
        </member>
        <member name="M:SharpDX.BoundingBox.Intersects(SharpDX.Ray@,SharpDX.Vector3@)">
            <summary>
            Determines if there is an intersection between the current object and a <see cref="T:SharpDX.Ray"/>.
            </summary>
            <param name="ray">The ray to test.</param>
            <param name="point">When the method completes, contains the point of intersection,
            or <see cref="F:SharpDX.Vector3.Zero"/> if there was no intersection.</param>
            <returns>Whether the two objects intersected.</returns>
        </member>
        <member name="M:SharpDX.BoundingBox.Intersects(SharpDX.Plane@)">
            <summary>
            Determines if there is an intersection between the current object and a <see cref="T:SharpDX.Plane"/>.
            </summary>
            <param name="plane">The plane to test.</param>
            <returns>Whether the two objects intersected.</returns>
        </member>
        <member name="M:SharpDX.BoundingBox.Intersects(SharpDX.BoundingBox@)">
            <summary>
            Determines if there is an intersection between the current object and a <see cref="T:SharpDX.BoundingBox"/>.
            </summary>
            <param name="box">The box to test.</param>
            <returns>Whether the two objects intersected.</returns>
        </member>
        <member name="M:SharpDX.BoundingBox.Intersects(SharpDX.BoundingSphere@)">
            <summary>
            Determines if there is an intersection between the current object and a <see cref="T:SharpDX.BoundingSphere"/>.
            </summary>
            <param name="sphere">The sphere to test.</param>
            <returns>Whether the two objects intersected.</returns>
        </member>
        <member name="M:SharpDX.BoundingBox.Contains(SharpDX.Vector3@)">
            <summary>
            Determines whether the current objects contains a point.
            </summary>
            <param name="point">The point to test.</param>
            <returns>The type of containment the two objects have.</returns>
        </member>
        <member name="M:SharpDX.BoundingBox.Contains(SharpDX.BoundingBox@)">
            <summary>
            Determines whether the current objects contains a <see cref="T:SharpDX.BoundingBox"/>.
            </summary>
            <param name="box">The box to test.</param>
            <returns>The type of containment the two objects have.</returns>
        </member>
        <member name="M:SharpDX.BoundingBox.Contains(SharpDX.BoundingSphere@)">
            <summary>
            Determines whether the current objects contains a <see cref="T:SharpDX.BoundingSphere"/>.
            </summary>
            <param name="sphere">The sphere to test.</param>
            <returns>The type of containment the two objects have.</returns>
        </member>
        <member name="M:SharpDX.BoundingBox.FromPoints(SharpDX.Vector3[],SharpDX.BoundingBox@)">
            <summary>
            Constructs a <see cref="T:SharpDX.BoundingBox"/> that fully contains the given points.
            </summary>
            <param name="points">The points that will be contained by the box.</param>
            <param name="result">When the method completes, contains the newly constructed bounding box.</param>
            <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="points"/> is <c>null</c>.</exception>
        </member>
        <member name="M:SharpDX.BoundingBox.FromPoints(SharpDX.Vector3[])">
            <summary>
            Constructs a <see cref="T:SharpDX.BoundingBox"/> that fully contains the given points.
            </summary>
            <param name="points">The points that will be contained by the box.</param>
            <returns>The newly constructed bounding box.</returns>
            <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="points"/> is <c>null</c>.</exception>
        </member>
        <member name="M:SharpDX.BoundingBox.FromSphere(SharpDX.BoundingSphere@,SharpDX.BoundingBox@)">
            <summary>
            Constructs a <see cref="T:SharpDX.BoundingBox"/> from a given sphere.
            </summary>
            <param name="sphere">The sphere that will designate the extents of the box.</param>
            <param name="result">When the method completes, contains the newly constructed bounding box.</param>
        </member>
        <member name="M:SharpDX.BoundingBox.FromSphere(SharpDX.BoundingSphere)">
            <summary>
            Constructs a <see cref="T:SharpDX.BoundingBox"/> from a given sphere.
            </summary>
            <param name="sphere">The sphere that will designate the extents of the box.</param>
            <returns>The newly constructed bounding box.</returns>
        </member>
        <member name="M:SharpDX.BoundingBox.Merge(SharpDX.BoundingBox@,SharpDX.BoundingBox@,SharpDX.BoundingBox@)">
            <summary>
            Constructs a <see cref="T:SharpDX.BoundingBox"/> that is as large as the total combined area of the two specified boxes.
            </summary>
            <param name="value1">The first box to merge.</param>
            <param name="value2">The second box to merge.</param>
            <param name="result">When the method completes, contains the newly constructed bounding box.</param>
        </member>
        <member name="M:SharpDX.BoundingBox.Merge(SharpDX.BoundingBox,SharpDX.BoundingBox)">
            <summary>
            Constructs a <see cref="T:SharpDX.BoundingBox"/> that is as large as the total combined area of the two specified boxes.
            </summary>
            <param name="value1">The first box to merge.</param>
            <param name="value2">The second box to merge.</param>
            <returns>The newly constructed bounding box.</returns>
        </member>
        <member name="M:SharpDX.BoundingBox.op_Equality(SharpDX.BoundingBox,SharpDX.BoundingBox)">
            <summary>
            Tests for equality between two objects.
            </summary>
            <param name="left">The first value to compare.</param>
            <param name="right">The second value to compare.</param>
            <returns><c>true</c> if <paramref name="left"/> has the same value as <paramref name="right"/>; otherwise, <c>false</c>.</returns>
        </member>
        <member name="M:SharpDX.BoundingBox.op_Inequality(SharpDX.BoundingBox,SharpDX.BoundingBox)">
            <summary>
            Tests for inequality between two objects.
            </summary>
            <param name="left">The first value to compare.</param>
            <param name="right">The second value to compare.</param>
            <returns><c>true</c> if <paramref name="left"/> has a different value than <paramref name="right"/>; otherwise, <c>false</c>.</returns>
        </member>
        <member name="M:SharpDX.BoundingBox.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.BoundingBox.ToString(System.String)">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <param name="format">The format.</param>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.BoundingBox.ToString(System.IFormatProvider)">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <param name="formatProvider">The format provider.</param>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.BoundingBox.ToString(System.String,System.IFormatProvider)">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <param name="format">The format.</param>
            <param name="formatProvider">The format provider.</param>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.BoundingBox.GetHashCode">
            <summary>
            Returns a hash code for this instance.
            </summary>
            <returns>
            A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. 
            </returns>
        </member>
        <member name="M:SharpDX.BoundingBox.Equals(SharpDX.BoundingBox)">
            <summary>
            Determines whether the specified <see cref="T:SharpDX.Vector4"/> is equal to this instance.
            </summary>
            <param name="value">The <see cref="T:SharpDX.Vector4"/> to compare with this instance.</param>
            <returns>
            <c>true</c> if the specified <see cref="T:SharpDX.Vector4"/> is equal to this instance; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="M:SharpDX.BoundingBox.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to this instance.
            </summary>
            <param name="value">The <see cref="T:System.Object"/> to compare with this instance.</param>
            <returns>
            <c>true</c> if the specified <see cref="T:System.Object"/> is equal to this instance; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="T:SharpDX.BoundingFrustum">
            <summary>
            Defines a frustum which can be used in frustum culling, zoom to Extents (zoom to fit) operations, 
            (matrix, frustum, camera) interchange, and many kind of intersection testing.
            </summary>
        </member>
        <member name="M:SharpDX.BoundingFrustum.#ctor(SharpDX.Matrix)">
            <summary>
            Creates a new instance of BoundingFrustum.
            </summary>
            <param name="matrix">Combined matrix that usually takes view × projection matrix.</param>
        </member>
        <member name="M:SharpDX.BoundingFrustum.Equals(SharpDX.BoundingFrustum)">
            <summary>
            Determines whether the specified <see cref="T:SharpDX.BoundingFrustum"/> is equal to this instance.
            </summary>
            <param name="other">The <see cref="T:SharpDX.BoundingFrustum"/> to compare with this instance.</param>
            <returns>
              <c>true</c> if the specified <see cref="T:SharpDX.BoundingFrustum"/> is equal to this instance; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="M:SharpDX.BoundingFrustum.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to this instance.
            </summary>
            <param name="obj">The <see cref="T:System.Object"/> to compare with this instance.</param>
            <returns>
              <c>true</c> if the specified <see cref="T:System.Object"/> is equal to this instance; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="M:SharpDX.BoundingFrustum.op_Equality(SharpDX.BoundingFrustum,SharpDX.BoundingFrustum)">
            <summary>
            Implements the operator ==.
            </summary>
            <param name="left">The left.</param>
            <param name="right">The right.</param>
            <returns>
            The result of the operator.
            </returns>
        </member>
        <member name="M:SharpDX.BoundingFrustum.op_Inequality(SharpDX.BoundingFrustum,SharpDX.BoundingFrustum)">
            <summary>
            Implements the operator !=.
            </summary>
            <param name="left">The left.</param>
            <param name="right">The right.</param>
            <returns>
            The result of the operator.
            </returns>
        </member>
        <member name="M:SharpDX.BoundingFrustum.FromCamera(SharpDX.Vector3,SharpDX.Vector3,SharpDX.Vector3,System.Single,System.Single,System.Single,System.Single)">
            <summary>
            Creates a new frustum relaying on perspective camera parameters
            </summary>
            <param name="cameraPos">The camera pos.</param>
            <param name="lookDir">The look dir.</param>
            <param name="upDir">Up dir.</param>
            <param name="fov">The fov.</param>
            <param name="znear">The znear.</param>
            <param name="zfar">The zfar.</param>
            <param name="aspect">The aspect.</param>
            <returns>The bouding frustum calculated from perspective camera</returns>
        </member>
        <member name="M:SharpDX.BoundingFrustum.FromCamera(SharpDX.FrustumCameraParams)">
            <summary>
            Creates a new frustum relaying on perspective camera parameters
            </summary>
            <param name="cameraParams">The camera params.</param>
            <returns>The bouding frustum from camera params</returns>
        </member>
        <member name="M:SharpDX.BoundingFrustum.GetCorners">
            <summary>
            Returns the 8 corners of the frustum, element0 is Near1 (near right down corner)
            , element1 is Near2 (near right top corner)
            , element2 is Near3 (near Left top corner)
            , element3 is Near4 (near Left down corner)
            , element4 is Far1 (far right down corner)
            , element5 is Far2 (far right top corner)
            , element6 is Far3 (far left top corner)
            , element7 is Far4 (far left down corner)
            </summary>
            <returns>The 8 corners of the frustum</returns>
        </member>
        <member name="M:SharpDX.BoundingFrustum.GetCameraParams">
            <summary>
            Extracts perspective camera parameters from the frustum, dosn't work with orthographic frustums.
            </summary>
            <returns>Perspective camera parameters from the frustum</returns>
        </member>
        <member name="M:SharpDX.BoundingFrustum.Contains(SharpDX.Vector3@)">
            <summary>
            Checks whether a point lay inside, intersects or lay outside the frustum.
            </summary>
            <param name="point">The point.</param>
            <returns>Type of the containment</returns>
        </member>
        <member name="M:SharpDX.BoundingFrustum.Contains(SharpDX.Vector3)">
            <summary>
            Checks whether a point lay inside, intersects or lay outside the frustum.
            </summary>
            <param name="point">The point.</param>
            <returns>Type of the containment</returns>
        </member>
        <member name="M:SharpDX.BoundingFrustum.Contains(SharpDX.Vector3[])">
            <summary>
            Checks whether a group of points lay totally inside the frustum (Contains), or lay partially inside the frustum (Intersects), or lay outside the frustum (Disjoint).
            </summary>
            <param name="points">The points.</param>
            <returns>Type of the containment</returns>
        </member>
        <member name="M:SharpDX.BoundingFrustum.Contains(SharpDX.Vector3[],SharpDX.ContainmentType@)">
            <summary>
            Checks whether a group of points lay totally inside the frsutrum (Contains), or lay partially inside the frustum (Intersects), or lay outside the frustum (Disjoint).
            </summary>
            <param name="points">The points.</param>
            <param name="result">Type of the containment.</param>
        </member>
        <member name="M:SharpDX.BoundingFrustum.Contains(SharpDX.BoundingBox@)">
            <summary>
            Determines the intersection relationship between the frustum and a bounding box.
            </summary>
            <param name="box">The box.</param>
            <returns>Type of the containment</returns>
        </member>
        <member name="M:SharpDX.BoundingFrustum.Contains(SharpDX.BoundingBox@,SharpDX.ContainmentType@)">
            <summary>
            Determines the intersection relationship between the frustum and a bounding box.
            </summary>
            <param name="box">The box.</param>
            <param name="result">Type of the containment.</param>
        </member>
        <member name="M:SharpDX.BoundingFrustum.Contains(SharpDX.BoundingSphere@)">
            <summary>
            Determines the intersection relationship between the frustum and a bounding sphere.
            </summary>
            <param name="sphere">The sphere.</param>
            <returns>Type of the containment</returns>
        </member>
        <member name="M:SharpDX.BoundingFrustum.Contains(SharpDX.BoundingSphere@,SharpDX.ContainmentType@)">
            <summary>
            Determines the intersection relationship between the frustum and a bounding sphere.
            </summary>
            <param name="sphere">The sphere.</param>
            <param name="result">Type of the containment.</param>
        </member>
        <member name="M:SharpDX.BoundingFrustum.Contains(SharpDX.BoundingFrustum@)">
            <summary>
            Determines the intersection relationship between the frustum and another bounding frustum.
            </summary>
            <param name="frustum">The frustum.</param>
            <returns>Type of the containment</returns>
        </member>
        <member name="M:SharpDX.BoundingFrustum.Contains(SharpDX.BoundingFrustum@,SharpDX.ContainmentType@)">
            <summary>
            Determines the intersection relationship between the frustum and another bounding frustum.
            </summary>
            <param name="frustum">The frustum.</param>
            <param name="result">Type of the containment.</param>
        </member>
        <member name="M:SharpDX.BoundingFrustum.Intersects(SharpDX.BoundingSphere@)">
            <summary>
            Checks whether the current BoundingFrustum intersects a BoundingSphere.
            </summary>
            <param name="sphere">The sphere.</param>
            <returns>Type of the containment</returns>
        </member>
        <member name="M:SharpDX.BoundingFrustum.Intersects(SharpDX.BoundingSphere@,System.Boolean@)">
            <summary>
            Checks whether the current BoundingFrustum intersects a BoundingSphere.
            </summary>
            <param name="sphere">The sphere.</param>
            <param name="result">Set to <c>true</c> if the current BoundingFrustum intersects a BoundingSphere.</param>
        </member>
        <member name="M:SharpDX.BoundingFrustum.Intersects(SharpDX.BoundingBox@)">
            <summary>
            Checks whether the current BoundingFrustum intersects a BoundingBox.
            </summary>
            <param name="box">The box.</param>
            <returns><c>true</c> if the current BoundingFrustum intersects a BoundingSphere.</returns>
        </member>
        <member name="M:SharpDX.BoundingFrustum.Intersects(SharpDX.BoundingBox@,System.Boolean@)">
            <summary>
            Checks whether the current BoundingFrustum intersects a BoundingBox.
            </summary>
            <param name="box">The box.</param>
            <param name="result"><c>true</c> if the current BoundingFrustum intersects a BoundingSphere.</param>
        </member>
        <member name="M:SharpDX.BoundingFrustum.Intersects(SharpDX.Plane@)">
            <summary>
            Checks whether the current BoundingFrustum intersects the specified Plane.
            </summary>
            <param name="plane">The plane.</param>
            <returns>Plane intersection type.</returns>
        </member>
        <member name="M:SharpDX.BoundingFrustum.Intersects(SharpDX.Plane@,SharpDX.PlaneIntersectionType@)">
            <summary>
            Checks whether the current BoundingFrustum intersects the specified Plane.
            </summary>
            <param name="plane">The plane.</param>
            <param name="result">Plane intersection type.</param>
        </member>
        <member name="M:SharpDX.BoundingFrustum.Intersects(SharpDX.BoundingFrustum@)">
            <summary>
            Checks whether the current BoundingFrustum intersects with another BoundingFrustum.
            </summary>
            <param name="frustum">The frustum.</param>
            <returns><c>true</c> if the current BoundingFrustum intersects with another BoundingFrustum.</returns>
        </member>
        <member name="M:SharpDX.BoundingFrustum.Intersects(SharpDX.BoundingFrustum@,System.Boolean@)">
            <summary>
            Checks whether the current BoundingFrustum intersects with another BoundingFrustum.
            </summary>
            <param name="frustum">The frustum.</param>
            <param name="result"><c>true</c> if the current BoundingFrustum intersects with another BoundingFrustum.</param>
        </member>
        <member name="M:SharpDX.BoundingFrustum.GetWidthAtDepth(System.Single)">
            <summary>
            Get the width of the frustum at specified depth.
            </summary>
            <param name="depth">the depth at which to calculate frustum width.</param>
            <returns>With of the frustum at the specified depth</returns>
        </member>
        <member name="M:SharpDX.BoundingFrustum.GetHeightAtDepth(System.Single)">
            <summary>
            Get the height of the frustum at specified depth.
            </summary>
            <param name="depth">the depth at which to calculate frustum height.</param>
            <returns>Height of the frustum at the specified depth</returns>
        </member>
        <member name="M:SharpDX.BoundingFrustum.Intersects(SharpDX.Ray@)">
            <summary>
            Checks whether the current BoundingFrustum intersects the specified Ray.
            </summary>
            <param name="ray">The ray.</param>
            <returns><c>true</c> if the current BoundingFrustum intersects the specified Ray.</returns>
        </member>
        <member name="M:SharpDX.BoundingFrustum.Intersects(SharpDX.Ray@,System.Nullable{System.Single}@,System.Nullable{System.Single}@)">
            <summary>
            Checks whether the current BoundingFrustum intersects the specified Ray.
            </summary>
            <param name="ray">The Ray to check for intersection with.</param>
            <param name="inDistance">The distance at which the ray enters the frustum if there is an intersection and the ray starts outside the frustum.</param>
            <param name="outDistance">The distance at which the ray exits the frustum if there is an intersection.</param>
            <returns><c>true</c> if the current BoundingFrustum intersects the specified Ray.</returns>
        </member>
        <member name="M:SharpDX.BoundingFrustum.GetZoomToExtentsShiftDistance(SharpDX.Vector3[])">
            <summary>
            Get the distance which when added to camera position along the lookat direction will do the effect of zoom to extents (zoom to fit) operation,
            so all the passed points will fit in the current view.
            if the returned value is poistive, the camera will move toward the lookat direction (ZoomIn).
            if the returned value is negative, the camera will move in the revers direction of the lookat direction (ZoomOut).
            </summary>
            <param name="points">The points.</param>
            <returns>The zoom to fit distance</returns>
        </member>
        <member name="M:SharpDX.BoundingFrustum.GetZoomToExtentsShiftDistance(SharpDX.BoundingBox@)">
            <summary>
            Get the distance which when added to camera position along the lookat direction will do the effect of zoom to extents (zoom to fit) operation,
            so all the passed points will fit in the current view.
            if the returned value is poistive, the camera will move toward the lookat direction (ZoomIn).
            if the returned value is negative, the camera will move in the revers direction of the lookat direction (ZoomOut).
            </summary>
            <param name="boundingBox">The bounding box.</param>
            <returns>The zoom to fit distance</returns>
        </member>
        <member name="M:SharpDX.BoundingFrustum.GetZoomToExtentsShiftVector(SharpDX.Vector3[])">
            <summary>
            Get the vector shift which when added to camera position will do the effect of zoom to extents (zoom to fit) operation,
            so all the passed points will fit in the current view.
            </summary>
            <param name="points">The points.</param>
            <returns>The zoom to fit vector</returns>
        </member>
        <member name="M:SharpDX.BoundingFrustum.GetZoomToExtentsShiftVector(SharpDX.BoundingBox@)">
            <summary>
            Get the vector shift which when added to camera position will do the effect of zoom to extents (zoom to fit) operation,
            so all the passed points will fit in the current view.
            </summary>
            <param name="boundingBox">The bounding box.</param>
            <returns>The zoom to fit vector</returns>
        </member>
        <member name="P:SharpDX.BoundingFrustum.Matrix">
            <summary>
            Gets or sets the Matrix that describes this bounding frustum.
            </summary>
        </member>
        <member name="P:SharpDX.BoundingFrustum.Near">
            <summary>
            Gets the near plane of the BoundingFrustum.
            </summary>
        </member>
        <member name="P:SharpDX.BoundingFrustum.Far">
            <summary>
            Gets the far plane of the BoundingFrustum.
            </summary>
        </member>
        <member name="P:SharpDX.BoundingFrustum.Left">
            <summary>
            Gets the left plane of the BoundingFrustum.
            </summary>
        </member>
        <member name="P:SharpDX.BoundingFrustum.Right">
            <summary>
            Gets the right plane of the BoundingFrustum.
            </summary>
        </member>
        <member name="P:SharpDX.BoundingFrustum.Top">
            <summary>
            Gets the top plane of the BoundingFrustum.
            </summary>
        </member>
        <member name="P:SharpDX.BoundingFrustum.Bottom">
            <summary>
            Gets the bottom plane of the BoundingFrustum.
            </summary>
        </member>
        <member name="P:SharpDX.BoundingFrustum.IsOrthographic">
            <summary>
            Indicate whether the current BoundingFrustrum is Orthographic.
            </summary>
            <value>
            	<c>true</c> if the current BoundingFrustrum is Orthographic; otherwise, <c>false</c>.
            </value>
        </member>
        <member name="T:SharpDX.BoundingSphere">
            <summary>
            Represents a bounding sphere in three dimensional space.
            </summary>
        </member>
        <member name="F:SharpDX.BoundingSphere.Center">
            <summary>
            The center of the sphere in three dimensional space.
            </summary>
        </member>
        <member name="F:SharpDX.BoundingSphere.Radius">
            <summary>
            The radious of the sphere.
            </summary>
        </member>
        <member name="M:SharpDX.BoundingSphere.#ctor(SharpDX.Vector3,System.Single)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.BoundingBox"/> struct.
            </summary>
            <param name="center">The center of the sphere in three dimensional space.</param>
            <param name="radius">The radius of the sphere.</param>
        </member>
        <member name="M:SharpDX.BoundingSphere.Intersects(SharpDX.Ray@)">
            <summary>
            Determines if there is an intersection between the current object and a <see cref="T:SharpDX.Ray"/>.
            </summary>
            <param name="ray">The ray to test.</param>
            <returns>Whether the two objects intersected.</returns>
        </member>
        <member name="M:SharpDX.BoundingSphere.Intersects(SharpDX.Ray@,System.Single@)">
            <summary>
            Determines if there is an intersection between the current object and a <see cref="T:SharpDX.Ray"/>.
            </summary>
            <param name="ray">The ray to test.</param>
            <param name="distance">When the method completes, contains the distance of the intersection,
            or 0 if there was no intersection.</param>
            <returns>Whether the two objects intersected.</returns>
        </member>
        <member name="M:SharpDX.BoundingSphere.Intersects(SharpDX.Ray@,SharpDX.Vector3@)">
            <summary>
            Determines if there is an intersection between the current object and a <see cref="T:SharpDX.Ray"/>.
            </summary>
            <param name="ray">The ray to test.</param>
            <param name="point">When the method completes, contains the point of intersection,
            or <see cref="F:SharpDX.Vector3.Zero"/> if there was no intersection.</param>
            <returns>Whether the two objects intersected.</returns>
        </member>
        <member name="M:SharpDX.BoundingSphere.Intersects(SharpDX.Plane@)">
            <summary>
            Determines if there is an intersection between the current object and a <see cref="T:SharpDX.Plane"/>.
            </summary>
            <param name="plane">The plane to test.</param>
            <returns>Whether the two objects intersected.</returns>
        </member>
        <member name="M:SharpDX.BoundingSphere.Intersects(SharpDX.Vector3@,SharpDX.Vector3@,SharpDX.Vector3@)">
            <summary>
            Determines if there is an intersection between the current object and a triangle.
            </summary>
            <param name="vertex1">The first vertex of the triangle to test.</param>
            <param name="vertex2">The second vertex of the triagnle to test.</param>
            <param name="vertex3">The third vertex of the triangle to test.</param>
            <returns>Whether the two objects intersected.</returns>
        </member>
        <member name="M:SharpDX.BoundingSphere.Intersects(SharpDX.BoundingBox@)">
            <summary>
            Determines if there is an intersection between the current object and a <see cref="T:SharpDX.BoundingBox"/>.
            </summary>
            <param name="box">The box to test.</param>
            <returns>Whether the two objects intersected.</returns>
        </member>
        <member name="M:SharpDX.BoundingSphere.Intersects(SharpDX.BoundingSphere@)">
            <summary>
            Determines if there is an intersection between the current object and a <see cref="T:SharpDX.BoundingSphere"/>.
            </summary>
            <param name="sphere">The sphere to test.</param>
            <returns>Whether the two objects intersected.</returns>
        </member>
        <member name="M:SharpDX.BoundingSphere.Contains(SharpDX.Vector3@)">
            <summary>
            Determines whether the current objects contains a point.
            </summary>
            <param name="point">The point to test.</param>
            <returns>The type of containment the two objects have.</returns>
        </member>
        <member name="M:SharpDX.BoundingSphere.Contains(SharpDX.Vector3@,SharpDX.Vector3@,SharpDX.Vector3@)">
            <summary>
            Determines whether the current objects contains a triangle.
            </summary>
            <param name="vertex1">The first vertex of the triangle to test.</param>
            <param name="vertex2">The second vertex of the triagnle to test.</param>
            <param name="vertex3">The third vertex of the triangle to test.</param>
            <returns>The type of containment the two objects have.</returns>
        </member>
        <member name="M:SharpDX.BoundingSphere.Contains(SharpDX.BoundingBox@)">
            <summary>
            Determines whether the current objects contains a <see cref="T:SharpDX.BoundingBox"/>.
            </summary>
            <param name="box">The box to test.</param>
            <returns>The type of containment the two objects have.</returns>
        </member>
        <member name="M:SharpDX.BoundingSphere.Contains(SharpDX.BoundingSphere@)">
            <summary>
            Determines whether the current objects contains a <see cref="T:SharpDX.BoundingSphere"/>.
            </summary>
            <param name="sphere">The sphere to test.</param>
            <returns>The type of containment the two objects have.</returns>
        </member>
        <member name="M:SharpDX.BoundingSphere.FromPoints(SharpDX.Vector3[],SharpDX.BoundingSphere@)">
            <summary>
            Constructs a <see cref="T:SharpDX.BoundingSphere"/> that fully contains the given points.
            </summary>
            <param name="points">The points that will be contained by the sphere.</param>
            <param name="result">When the method completes, contains the newly constructed bounding sphere.</param>
        </member>
        <member name="M:SharpDX.BoundingSphere.FromPoints(SharpDX.Vector3[])">
            <summary>
            Constructs a <see cref="T:SharpDX.BoundingSphere"/> that fully contains the given points.
            </summary>
            <param name="points">The points that will be contained by the sphere.</param>
            <returns>The newly constructed bounding sphere.</returns>
        </member>
        <member name="M:SharpDX.BoundingSphere.FromBox(SharpDX.BoundingBox@,SharpDX.BoundingSphere@)">
            <summary>
            Constructs a <see cref="T:SharpDX.BoundingSphere"/> from a given box.
            </summary>
            <param name="box">The box that will designate the extents of the sphere.</param>
            <param name="result">When the method completes, the newly constructed bounding sphere.</param>
        </member>
        <member name="M:SharpDX.BoundingSphere.FromBox(SharpDX.BoundingBox)">
            <summary>
            Constructs a <see cref="T:SharpDX.BoundingSphere"/> from a given box.
            </summary>
            <param name="box">The box that will designate the extents of the sphere.</param>
            <returns>The newly constructed bounding sphere.</returns>
        </member>
        <member name="M:SharpDX.BoundingSphere.Merge(SharpDX.BoundingSphere@,SharpDX.BoundingSphere@,SharpDX.BoundingSphere@)">
            <summary>
            Constructs a <see cref="T:SharpDX.BoundingSphere"/> that is the as large as the total combined area of the two specified spheres.
            </summary>
            <param name="value1">The first sphere to merge.</param>
            <param name="value2">The second sphere to merge.</param>
            <param name="result">When the method completes, contains the newly constructed bounding sphere.</param>
        </member>
        <member name="M:SharpDX.BoundingSphere.Merge(SharpDX.BoundingSphere,SharpDX.BoundingSphere)">
            <summary>
            Constructs a <see cref="T:SharpDX.BoundingSphere"/> that is the as large as the total combined area of the two specified spheres.
            </summary>
            <param name="value1">The first sphere to merge.</param>
            <param name="value2">The second sphere to merge.</param>
            <returns>The newly constructed bounding sphere.</returns>
        </member>
        <member name="M:SharpDX.BoundingSphere.op_Equality(SharpDX.BoundingSphere,SharpDX.BoundingSphere)">
            <summary>
            Tests for equality between two objects.
            </summary>
            <param name="left">The first value to compare.</param>
            <param name="right">The second value to compare.</param>
            <returns><c>true</c> if <paramref name="left"/> has the same value as <paramref name="right"/>; otherwise, <c>false</c>.</returns>
        </member>
        <member name="M:SharpDX.BoundingSphere.op_Inequality(SharpDX.BoundingSphere,SharpDX.BoundingSphere)">
            <summary>
            Tests for inequality between two objects.
            </summary>
            <param name="left">The first value to compare.</param>
            <param name="right">The second value to compare.</param>
            <returns><c>true</c> if <paramref name="left"/> has a different value than <paramref name="right"/>; otherwise, <c>false</c>.</returns>
        </member>
        <member name="M:SharpDX.BoundingSphere.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.BoundingSphere.ToString(System.String)">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <param name="format">The format.</param>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.BoundingSphere.ToString(System.IFormatProvider)">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <param name="formatProvider">The format provider.</param>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.BoundingSphere.ToString(System.String,System.IFormatProvider)">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <param name="format">The format.</param>
            <param name="formatProvider">The format provider.</param>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.BoundingSphere.GetHashCode">
            <summary>
            Returns a hash code for this instance.
            </summary>
            <returns>
            A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. 
            </returns>
        </member>
        <member name="M:SharpDX.BoundingSphere.Equals(SharpDX.BoundingSphere)">
            <summary>
            Determines whether the specified <see cref="T:SharpDX.Vector4"/> is equal to this instance.
            </summary>
            <param name="value">The <see cref="T:SharpDX.Vector4"/> to compare with this instance.</param>
            <returns>
            <c>true</c> if the specified <see cref="T:SharpDX.Vector4"/> is equal to this instance; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="M:SharpDX.BoundingSphere.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to this instance.
            </summary>
            <param name="value">The <see cref="T:System.Object"/> to compare with this instance.</param>
            <returns>
            <c>true</c> if the specified <see cref="T:System.Object"/> is equal to this instance; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="T:SharpDX.CallbackBase">
            <summary>
            Callback base implementation of <see cref="T:SharpDX.ICallbackable"/>.
            </summary>
        </member>
        <member name="T:SharpDX.DisposeBase">
            <summary>
            Base class for a <see cref="T:System.IDisposable"/> class.
            </summary>
        </member>
        <member name="M:SharpDX.DisposeBase.Dispose">
            <summary>
            Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
            </summary>
        </member>
        <member name="M:SharpDX.DisposeBase.CheckAndDispose(System.Boolean)">
            <summary>
            Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
            </summary>
        </member>
        <member name="M:SharpDX.DisposeBase.Dispose(System.Boolean)">
            <summary>
            Releases unmanaged and - optionally - managed resources
            </summary>
            <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
        </member>
        <member name="E:SharpDX.DisposeBase.Disposing">
            <summary>
            Occurs when this instance is starting to be disposed.
            </summary>
        </member>
        <member name="E:SharpDX.DisposeBase.Disposed">
            <summary>
            Occurs when this instance is fully disposed.
            </summary>
        </member>
        <member name="P:SharpDX.DisposeBase.IsDisposed">
            <summary>
            Gets a value indicating whether this instance is disposed.
            </summary>
            <value>
            	<c>true</c> if this instance is disposed; otherwise, <c>false</c>.
            </value>
        </member>
        <member name="T:SharpDX.ICallbackable">
            <summary>
            Use this interface to tag a class that is called by an unmanaged
            object. A <see cref="T:SharpDX.ICallbackable"/> class must dispose the <see cref="P:SharpDX.ICallbackable.Shadow"/>
            on dispose.
            </summary>
        </member>
        <member name="P:SharpDX.ICallbackable.Shadow">
            <summary>
            Gets or sets the unmanaged shadow callback.
            </summary>
            <value>The unmanaged shadow callback.</value>
            <remarks>
            This property is set whenever this instance has an unmanaged shadow callback
            registered. This callback must be disposed when disposing this instance. 
            </remarks>
        </member>
        <member name="M:SharpDX.CallbackBase.Dispose(System.Boolean)">
            <summary>
            Releases unmanaged and - optionally - managed resources
            </summary>
            <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
        </member>
        <member name="T:SharpDX.ComArray">
            <summary>
            A fast method to pass array of <see cref="T:SharpDX.ComObject"/> to SharpDX methods.
            </summary>
        </member>
        <member name="M:SharpDX.ComArray.#ctor(SharpDX.ComObject[])">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.ComArray"/> class.
            </summary>
            <param name="array">The array.</param>
        </member>
        <member name="M:SharpDX.ComArray.#ctor(System.Int32)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.ComArray"/> class.
            </summary>
            <param name="size">The size.</param>
        </member>
        <member name="M:SharpDX.ComArray.Get(System.Int32)">
            <summary>
            Gets an object at the specified index.
            </summary>
            <param name="index">The index.</param>
            <returns>A <see cref="T:SharpDX.ComObject"/></returns>
        </member>
        <member name="M:SharpDX.ComArray.Set(System.Int32,SharpDX.ComObject)">
            <summary>
            Sets an object at the specified index.
            </summary>
            <param name="index">The index.</param>
            <param name="value">The value.</param>
        </member>
        <member name="M:SharpDX.ComArray.GetEnumerator">
            <inheritdoc/>
        </member>
        <member name="P:SharpDX.ComArray.NativePointer">
            <summary>
            Gets the pointer to the native array associated to this instance.
            </summary>
        </member>
        <member name="P:SharpDX.ComArray.Length">
            <summary>
            Gets the length.
            </summary>
        </member>
        <member name="T:SharpDX.ComArray`1">
            <summary>
            A typed version of <see cref="T:SharpDX.ComArray"/>
            </summary>
            <typeparam name="T">Type of the <see cref="T:SharpDX.ComObject"/></typeparam>
        </member>
        <member name="M:SharpDX.ComArray`1.#ctor(`0[])">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.ComArray`1"/> class.
            </summary>
            <param name="array">The array.</param>
        </member>
        <member name="M:SharpDX.ComArray`1.#ctor(System.Int32)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.ComArray`1"/> class.
            </summary>
            <param name="size">The size.</param>
        </member>
        <member name="P:SharpDX.ComArray`1.Item(System.Int32)">
            <summary>
            Gets or sets the <see cref="!:T"/> with the specified i.
            </summary>
        </member>
        <member name="T:SharpDX.CompilationResultBase`1">
            <summary>
            Generic class to hold a shader compilation results.
            </summary>
            <typeparam name="T">Type of the class containing the generated bytecode.</typeparam>
        </member>
        <member name="M:SharpDX.CompilationResultBase`1.#ctor(`0,SharpDX.Result,System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.CompilationResultBase`1"/> class.
            </summary>
            <param name="bytecode">The bytecode.</param>
            <param name="resultCode">Result code from compilation.</param>
            <param name="message">The message.</param>
        </member>
        <member name="M:SharpDX.CompilationResultBase`1.Dispose(System.Boolean)">
            <inheritdoc/>
        </member>
        <member name="P:SharpDX.CompilationResultBase`1.Bytecode">
            <summary>
            Gets the Shader bytecode.
            </summary>
        </member>
        <member name="P:SharpDX.CompilationResultBase`1.ResultCode">
            <summary>
            Gets the result code from the compilation.
            </summary>
        </member>
        <member name="P:SharpDX.CompilationResultBase`1.HasErrors">
            <summary>
            Gets a value indicating whether this instance has errors.
            </summary>
            <value>
            	<c>true</c> if this instance has errors; otherwise, <c>false</c>.
            </value>
        </member>
        <member name="P:SharpDX.CompilationResultBase`1.Message">
            <summary>
            Gets the message.
            </summary>
            <remarks>
            Message are warning or error messages.
            </remarks>
        </member>
        <member name="T:SharpDX.Bool4">
            <summary>
              Represents a four dimensional mathematical vector of bool.
            </summary>
        </member>
        <member name="F:SharpDX.Bool4.SizeInBytes">
            <summary>
              The size of the <see cref="T:SharpDX.Bool4"/> type, in bytes.
            </summary>
        </member>
        <member name="F:SharpDX.Bool4.False">
            <summary>
              A <see cref="T:SharpDX.Bool4"/> with all of its components set to false.
            </summary>
        </member>
        <member name="F:SharpDX.Bool4.UnitX">
            <summary>
              The X unit <see cref="T:SharpDX.Bool4"/> (true, 0, 0, 0).
            </summary>
        </member>
        <member name="F:SharpDX.Bool4.UnitY">
            <summary>
              The Y unit <see cref="T:SharpDX.Bool4"/> (0, true, 0, 0).
            </summary>
        </member>
        <member name="F:SharpDX.Bool4.UnitZ">
            <summary>
              The Z unit <see cref="T:SharpDX.Bool4"/> (0, 0, true, 0).
            </summary>
        </member>
        <member name="F:SharpDX.Bool4.UnitW">
            <summary>
              The W unit <see cref="T:SharpDX.Bool4"/> (0, 0, 0, true).
            </summary>
        </member>
        <member name="F:SharpDX.Bool4.One">
            <summary>
              A <see cref="T:SharpDX.Bool4"/> with all of its components set to true.
            </summary>
        </member>
        <member name="F:SharpDX.Bool4.iY">
            <summary>
              The Y component of the vector.
            </summary>
        </member>
        <member name="F:SharpDX.Bool4.iZ">
            <summary>
              The Z component of the vector.
            </summary>
        </member>
        <member name="F:SharpDX.Bool4.iW">
            <summary>
              The W component of the vector.
            </summary>
        </member>
        <member name="M:SharpDX.Bool4.#ctor(System.Boolean)">
            <summary>
              Initializes a new instance of the <see cref="T:SharpDX.Bool4"/> struct.
            </summary>
            <param name="value">The value that will be assigned to all components.</param>
        </member>
        <member name="M:SharpDX.Bool4.#ctor(System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
            <summary>
              Initializes a new instance of the <see cref="T:SharpDX.Bool4"/> struct.
            </summary>
            <param name="x">Initial value for the X component of the vector.</param>
            <param name="y">Initial value for the Y component of the vector.</param>
            <param name="z">Initial value for the Z component of the vector.</param>
            <param name="w">Initial value for the W component of the vector.</param>
        </member>
        <member name="M:SharpDX.Bool4.#ctor(System.Boolean[])">
            <summary>
              Initializes a new instance of the <see cref="T:SharpDX.Bool4"/> struct.
            </summary>
            <param name="values">The values to assign to the X, Y, Z, and W components of the vector. This must be an array with four elements.</param>
            <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="values"/> is <c>null</c>.</exception>
            <exception cref="T:System.ArgumentOutOfRangeException">Thrown when <paramref name="values"/> contains more or less than four elements.</exception>
        </member>
        <member name="M:SharpDX.Bool4.ToArray">
            <summary>
              Creates an array containing the elements of the vector.
            </summary>
            <returns>A four-element array containing the components of the vector.</returns>
        </member>
        <member name="M:SharpDX.Bool4.op_Equality(SharpDX.Bool4,SharpDX.Bool4)">
            <summary>
              Tests for equality between two objects.
            </summary>
            <param name = "left">The first value to compare.</param>
            <param name = "right">The second value to compare.</param>
            <returns><c>true</c> if <paramref name = "left" /> has the same value as <paramref name = "right" />; otherwise, <c>false</c>.</returns>
        </member>
        <member name="M:SharpDX.Bool4.op_Inequality(SharpDX.Bool4,SharpDX.Bool4)">
            <summary>
              Tests for inequality between two objects.
            </summary>
            <param name = "left">The first value to compare.</param>
            <param name = "right">The second value to compare.</param>
            <returns><c>true</c> if <paramref name = "left" /> has a different value than <paramref name = "right" />; otherwise, <c>false</c>.</returns>
        </member>
        <member name="M:SharpDX.Bool4.ToString">
            <summary>
              Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <returns>
              A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.Bool4.ToString(System.String,System.IFormatProvider)">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <param name="format">The format.</param>
            <param name="formatProvider">The format provider.</param>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.Bool4.GetHashCode">
            <summary>
              Returns a hash code for this instance.
            </summary>
            <returns>
              A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. 
            </returns>
        </member>
        <member name="M:SharpDX.Bool4.Equals(SharpDX.Bool4)">
            <summary>
              Determines whether the specified <see cref="T:SharpDX.Bool4"/> is equal to this instance.
            </summary>
            <param name="other">The <see cref="T:SharpDX.Bool4"/> to compare with this instance.</param>
            <returns>
              <c>true</c> if the specified <see cref="T:SharpDX.Bool4"/> is equal to this instance; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="M:SharpDX.Bool4.Equals(System.Object)">
            <summary>
              Determines whether the specified <see cref="T:System.Object"/> is equal to this instance.
            </summary>
            <param name="value">The <see cref="T:System.Object"/> to compare with this instance.</param>
            <returns>
              <c>true</c> if the specified <see cref="T:System.Object"/> is equal to this instance; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="M:SharpDX.Bool4.op_Implicit(System.Boolean[])~SharpDX.Bool4">
            <summary>
            Performs an implicit conversion from <see cref="T:System.Int32"/> array to <see cref="T:SharpDX.Bool4"/>.
            </summary>
            <param name="input">The input.</param>
            <returns>The result of the conversion.</returns>
        </member>
        <member name="M:SharpDX.Bool4.op_Implicit(SharpDX.Bool4)~System.Boolean[]">
            <summary>
            Performs an implicit conversion from <see cref="T:SharpDX.Bool4"/> to <see cref="T:System.Int32"/> array.
            </summary>
            <param name="input">The input.</param>
            <returns>The result of the conversion.</returns>
        </member>
        <member name="P:SharpDX.Bool4.X">
            <summary>
              The X component of the vector.
            </summary>
        </member>
        <member name="P:SharpDX.Bool4.Y">
            <summary>
              The Y component of the vector.
            </summary>
        </member>
        <member name="P:SharpDX.Bool4.Z">
            <summary>
              The Z component of the vector.
            </summary>
        </member>
        <member name="P:SharpDX.Bool4.W">
            <summary>
              The W component of the vector.
            </summary>
        </member>
        <member name="P:SharpDX.Bool4.Item(System.Int32)">
            <summary>
              Gets or sets the component at the specified index.
            </summary>
            <value>The value of the X, Y, Z, or W component, depending on the index.</value>
            <param name="index">The index of the component to access. Use 0 for the X component, 1 for the Y component, 2 for the Z component, and 3 for the W component.</param>
            <returns>The value of the component at the specified index.</returns>
            <exception cref="T:System.ArgumentOutOfRangeException">Thrown when the <paramref name="index"/> is out of the range [0, 3].</exception>
        </member>
        <member name="T:SharpDX.AssemblyDoc">
            <summary>
            The <see cref="N:SharpDX"/> assembly is the core assembly providing infrastructure for all managed DirectX API.
            </summary>
        </member>
        <member name="T:SharpDX.Design.NamespaceDoc">
            <summary>
            The <see cref="N:SharpDX.Design"/> namespace contains design-time converters for all vectors structures.
            </summary>
        </member>
        <member name="T:SharpDX.Diagnostics.NamespaceDoc">
            <summary>
            The <see cref="N:SharpDX.Diagnostics"/> namespace contains classes to help to diagnostic of COM object lifecycles Dispose and Release methods.
            </summary>
        </member>
        <member name="T:SharpDX.Direct3D.NamespaceDoc">
            <summary>
            The <see cref="N:SharpDX.Direct3D"/> namespace contains enumerations and structures shared by <see cref="A:SharpDX.D3DCompiler"/>, <see cref="A:SharpDX.Direct3D10"/> and <see cref="A:SharpDX.Direct3D11"/> assemblies.
            </summary>
        </member>
        <member name="T:SharpDX.FrustumCameraParams">
            <summary>
            Frustum camera parameters.
            </summary>
        </member>
        <member name="F:SharpDX.FrustumCameraParams.Position">
            <summary>
            Position of the camera.
            </summary>
        </member>
        <member name="F:SharpDX.FrustumCameraParams.LookAtDir">
            <summary>
            Looking at direction of the camera.
            </summary>
        </member>
        <member name="F:SharpDX.FrustumCameraParams.UpDir">
            <summary>
            Up direction.
            </summary>
        </member>
        <member name="F:SharpDX.FrustumCameraParams.FOV">
            <summary>
            Field of view.
            </summary>
        </member>
        <member name="F:SharpDX.FrustumCameraParams.ZNear">
            <summary>
            Z near distance.
            </summary>
        </member>
        <member name="F:SharpDX.FrustumCameraParams.ZFar">
            <summary>
            Z far distance.
            </summary>
        </member>
        <member name="F:SharpDX.FrustumCameraParams.AspectRatio">
            <summary>
            Aspect ratio.
            </summary>
        </member>
        <member name="T:SharpDX.Int3">
            <summary>
              Represents a three dimensional mathematical int vector.
            </summary>
        </member>
        <member name="F:SharpDX.Int3.SizeInBytes">
            <summary>
              The size of the <see cref="T:SharpDX.Int3"/> type, in bytes.
            </summary>
        </member>
        <member name="F:SharpDX.Int3.Zero">
            <summary>
              A <see cref="T:SharpDX.Int3"/> with all of its components set to zero.
            </summary>
        </member>
        <member name="F:SharpDX.Int3.UnitX">
            <summary>
              The X unit <see cref="T:SharpDX.Int3"/> (1, 0, 0).
            </summary>
        </member>
        <member name="F:SharpDX.Int3.UnitY">
            <summary>
              The Y unit <see cref="T:SharpDX.Int3"/> (0, 1, 0).
            </summary>
        </member>
        <member name="F:SharpDX.Int3.UnitZ">
            <summary>
              The Z unit <see cref="T:SharpDX.Int3"/> (0, 0, 1).
            </summary>
        </member>
        <member name="F:SharpDX.Int3.One">
            <summary>
              A <see cref="T:SharpDX.Int3"/> with all of its components set to one.
            </summary>
        </member>
        <member name="F:SharpDX.Int3.X">
            <summary>
              The X component of the vector.
            </summary>
        </member>
        <member name="F:SharpDX.Int3.Y">
            <summary>
              The Y component of the vector.
            </summary>
        </member>
        <member name="F:SharpDX.Int3.Z">
            <summary>
              The Z component of the vector.
            </summary>
        </member>
        <member name="M:SharpDX.Int3.#ctor(System.Int32)">
            <summary>
              Initializes a new instance of the <see cref="T:SharpDX.Int3"/> struct.
            </summary>
            <param name="value">The value that will be assigned to all components.</param>
        </member>
        <member name="M:SharpDX.Int3.#ctor(System.Int32,System.Int32,System.Int32)">
            <summary>
              Initializes a new instance of the <see cref="T:SharpDX.Int3"/> struct.
            </summary>
            <param name="x">Initial value for the X component of the vector.</param>
            <param name="y">Initial value for the Y component of the vector.</param>
            <param name="z">Initial value for the Z component of the vector.</param>
        </member>
        <member name="M:SharpDX.Int3.#ctor(System.Int32[])">
            <summary>
              Initializes a new instance of the <see cref="T:SharpDX.Int3"/> struct.
            </summary>
            <param name="values">The values to assign to the X, Y, Z, and W components of the vector. This must be an array with four elements.</param>
            <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="values"/> is <c>null</c>.</exception>
            <exception cref="T:System.ArgumentOutOfRangeException">Thrown when <paramref name="values"/> contains more or less than four elements.</exception>
        </member>
        <member name="M:SharpDX.Int3.ToArray">
            <summary>
              Creates an array containing the elements of the vector.
            </summary>
            <returns>A four-element array containing the components of the vector.</returns>
        </member>
        <member name="M:SharpDX.Int3.Add(SharpDX.Int3@,SharpDX.Int3@,SharpDX.Int3@)">
            <summary>
              Adds two vectors.
            </summary>
            <param name = "left">The first vector to add.</param>
            <param name = "right">The second vector to add.</param>
            <param name = "result">When the method completes, contains the sum of the two vectors.</param>
        </member>
        <member name="M:SharpDX.Int3.Add(SharpDX.Int3,SharpDX.Int3)">
            <summary>
              Adds two vectors.
            </summary>
            <param name = "left">The first vector to add.</param>
            <param name = "right">The second vector to add.</param>
            <returns>The sum of the two vectors.</returns>
        </member>
        <member name="M:SharpDX.Int3.Subtract(SharpDX.Int3@,SharpDX.Int3@,SharpDX.Int3@)">
            <summary>
              Subtracts two vectors.
            </summary>
            <param name = "left">The first vector to subtract.</param>
            <param name = "right">The second vector to subtract.</param>
            <param name = "result">When the method completes, contains the difference of the two vectors.</param>
        </member>
        <member name="M:SharpDX.Int3.Subtract(SharpDX.Int3,SharpDX.Int3)">
            <summary>
              Subtracts two vectors.
            </summary>
            <param name = "left">The first vector to subtract.</param>
            <param name = "right">The second vector to subtract.</param>
            <returns>The difference of the two vectors.</returns>
        </member>
        <member name="M:SharpDX.Int3.Multiply(SharpDX.Int3@,System.Int32,SharpDX.Int3@)">
            <summary>
              Scales a vector by the given value.
            </summary>
            <param name = "value">The vector to scale.</param>
            <param name = "scale">The amount by which to scale the vector.</param>
            <param name = "result">When the method completes, contains the scaled vector.</param>
        </member>
        <member name="M:SharpDX.Int3.Multiply(SharpDX.Int3,System.Int32)">
            <summary>
              Scales a vector by the given value.
            </summary>
            <param name = "value">The vector to scale.</param>
            <param name = "scale">The amount by which to scale the vector.</param>
            <returns>The scaled vector.</returns>
        </member>
        <member name="M:SharpDX.Int3.Modulate(SharpDX.Int3@,SharpDX.Int3@,SharpDX.Int3@)">
            <summary>
              Modulates a vector with another by performing component-wise multiplication.
            </summary>
            <param name = "left">The first vector to modulate.</param>
            <param name = "right">The second vector to modulate.</param>
            <param name = "result">When the method completes, contains the modulated vector.</param>
        </member>
        <member name="M:SharpDX.Int3.Modulate(SharpDX.Int3,SharpDX.Int3)">
            <summary>
              Modulates a vector with another by performing component-wise multiplication.
            </summary>
            <param name = "left">The first vector to modulate.</param>
            <param name = "right">The second vector to modulate.</param>
            <returns>The modulated vector.</returns>
        </member>
        <member name="M:SharpDX.Int3.Divide(SharpDX.Int3@,System.Int32,SharpDX.Int3@)">
            <summary>
              Scales a vector by the given value.
            </summary>
            <param name = "value">The vector to scale.</param>
            <param name = "scale">The amount by which to scale the vector.</param>
            <param name = "result">When the method completes, contains the scaled vector.</param>
        </member>
        <member name="M:SharpDX.Int3.Divide(SharpDX.Int3,System.Int32)">
            <summary>
              Scales a vector by the given value.
            </summary>
            <param name = "value">The vector to scale.</param>
            <param name = "scale">The amount by which to scale the vector.</param>
            <returns>The scaled vector.</returns>
        </member>
        <member name="M:SharpDX.Int3.Negate(SharpDX.Int3@,SharpDX.Int3@)">
            <summary>
              Reverses the direction of a given vector.
            </summary>
            <param name = "value">The vector to negate.</param>
            <param name = "result">When the method completes, contains a vector facing in the opposite direction.</param>
        </member>
        <member name="M:SharpDX.Int3.Negate(SharpDX.Int3)">
            <summary>
              Reverses the direction of a given vector.
            </summary>
            <param name = "value">The vector to negate.</param>
            <returns>A vector facing in the opposite direction.</returns>
        </member>
        <member name="M:SharpDX.Int3.Clamp(SharpDX.Int3@,SharpDX.Int3@,SharpDX.Int3@,SharpDX.Int3@)">
            <summary>
              Restricts a value to be within a specified range.
            </summary>
            <param name = "value">The value to clamp.</param>
            <param name = "min">The minimum value.</param>
            <param name = "max">The maximum value.</param>
            <param name = "result">When the method completes, contains the clamped value.</param>
        </member>
        <member name="M:SharpDX.Int3.Clamp(SharpDX.Int3,SharpDX.Int3,SharpDX.Int3)">
            <summary>
              Restricts a value to be within a specified range.
            </summary>
            <param name = "value">The value to clamp.</param>
            <param name = "min">The minimum value.</param>
            <param name = "max">The maximum value.</param>
            <returns>The clamped value.</returns>
        </member>
        <member name="M:SharpDX.Int3.Max(SharpDX.Int3@,SharpDX.Int3@,SharpDX.Int3@)">
            <summary>
              Returns a vector containing the smallest components of the specified vectors.
            </summary>
            <param name = "left">The first source vector.</param>
            <param name = "right">The second source vector.</param>
            <param name = "result">When the method completes, contains an new vector composed of the largest components of the source vectors.</param>
        </member>
        <member name="M:SharpDX.Int3.Max(SharpDX.Int3,SharpDX.Int3)">
            <summary>
              Returns a vector containing the largest components of the specified vectors.
            </summary>
            <param name = "left">The first source vector.</param>
            <param name = "right">The second source vector.</param>
            <returns>A vector containing the largest components of the source vectors.</returns>
        </member>
        <member name="M:SharpDX.Int3.Min(SharpDX.Int3@,SharpDX.Int3@,SharpDX.Int3@)">
            <summary>
              Returns a vector containing the smallest components of the specified vectors.
            </summary>
            <param name = "left">The first source vector.</param>
            <param name = "right">The second source vector.</param>
            <param name = "result">When the method completes, contains an new vector composed of the smallest components of the source vectors.</param>
        </member>
        <member name="M:SharpDX.Int3.Min(SharpDX.Int3,SharpDX.Int3)">
            <summary>
              Returns a vector containing the smallest components of the specified vectors.
            </summary>
            <param name = "left">The first source vector.</param>
            <param name = "right">The second source vector.</param>
            <returns>A vector containing the smallest components of the source vectors.</returns>
        </member>
        <member name="M:SharpDX.Int3.op_Addition(SharpDX.Int3,SharpDX.Int3)">
            <summary>
              Adds two vectors.
            </summary>
            <param name = "left">The first vector to add.</param>
            <param name = "right">The second vector to add.</param>
            <returns>The sum of the two vectors.</returns>
        </member>
        <member name="M:SharpDX.Int3.op_UnaryPlus(SharpDX.Int3)">
            <summary>
              Assert a vector (return it unchanged).
            </summary>
            <param name = "value">The vector to assert (unchange).</param>
            <returns>The asserted (unchanged) vector.</returns>
        </member>
        <member name="M:SharpDX.Int3.op_Subtraction(SharpDX.Int3,SharpDX.Int3)">
            <summary>
              Subtracts two vectors.
            </summary>
            <param name = "left">The first vector to subtract.</param>
            <param name = "right">The second vector to subtract.</param>
            <returns>The difference of the two vectors.</returns>
        </member>
        <member name="M:SharpDX.Int3.op_UnaryNegation(SharpDX.Int3)">
            <summary>
              Reverses the direction of a given vector.
            </summary>
            <param name = "value">The vector to negate.</param>
            <returns>A vector facing in the opposite direction.</returns>
        </member>
        <member name="M:SharpDX.Int3.op_Multiply(System.Int32,SharpDX.Int3)">
            <summary>
              Scales a vector by the given value.
            </summary>
            <param name = "value">The vector to scale.</param>
            <param name = "scale">The amount by which to scale the vector.</param>
            <returns>The scaled vector.</returns>
        </member>
        <member name="M:SharpDX.Int3.op_Multiply(SharpDX.Int3,System.Int32)">
            <summary>
              Scales a vector by the given value.
            </summary>
            <param name = "value">The vector to scale.</param>
            <param name = "scale">The amount by which to scale the vector.</param>
            <returns>The scaled vector.</returns>
        </member>
        <member name="M:SharpDX.Int3.op_Division(SharpDX.Int3,System.Int32)">
            <summary>
              Scales a vector by the given value.
            </summary>
            <param name = "value">The vector to scale.</param>
            <param name = "scale">The amount by which to scale the vector.</param>
            <returns>The scaled vector.</returns>
        </member>
        <member name="M:SharpDX.Int3.op_Equality(SharpDX.Int3,SharpDX.Int3)">
            <summary>
              Tests for equality between two objects.
            </summary>
            <param name = "left">The first value to compare.</param>
            <param name = "right">The second value to compare.</param>
            <returns><c>true</c> if <paramref name = "left" /> has the same value as <paramref name = "right" />; otherwise, <c>false</c>.</returns>
        </member>
        <member name="M:SharpDX.Int3.op_Inequality(SharpDX.Int3,SharpDX.Int3)">
            <summary>
              Tests for inequality between two objects.
            </summary>
            <param name = "left">The first value to compare.</param>
            <param name = "right">The second value to compare.</param>
            <returns><c>true</c> if <paramref name = "left" /> has a different value than <paramref name = "right" />; otherwise, <c>false</c>.</returns>
        </member>
        <member name="M:SharpDX.Int3.op_Explicit(SharpDX.Int3)~SharpDX.Vector2">
            <summary>
              Performs an explicit conversion from <see cref="T:SharpDX.Int3"/> to <see cref="T:SharpDX.Vector2"/>.
            </summary>
            <param name="value">The value.</param>
            <returns>The result of the conversion.</returns>
        </member>
        <member name="M:SharpDX.Int3.op_Explicit(SharpDX.Int3)~SharpDX.Vector3">
            <summary>
              Performs an explicit conversion from <see cref="T:SharpDX.Int3"/> to <see cref="T:SharpDX.Vector3"/>.
            </summary>
            <param name="value">The value.</param>
            <returns>The result of the conversion.</returns>
        </member>
        <member name="M:SharpDX.Int3.ToString">
            <summary>
              Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <returns>
              A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.Int3.ToString(System.String)">
            <summary>
              Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <param name="format">The format.</param>
            <returns>
              A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.Int3.ToString(System.IFormatProvider)">
            <summary>
              Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <param name="formatProvider">The format provider.</param>
            <returns>
              A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.Int3.ToString(System.String,System.IFormatProvider)">
            <summary>
              Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <param name="format">The format.</param>
            <param name="formatProvider">The format provider.</param>
            <returns>
              A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.Int3.GetHashCode">
            <summary>
              Returns a hash code for this instance.
            </summary>
            <returns>
              A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. 
            </returns>
        </member>
        <member name="M:SharpDX.Int3.Equals(SharpDX.Int3)">
            <summary>
              Determines whether the specified <see cref="T:SharpDX.Int3"/> is equal to this instance.
            </summary>
            <param name="other">The <see cref="T:SharpDX.Int3"/> to compare with this instance.</param>
            <returns>
              <c>true</c> if the specified <see cref="T:SharpDX.Int3"/> is equal to this instance; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="M:SharpDX.Int3.Equals(System.Object)">
            <summary>
              Determines whether the specified <see cref="T:System.Object"/> is equal to this instance.
            </summary>
            <param name="value">The <see cref="T:System.Object"/> to compare with this instance.</param>
            <returns>
              <c>true</c> if the specified <see cref="T:System.Object"/> is equal to this instance; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="M:SharpDX.Int3.op_Implicit(System.Int32[])~SharpDX.Int3">
            <summary>
            Performs an implicit conversion from <see cref="T:System.Int32"/> array to <see cref="T:SharpDX.Int3"/>.
            </summary>
            <param name="input">The input.</param>
            <returns>The result of the conversion.</returns>
        </member>
        <member name="M:SharpDX.Int3.op_Implicit(SharpDX.Int3)~System.Int32[]">
            <summary>
            Performs an implicit conversion from <see cref="T:SharpDX.Int3"/> to <see cref="T:System.Int32"/> array.
            </summary>
            <param name="input">The input.</param>
            <returns>The result of the conversion.</returns>
        </member>
        <member name="P:SharpDX.Int3.Item(System.Int32)">
            <summary>
              Gets or sets the component at the specified index.
            </summary>
            <value>The value of the X, Y, Z, or W component, depending on the index.</value>
            <param name="index">The index of the component to access. Use 0 for the X component, 1 for the Y component, 2 for the Z component, and 3 for the W component.</param>
            <returns>The value of the component at the specified index.</returns>
            <exception cref="T:System.ArgumentOutOfRangeException">Thrown when the <paramref name="index"/> is out of the range [0, 3].</exception>
        </member>
        <member name="T:SharpDX.IO.NamespaceDoc">
            <summary>
            The <see cref="N:SharpDX.IO"/> namespace contains helper classes in replacement of some classes in <see cref="N:System.IO"/> useful under Windows 8 Metro.
            </summary>
        </member>
        <member name="T:SharpDX.Multimedia.AudioEndpointRole">
            <summary>
            This enumeration defines constants that indicate the role that the system has assigned to an audio endpoint device.
            </summary>
            <msdn-id>dd370842</msdn-id>	
            <unmanaged>ERole</unmanaged>	
            <unmanaged-short>ERole</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.AudioEndpointRole.Console">
            <summary>
            Games, system notification sounds, and voice commands
            </summary>
        </member>
        <member name="F:SharpDX.Multimedia.AudioEndpointRole.Multimedia">
            <summary>
            Music, movies, narration, and live music recording.
            </summary>
        </member>
        <member name="F:SharpDX.Multimedia.AudioEndpointRole.Communications">
            <summary>
            Voice communications (talking to another person).
            </summary>
        </member>
        <member name="T:SharpDX.Multimedia.NamespaceDoc">
            <summary>
            The <see cref="N:SharpDX.Multimedia"/> namespace contains common structures and helper classes for audio/video processing.
            </summary>
        </member>
        <member name="T:SharpDX.ShadowAttribute">
            <summary>
            Shadow attribute used to associate a COM callbackable interface to its Shadow implementation.
            </summary>
        </member>
        <member name="M:SharpDX.ShadowAttribute.#ctor(System.Type)">
            <summary>
            Initializes a new instance of <see cref="T:SharpDX.ShadowAttribute"/> class.
            </summary>
            <param name="typeOfTheAssociatedShadow">Type of the associated shadow</param>
        </member>
        <member name="M:SharpDX.ShadowAttribute.Get(System.Type)">
            <summary>
            Get ShadowAttribute from type.
            </summary>
            <param name="type">Type to get shadow attribute</param>
            <returns>The associated shadow attribute or null if no shadow attribute were found</returns>
        </member>
        <member name="P:SharpDX.ShadowAttribute.Type">
            <summary>
            Gets the value.
            </summary>
        </member>
        <member name="T:SharpDX.Matrix5x4">
            <summary>
            Represents a 4x4 mathematical Matrix5x4.
            </summary>
        </member>
        <member name="F:SharpDX.Matrix5x4.SizeInBytes">
            <summary>
            The size of the <see cref="T:SharpDX.Matrix5x4"/> type, in bytes.
            </summary>
        </member>
        <member name="F:SharpDX.Matrix5x4.Zero">
            <summary>
            A <see cref="T:SharpDX.Matrix5x4"/> with all of its components set to zero.
            </summary>
        </member>
        <member name="F:SharpDX.Matrix5x4.Identity">
            <summary>
            The identity <see cref="T:SharpDX.Matrix5x4"/>.
            </summary>
        </member>
        <member name="F:SharpDX.Matrix5x4.M11">
            <summary>
            Value at row 1 column 1 of the Matrix5x4.
            </summary>
        </member>
        <member name="F:SharpDX.Matrix5x4.M12">
            <summary>
            Value at row 1 column 2 of the Matrix5x4.
            </summary>
        </member>
        <member name="F:SharpDX.Matrix5x4.M13">
            <summary>
            Value at row 1 column 3 of the Matrix5x4.
            </summary>
        </member>
        <member name="F:SharpDX.Matrix5x4.M14">
            <summary>
            Value at row 1 column 4 of the Matrix5x4.
            </summary>
        </member>
        <member name="F:SharpDX.Matrix5x4.M21">
            <summary>
            Value at row 2 column 1 of the Matrix5x4.
            </summary>
        </member>
        <member name="F:SharpDX.Matrix5x4.M22">
            <summary>
            Value at row 2 column 2 of the Matrix5x4.
            </summary>
        </member>
        <member name="F:SharpDX.Matrix5x4.M23">
            <summary>
            Value at row 2 column 3 of the Matrix5x4.
            </summary>
        </member>
        <member name="F:SharpDX.Matrix5x4.M24">
            <summary>
            Value at row 2 column 4 of the Matrix5x4.
            </summary>
        </member>
        <member name="F:SharpDX.Matrix5x4.M31">
            <summary>
            Value at row 3 column 1 of the Matrix5x4.
            </summary>
        </member>
        <member name="F:SharpDX.Matrix5x4.M32">
            <summary>
            Value at row 3 column 2 of the Matrix5x4.
            </summary>
        </member>
        <member name="F:SharpDX.Matrix5x4.M33">
            <summary>
            Value at row 3 column 3 of the Matrix5x4.
            </summary>
        </member>
        <member name="F:SharpDX.Matrix5x4.M34">
            <summary>
            Value at row 3 column 4 of the Matrix5x4.
            </summary>
        </member>
        <member name="F:SharpDX.Matrix5x4.M41">
            <summary>
            Value at row 4 column 1 of the Matrix5x4.
            </summary>
        </member>
        <member name="F:SharpDX.Matrix5x4.M42">
            <summary>
            Value at row 4 column 2 of the Matrix5x4.
            </summary>
        </member>
        <member name="F:SharpDX.Matrix5x4.M43">
            <summary>
            Value at row 4 column 3 of the Matrix5x4.
            </summary>
        </member>
        <member name="F:SharpDX.Matrix5x4.M44">
            <summary>
            Value at row 4 column 4 of the Matrix5x4.
            </summary>
        </member>
        <member name="F:SharpDX.Matrix5x4.M51">
            <summary>
            Value at row 5 column 1 of the Matrix5x4.
            </summary>
        </member>
        <member name="F:SharpDX.Matrix5x4.M52">
            <summary>
            Value at row 5 column 2 of the Matrix5x4.
            </summary>
        </member>
        <member name="F:SharpDX.Matrix5x4.M53">
            <summary>
            Value at row 5 column 3 of the Matrix5x4.
            </summary>
        </member>
        <member name="F:SharpDX.Matrix5x4.M54">
            <summary>
            Value at row 5 column 4 of the Matrix5x4.
            </summary>
        </member>
        <member name="M:SharpDX.Matrix5x4.#ctor(System.Single)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Matrix5x4"/> struct.
            </summary>
            <param name="value">The value that will be assigned to all components.</param>
        </member>
        <member name="M:SharpDX.Matrix5x4.#ctor(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Matrix5x4"/> struct.
            </summary>
            <param name="M11">The value to assign at row 1 column 1 of the Matrix5x4.</param>
            <param name="M12">The value to assign at row 1 column 2 of the Matrix5x4.</param>
            <param name="M13">The value to assign at row 1 column 3 of the Matrix5x4.</param>
            <param name="M14">The value to assign at row 1 column 4 of the Matrix5x4.</param>
            <param name="M21">The value to assign at row 2 column 1 of the Matrix5x4.</param>
            <param name="M22">The value to assign at row 2 column 2 of the Matrix5x4.</param>
            <param name="M23">The value to assign at row 2 column 3 of the Matrix5x4.</param>
            <param name="M24">The value to assign at row 2 column 4 of the Matrix5x4.</param>
            <param name="M31">The value to assign at row 3 column 1 of the Matrix5x4.</param>
            <param name="M32">The value to assign at row 3 column 2 of the Matrix5x4.</param>
            <param name="M33">The value to assign at row 3 column 3 of the Matrix5x4.</param>
            <param name="M34">The value to assign at row 3 column 4 of the Matrix5x4.</param>
            <param name="M41">The value to assign at row 4 column 1 of the Matrix5x4.</param>
            <param name="M42">The value to assign at row 4 column 2 of the Matrix5x4.</param>
            <param name="M43">The value to assign at row 4 column 3 of the Matrix5x4.</param>
            <param name="M44">The value to assign at row 4 column 4 of the Matrix5x4.</param>
            <param name="M51">The value to assign at row 5 column 1 of the Matrix5x4.</param>
            <param name="M52">The value to assign at row 5 column 2 of the Matrix5x4.</param>
            <param name="M53">The value to assign at row 5 column 3 of the Matrix5x4.</param>
            <param name="M54">The value to assign at row 5 column 4 of the Matrix5x4.</param>
        </member>
        <member name="M:SharpDX.Matrix5x4.#ctor(System.Single[])">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Matrix5x4"/> struct.
            </summary>
            <param name="values">The values to assign to the components of the Matrix5x4. This must be an array with sixteen elements.</param>
            <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="values"/> is <c>null</c>.</exception>
            <exception cref="T:System.ArgumentOutOfRangeException">Thrown when <paramref name="values"/> contains more or less than sixteen elements.</exception>
        </member>
        <member name="M:SharpDX.Matrix5x4.Add(SharpDX.Matrix5x4@,SharpDX.Matrix5x4@,SharpDX.Matrix5x4@)">
            <summary>
            Determines the sum of two matrices.
            </summary>
            <param name="left">The first Matrix5x4 to add.</param>
            <param name="right">The second Matrix5x4 to add.</param>
            <param name="result">When the method completes, contains the sum of the two matrices.</param>
        </member>
        <member name="M:SharpDX.Matrix5x4.Add(SharpDX.Matrix5x4,SharpDX.Matrix5x4)">
            <summary>
            Determines the sum of two matrices.
            </summary>
            <param name="left">The first Matrix5x4 to add.</param>
            <param name="right">The second Matrix5x4 to add.</param>
            <returns>The sum of the two matrices.</returns>
        </member>
        <member name="M:SharpDX.Matrix5x4.Subtract(SharpDX.Matrix5x4@,SharpDX.Matrix5x4@,SharpDX.Matrix5x4@)">
            <summary>
            Determines the difference between two matrices.
            </summary>
            <param name="left">The first Matrix5x4 to subtract.</param>
            <param name="right">The second Matrix5x4 to subtract.</param>
            <param name="result">When the method completes, contains the difference between the two matrices.</param>
        </member>
        <member name="M:SharpDX.Matrix5x4.Subtract(SharpDX.Matrix5x4,SharpDX.Matrix5x4)">
            <summary>
            Determines the difference between two matrices.
            </summary>
            <param name="left">The first Matrix5x4 to subtract.</param>
            <param name="right">The second Matrix5x4 to subtract.</param>
            <returns>The difference between the two matrices.</returns>
        </member>
        <member name="M:SharpDX.Matrix5x4.Multiply(SharpDX.Matrix5x4@,System.Single,SharpDX.Matrix5x4@)">
            <summary>
            Scales a Matrix5x4 by the given value.
            </summary>
            <param name="left">The Matrix5x4 to scale.</param>
            <param name="right">The amount by which to scale.</param>
            <param name="result">When the method completes, contains the scaled Matrix5x4.</param>
        </member>
        <member name="M:SharpDX.Matrix5x4.Divide(SharpDX.Matrix5x4@,System.Single,SharpDX.Matrix5x4@)">
            <summary>
            Scales a Matrix5x4 by the given value.
            </summary>
            <param name="left">The Matrix5x4 to scale.</param>
            <param name="right">The amount by which to scale.</param>
            <param name="result">When the method completes, contains the scaled Matrix5x4.</param>
        </member>
        <member name="M:SharpDX.Matrix5x4.Negate(SharpDX.Matrix5x4@,SharpDX.Matrix5x4@)">
            <summary>
            Negates a Matrix5x4.
            </summary>
            <param name="value">The Matrix5x4 to be negated.</param>
            <param name="result">When the method completes, contains the negated Matrix5x4.</param>
        </member>
        <member name="M:SharpDX.Matrix5x4.Negate(SharpDX.Matrix5x4)">
            <summary>
            Negates a Matrix5x4.
            </summary>
            <param name="value">The Matrix5x4 to be negated.</param>
            <returns>The negated Matrix5x4.</returns>
        </member>
        <member name="M:SharpDX.Matrix5x4.Lerp(SharpDX.Matrix5x4@,SharpDX.Matrix5x4@,System.Single,SharpDX.Matrix5x4@)">
            <summary>
            Performs a linear interpolation between two matricies.
            </summary>
            <param name="start">Start Matrix5x4.</param>
            <param name="end">End Matrix5x4.</param>
            <param name="amount">Value between 0 and 1 indicating the weight of <paramref name="end"/>.</param>
            <param name="result">When the method completes, contains the linear interpolation of the two matricies.</param>
            <remarks>
            This method performs the linear interpolation based on the following formula.
            <code>start + (end - start) * amount</code>
            Passing <paramref name="amount"/> a value of 0 will cause <paramref name="start"/> to be returned; a value of 1 will cause <paramref name="end"/> to be returned. 
            </remarks>
        </member>
        <member name="M:SharpDX.Matrix5x4.Lerp(SharpDX.Matrix5x4,SharpDX.Matrix5x4,System.Single)">
            <summary>
            Performs a linear interpolation between two matricies.
            </summary>
            <param name="start">Start Matrix5x4.</param>
            <param name="end">End Matrix5x4.</param>
            <param name="amount">Value between 0 and 1 indicating the weight of <paramref name="end"/>.</param>
            <returns>The linear interpolation of the two matrices.</returns>
            <remarks>
            This method performs the linear interpolation based on the following formula.
            <code>start + (end - start) * amount</code>
            Passing <paramref name="amount"/> a value of 0 will cause <paramref name="start"/> to be returned; a value of 1 will cause <paramref name="end"/> to be returned. 
            </remarks>
        </member>
        <member name="M:SharpDX.Matrix5x4.SmoothStep(SharpDX.Matrix5x4@,SharpDX.Matrix5x4@,System.Single,SharpDX.Matrix5x4@)">
            <summary>
            Performs a cubic interpolation between two matricies.
            </summary>
            <param name="start">Start Matrix5x4.</param>
            <param name="end">End Matrix5x4.</param>
            <param name="amount">Value between 0 and 1 indicating the weight of <paramref name="end"/>.</param>
            <param name="result">When the method completes, contains the cubic interpolation of the two matrices.</param>
        </member>
        <member name="M:SharpDX.Matrix5x4.SmoothStep(SharpDX.Matrix5x4,SharpDX.Matrix5x4,System.Single)">
            <summary>
            Performs a cubic interpolation between two matrices.
            </summary>
            <param name="start">Start Matrix5x4.</param>
            <param name="end">End Matrix5x4.</param>
            <param name="amount">Value between 0 and 1 indicating the weight of <paramref name="end"/>.</param>
            <returns>The cubic interpolation of the two matrices.</returns>
        </member>
        <member name="M:SharpDX.Matrix5x4.Scaling(SharpDX.Vector4@,SharpDX.Matrix5x4@)">
            <summary>
            Creates a Matrix5x4 that scales along the x-axis, y-axis, y-axis and w-axis
            </summary>
            <param name="scale">Scaling factor for all three axes.</param>
            <param name="result">When the method completes, contains the created scaling Matrix5x4.</param>
        </member>
        <member name="M:SharpDX.Matrix5x4.Scaling(SharpDX.Vector4)">
            <summary>
            Creates a Matrix5x4 that scales along the x-axis, y-axis, and y-axis.
            </summary>
            <param name="scale">Scaling factor for all three axes.</param>
            <returns>The created scaling Matrix5x4.</returns>
        </member>
        <member name="M:SharpDX.Matrix5x4.Scaling(System.Single,System.Single,System.Single,System.Single,SharpDX.Matrix5x4@)">
            <summary>
            Creates a Matrix5x4 that scales along the x-axis, y-axis, z-axis and w-axis.
            </summary>
            <param name="x">Scaling factor that is applied along the x-axis.</param>
            <param name="y">Scaling factor that is applied along the y-axis.</param>
            <param name="z">Scaling factor that is applied along the z-axis.</param>
            <param name="result">When the method completes, contains the created scaling Matrix5x4.</param>
        </member>
        <member name="M:SharpDX.Matrix5x4.Scaling(System.Single,System.Single,System.Single,System.Single)">
            <summary>
            Creates a Matrix5x4 that scales along the x-axis, y-axis, z-axis and w-axis.
            </summary>
            <param name="x">Scaling factor that is applied along the x-axis.</param>
            <param name="y">Scaling factor that is applied along the y-axis.</param>
            <param name="z">Scaling factor that is applied along the z-axis.</param>
            <param name="w">Scaling factor that is applied along the w-axis.</param>
            <returns>The created scaling Matrix5x4.</returns>
        </member>
        <member name="M:SharpDX.Matrix5x4.Scaling(System.Single,SharpDX.Matrix5x4@)">
            <summary>
            Creates a Matrix5x4 that uniformally scales along all three axis.
            </summary>
            <param name="scale">The uniform scale that is applied along all axis.</param>
            <param name="result">When the method completes, contains the created scaling Matrix5x4.</param>
        </member>
        <member name="M:SharpDX.Matrix5x4.Scaling(System.Single)">
            <summary>
            Creates a Matrix5x4 that uniformally scales along all three axis.
            </summary>
            <param name="scale">The uniform scale that is applied along all axis.</param>
            <returns>The created scaling Matrix5x4.</returns>
        </member>
        <member name="M:SharpDX.Matrix5x4.Translation(SharpDX.Vector4@,SharpDX.Matrix5x4@)">
            <summary>
            Creates a translation Matrix5x4 using the specified offsets.
            </summary>
            <param name="value">The offset for all three coordinate planes.</param>
            <param name="result">When the method completes, contains the created translation Matrix5x4.</param>
        </member>
        <member name="M:SharpDX.Matrix5x4.Translation(SharpDX.Vector4)">
            <summary>
            Creates a translation Matrix5x4 using the specified offsets.
            </summary>
            <param name="value">The offset for all three coordinate planes.</param>
            <returns>The created translation Matrix5x4.</returns>
        </member>
        <member name="M:SharpDX.Matrix5x4.Translation(System.Single,System.Single,System.Single,System.Single,SharpDX.Matrix5x4@)">
            <summary>
            Creates a translation Matrix5x4 using the specified offsets.
            </summary>
            <param name="x">X-coordinate offset.</param>
            <param name="y">Y-coordinate offset.</param>
            <param name="z">Z-coordinate offset.</param>
            <param name="result">When the method completes, contains the created translation Matrix5x4.</param>
        </member>
        <member name="M:SharpDX.Matrix5x4.Translation(System.Single,System.Single,System.Single,System.Single)">
            <summary>
            Creates a translation Matrix5x4 using the specified offsets.
            </summary>
            <param name="x">X-coordinate offset.</param>
            <param name="y">Y-coordinate offset.</param>
            <param name="z">Z-coordinate offset.</param>
            <param name="w">W-coordinate offset.</param>
            <returns>The created translation Matrix5x4.</returns>
        </member>
        <member name="M:SharpDX.Matrix5x4.op_Addition(SharpDX.Matrix5x4,SharpDX.Matrix5x4)">
            <summary>
            Adds two matricies.
            </summary>
            <param name="left">The first Matrix5x4 to add.</param>
            <param name="right">The second Matrix5x4 to add.</param>
            <returns>The sum of the two matricies.</returns>
        </member>
        <member name="M:SharpDX.Matrix5x4.op_UnaryPlus(SharpDX.Matrix5x4)">
            <summary>
            Assert a Matrix5x4 (return it unchanged).
            </summary>
            <param name="value">The Matrix5x4 to assert (unchange).</param>
            <returns>The asserted (unchanged) Matrix5x4.</returns>
        </member>
        <member name="M:SharpDX.Matrix5x4.op_Subtraction(SharpDX.Matrix5x4,SharpDX.Matrix5x4)">
            <summary>
            Subtracts two matricies.
            </summary>
            <param name="left">The first Matrix5x4 to subtract.</param>
            <param name="right">The second Matrix5x4 to subtract.</param>
            <returns>The difference between the two matricies.</returns>
        </member>
        <member name="M:SharpDX.Matrix5x4.op_UnaryNegation(SharpDX.Matrix5x4)">
            <summary>
            Negates a Matrix5x4.
            </summary>
            <param name="value">The Matrix5x4 to negate.</param>
            <returns>The negated Matrix5x4.</returns>
        </member>
        <member name="M:SharpDX.Matrix5x4.op_Multiply(System.Single,SharpDX.Matrix5x4)">
            <summary>
            Scales a Matrix5x4 by a given value.
            </summary>
            <param name="right">The Matrix5x4 to scale.</param>
            <param name="left">The amount by which to scale.</param>
            <returns>The scaled Matrix5x4.</returns>
        </member>
        <member name="M:SharpDX.Matrix5x4.op_Multiply(SharpDX.Matrix5x4,System.Single)">
            <summary>
            Scales a Matrix5x4 by a given value.
            </summary>
            <param name="left">The Matrix5x4 to scale.</param>
            <param name="right">The amount by which to scale.</param>
            <returns>The scaled Matrix5x4.</returns>
        </member>
        <member name="M:SharpDX.Matrix5x4.op_Division(SharpDX.Matrix5x4,System.Single)">
            <summary>
            Scales a Matrix5x4 by a given value.
            </summary>
            <param name="left">The Matrix5x4 to scale.</param>
            <param name="right">The amount by which to scale.</param>
            <returns>The scaled Matrix5x4.</returns>
        </member>
        <member name="M:SharpDX.Matrix5x4.op_Equality(SharpDX.Matrix5x4,SharpDX.Matrix5x4)">
            <summary>
            Tests for equality between two objects.
            </summary>
            <param name="left">The first value to compare.</param>
            <param name="right">The second value to compare.</param>
            <returns><c>true</c> if <paramref name="left"/> has the same value as <paramref name="right"/>; otherwise, <c>false</c>.</returns>
        </member>
        <member name="M:SharpDX.Matrix5x4.op_Inequality(SharpDX.Matrix5x4,SharpDX.Matrix5x4)">
            <summary>
            Tests for inequality between two objects.
            </summary>
            <param name="left">The first value to compare.</param>
            <param name="right">The second value to compare.</param>
            <returns><c>true</c> if <paramref name="left"/> has a different value than <paramref name="right"/>; otherwise, <c>false</c>.</returns>
        </member>
        <member name="M:SharpDX.Matrix5x4.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.Matrix5x4.ToString(System.String)">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <param name="format">The format.</param>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.Matrix5x4.ToString(System.IFormatProvider)">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <param name="formatProvider">The format provider.</param>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.Matrix5x4.ToString(System.String,System.IFormatProvider)">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <param name="format">The format.</param>
            <param name="formatProvider">The format provider.</param>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.Matrix5x4.GetHashCode">
            <summary>
            Returns a hash code for this instance.
            </summary>
            <returns>
            A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. 
            </returns>
        </member>
        <member name="M:SharpDX.Matrix5x4.Equals(SharpDX.Matrix5x4)">
            <summary>
            Determines whether the specified <see cref="T:SharpDX.Matrix5x4"/> is equal to this instance.
            </summary>
            <param name="other">The <see cref="T:SharpDX.Matrix5x4"/> to compare with this instance.</param>
            <returns>
            <c>true</c> if the specified <see cref="T:SharpDX.Matrix5x4"/> is equal to this instance; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="M:SharpDX.Matrix5x4.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to this instance.
            </summary>
            <param name="value">The <see cref="T:System.Object"/> to compare with this instance.</param>
            <returns>
            <c>true</c> if the specified <see cref="T:System.Object"/> is equal to this instance; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="P:SharpDX.Matrix5x4.Row1">
            <summary>
            Gets or sets the first row in the Matrix5x4; that is M11, M12, M13, and M14.
            </summary>
        </member>
        <member name="P:SharpDX.Matrix5x4.Row2">
            <summary>
            Gets or sets the second row in the Matrix5x4; that is M21, M22, M23, and M24.
            </summary>
        </member>
        <member name="P:SharpDX.Matrix5x4.Row3">
            <summary>
            Gets or sets the third row in the Matrix5x4; that is M31, M32, M33, and M34.
            </summary>
        </member>
        <member name="P:SharpDX.Matrix5x4.Row4">
            <summary>
            Gets or sets the fourth row in the Matrix5x4; that is M41, M42, M43, and M44.
            </summary>
        </member>
        <member name="P:SharpDX.Matrix5x4.Row5">
            <summary>
            Gets or sets the fifth row in the Matrix5x4; that is M51, M52, M53, and M54.
            </summary>
        </member>
        <member name="P:SharpDX.Matrix5x4.TranslationVector">
            <summary>
            Gets or sets the translation of the Matrix5x4; that is M41, M42, and M43.
            </summary>
        </member>
        <member name="P:SharpDX.Matrix5x4.ScaleVector">
            <summary>
            Gets or sets the scale of the Matrix5x4; that is M11, M22, and M33.
            </summary>
        </member>
        <member name="P:SharpDX.Matrix5x4.IsIdentity">
            <summary>
            Gets a value indicating whether this instance is an identity Matrix5x4.
            </summary>
            <value>
            <c>true</c> if this instance is an identity Matrix5x4; otherwise, <c>false</c>.
            </value>
        </member>
        <member name="P:SharpDX.Matrix5x4.Item(System.Int32)">
            <summary>
            Gets or sets the component at the specified index.
            </summary>
            <value>The value of the Matrix5x4 component, depending on the index.</value>
            <param name="index">The zero-based index of the component to access.</param>
            <returns>The value of the component at the specified index.</returns>
            <exception cref="T:System.ArgumentOutOfRangeException">Thrown when the <paramref name="index"/> is out of the range [0, 15].</exception>
        </member>
        <member name="P:SharpDX.Matrix5x4.Item(System.Int32,System.Int32)">
            <summary>
            Gets or sets the component at the specified index.
            </summary>
            <value>The value of the Matrix5x4 component, depending on the index.</value>
            <param name="row">The row of the Matrix5x4 to access.</param>
            <param name="column">The column of the Matrix5x4 to access.</param>
            <returns>The value of the component at the specified index.</returns>
            <exception cref="T:System.ArgumentOutOfRangeException">Thrown when the <paramref name="row"/> or <paramref name="column"/>is out of the range [0, 3].</exception>
        </member>
        <member name="T:SharpDX.ResultDescriptor">
            <summary>
            Descriptor used to provide detailed message for a particular <see cref="P:SharpDX.ResultDescriptor.Result"/>.
            </summary>
        </member>
        <member name="M:SharpDX.ResultDescriptor.#ctor(SharpDX.Result,System.String,System.String,System.String,System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.ResultDescriptor"/> class.
            </summary>
            <param name="code">The HRESULT error code.</param>
            <param name="module">The module (ex: SharpDX.Direct2D1).</param>
            <param name="apiCode">The API code (ex: D2D1_ERR_...).</param>
            <param name="description">The description of the result code if any.</param>
        </member>
        <member name="M:SharpDX.ResultDescriptor.Equals(SharpDX.ResultDescriptor)">
            <summary>
            Determines whether the specified <see cref="T:SharpDX.ResultDescriptor"/> is equal to this instance.
            </summary>
            <param name="other">The <see cref="T:SharpDX.ResultDescriptor"/> to compare with this instance.</param>
            <returns>
              <c>true</c> if the specified <see cref="T:SharpDX.ResultDescriptor"/> is equal to this instance; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="M:SharpDX.ResultDescriptor.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to this instance.
            </summary>
            <param name="obj">The <see cref="T:System.Object"/> to compare with this instance.</param>
            <returns>
              <c>true</c> if the specified <see cref="T:System.Object"/> is equal to this instance; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="M:SharpDX.ResultDescriptor.GetHashCode">
            <inheritdoc/>
        </member>
        <member name="M:SharpDX.ResultDescriptor.ToString">
            <inheritdoc/>
        </member>
        <member name="M:SharpDX.ResultDescriptor.op_Implicit(SharpDX.ResultDescriptor)~SharpDX.Result">
            <summary>
            Performs an implicit conversion from <see cref="T:SharpDX.ResultDescriptor"/> to <see cref="T:SharpDX.Result"/>.
            </summary>
            <param name="result">The result.</param>
            <returns>
            The result of the conversion.
            </returns>
        </member>
        <member name="M:SharpDX.ResultDescriptor.op_Equality(SharpDX.ResultDescriptor,SharpDX.Result)">
            <summary>
            Implements the operator ==.
            </summary>
            <param name="left">The left.</param>
            <param name="right">The right.</param>
            <returns>The result of the operator.</returns>
        </member>
        <member name="M:SharpDX.ResultDescriptor.op_Inequality(SharpDX.ResultDescriptor,SharpDX.Result)">
            <summary>
            Implements the operator !=.
            </summary>
            <param name="left">The left.</param>
            <param name="right">The right.</param>
            <returns>The result of the operator.</returns>
        </member>
        <member name="M:SharpDX.ResultDescriptor.RegisterProvider(System.Type)">
            <summary>
            Registers a <see cref="T:SharpDX.ResultDescriptor"/> provider.
            </summary>
            <param name="descriptorsProviderType">Type of the descriptors provider.</param>
            <remarks>
            Providers are usually registered at module init when SharpDX assemblies are loaded.
            </remarks>
        </member>
        <member name="M:SharpDX.ResultDescriptor.Find(SharpDX.Result)">
            <summary>
            Finds the specified result descriptor.
            </summary>
            <param name="result">The result code.</param>
            <returns>A descriptor for the specified result</returns>
        </member>
        <member name="P:SharpDX.ResultDescriptor.Result">
            <summary>
            Gets the result.
            </summary>
        </member>
        <member name="P:SharpDX.ResultDescriptor.Module">
            <summary>
            Gets the module (ex: SharpDX.Direct2D1)
            </summary>
        </member>
        <member name="P:SharpDX.ResultDescriptor.NativeApiCode">
            <summary>
            Gets the native API code (ex: D2D1_ERR_ ...)
            </summary>
        </member>
        <member name="P:SharpDX.ResultDescriptor.ApiCode">
            <summary>
            Gets the API code (ex: DemiceRemoved ...)
            </summary>
        </member>
        <member name="P:SharpDX.ResultDescriptor.Description">
            <summary>
            Gets the description of the result code if any.
            </summary>
        </member>
        <member name="T:SharpDX.DrawingSizeF">
            <summary>
            Structure using the same layout than <see cref="!:System.Drawing.SizeF"/>.
            </summary>
        </member>
        <member name="M:SharpDX.DrawingSizeF.#ctor(System.Single,System.Single)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.DrawingSizeF"/> struct.
            </summary>
            <param name="width">The x.</param>
            <param name="height">The y.</param>
        </member>
        <member name="F:SharpDX.DrawingSizeF.Width">
            <summary>
            Width.
            </summary>
        </member>
        <member name="F:SharpDX.DrawingSizeF.Height">
            <summary>
            Height.
            </summary>
        </member>
        <member name="M:SharpDX.DrawingSizeF.Equals(SharpDX.DrawingSizeF)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to this instance.
            </summary>
            <param name="other">The <see cref="T:System.Object"/> to compare with this instance.</param>
            <returns>
              <c>true</c> if the specified <see cref="T:System.Object"/> is equal to this instance; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="M:SharpDX.DrawingSizeF.Equals(System.Object)">
            <inheritdoc/>
        </member>
        <member name="M:SharpDX.DrawingSizeF.GetHashCode">
            <inheritdoc/>
        </member>
        <member name="M:SharpDX.DrawingSizeF.op_Equality(SharpDX.DrawingSizeF,SharpDX.DrawingSizeF)">
            <summary>
            Implements the operator ==.
            </summary>
            <param name="left">The left.</param>
            <param name="right">The right.</param>
            <returns>
            The result of the operator.
            </returns>
        </member>
        <member name="M:SharpDX.DrawingSizeF.op_Inequality(SharpDX.DrawingSizeF,SharpDX.DrawingSizeF)">
            <summary>
            Implements the operator !=.
            </summary>
            <param name="left">The left.</param>
            <param name="right">The right.</param>
            <returns>
            The result of the operator.
            </returns>
        </member>
        <member name="T:SharpDX.DrawingSize">
            <summary>
            Structure using the same layout than <see cref="!:System.Drawing.Size"/>.
            </summary>
        </member>
        <member name="M:SharpDX.DrawingSize.#ctor(System.Int32,System.Int32)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.DrawingSize"/> struct.
            </summary>
            <param name="width">The x.</param>
            <param name="height">The y.</param>
        </member>
        <member name="F:SharpDX.DrawingSize.Width">
            <summary>
            Width.
            </summary>
        </member>
        <member name="F:SharpDX.DrawingSize.Height">
            <summary>
            Height.
            </summary>
        </member>
        <member name="M:SharpDX.DrawingSize.Equals(SharpDX.DrawingSize)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to this instance.
            </summary>
            <param name="other">The <see cref="T:System.Object"/> to compare with this instance.</param>
            <returns>
              <c>true</c> if the specified <see cref="T:System.Object"/> is equal to this instance; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="M:SharpDX.DrawingSize.Equals(System.Object)">
            <inheritdoc/>
        </member>
        <member name="M:SharpDX.DrawingSize.GetHashCode">
            <inheritdoc/>
        </member>
        <member name="M:SharpDX.DrawingSize.op_Equality(SharpDX.DrawingSize,SharpDX.DrawingSize)">
            <summary>
            Implements the operator ==.
            </summary>
            <param name="left">The left.</param>
            <param name="right">The right.</param>
            <returns>
            The result of the operator.
            </returns>
        </member>
        <member name="M:SharpDX.DrawingSize.op_Inequality(SharpDX.DrawingSize,SharpDX.DrawingSize)">
            <summary>
            Implements the operator !=.
            </summary>
            <param name="left">The left.</param>
            <param name="right">The right.</param>
            <returns>
            The result of the operator.
            </returns>
        </member>
        <member name="T:SharpDX.DrawingPointF">
            <summary>
            Structure using the same layout than <see cref="!:System.Drawing.Point"/>.
            </summary>
        </member>
        <member name="M:SharpDX.DrawingPointF.#ctor(System.Single,System.Single)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.DrawingPointF"/> struct.
            </summary>
            <param name="x">The x.</param>
            <param name="y">The y.</param>
        </member>
        <member name="F:SharpDX.DrawingPointF.X">
            <summary>
            Left coordinate.
            </summary>
        </member>
        <member name="F:SharpDX.DrawingPointF.Y">
            <summary>
            Top coordinate.
            </summary>
        </member>
        <member name="M:SharpDX.DrawingPointF.Equals(SharpDX.DrawingPointF)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to this instance.
            </summary>
            <param name="obj">The <see cref="T:System.Object"/> to compare with this instance.</param>
            <returns>
              <c>true</c> if the specified <see cref="T:System.Object"/> is equal to this instance; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="M:SharpDX.DrawingPointF.Equals(System.Object)">
            <inheritdoc/>
        </member>
        <member name="M:SharpDX.DrawingPointF.GetHashCode">
            <inheritdoc/>
        </member>
        <member name="M:SharpDX.DrawingPointF.op_Equality(SharpDX.DrawingPointF,SharpDX.DrawingPointF)">
            <summary>
            Implements the operator ==.
            </summary>
            <param name="left">The left.</param>
            <param name="right">The right.</param>
            <returns>
            The result of the operator.
            </returns>
        </member>
        <member name="M:SharpDX.DrawingPointF.op_Inequality(SharpDX.DrawingPointF,SharpDX.DrawingPointF)">
            <summary>
            Implements the operator !=.
            </summary>
            <param name="left">The left.</param>
            <param name="right">The right.</param>
            <returns>
            The result of the operator.
            </returns>
        </member>
        <member name="T:SharpDX.DrawingPoint">
            <summary>
            Structure using the same layout than <see cref="!:System.Drawing.Point"/>.
            </summary>
        </member>
        <member name="M:SharpDX.DrawingPoint.#ctor(System.Int32,System.Int32)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.DrawingPoint"/> struct.
            </summary>
            <param name="x">The x.</param>
            <param name="y">The y.</param>
        </member>
        <member name="F:SharpDX.DrawingPoint.X">
            <summary>
            Left coordinate.
            </summary>
        </member>
        <member name="F:SharpDX.DrawingPoint.Y">
            <summary>
            Top coordinate.
            </summary>
        </member>
        <member name="M:SharpDX.DrawingPoint.Equals(SharpDX.DrawingPoint)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to this instance.
            </summary>
            <param name="obj">The <see cref="T:System.Object"/> to compare with this instance.</param>
            <returns>
              <c>true</c> if the specified <see cref="T:System.Object"/> is equal to this instance; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="M:SharpDX.DrawingPoint.Equals(System.Object)">
            <inheritdoc/>
        </member>
        <member name="M:SharpDX.DrawingPoint.GetHashCode">
            <inheritdoc/>
        </member>
        <member name="M:SharpDX.DrawingPoint.op_Equality(SharpDX.DrawingPoint,SharpDX.DrawingPoint)">
            <summary>
            Implements the operator ==.
            </summary>
            <param name="left">The left.</param>
            <param name="right">The right.</param>
            <returns>
            The result of the operator.
            </returns>
        </member>
        <member name="M:SharpDX.DrawingPoint.op_Inequality(SharpDX.DrawingPoint,SharpDX.DrawingPoint)">
            <summary>
            Implements the operator !=.
            </summary>
            <param name="left">The left.</param>
            <param name="right">The right.</param>
            <returns>
            The result of the operator.
            </returns>
        </member>
        <member name="T:SharpDX.DrawingRectangleF">
            <summary>
            Structure using the same layout than <see cref="!:System.Drawing.RectangleF"/>
            </summary>
        </member>
        <member name="M:SharpDX.DrawingRectangleF.#ctor(System.Single,System.Single,System.Single,System.Single)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.DrawingRectangleF"/> struct.
            </summary>
            <param name="x">The x.</param>
            <param name="y">The y.</param>
            <param name="width">The width.</param>
            <param name="height">The height.</param>
        </member>
        <member name="F:SharpDX.DrawingRectangleF.X">
            <summary>
            Left coordinate.
            </summary>
        </member>
        <member name="F:SharpDX.DrawingRectangleF.Y">
            <summary>
            Top coordinate.
            </summary>
        </member>
        <member name="F:SharpDX.DrawingRectangleF.Width">
            <summary>
            Width of this rectangle.
            </summary>
        </member>
        <member name="F:SharpDX.DrawingRectangleF.Height">
            <summary>
            Height of this rectangle.
            </summary>
        </member>
        <member name="M:SharpDX.DrawingRectangleF.Equals(SharpDX.DrawingRectangleF)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to this instance.
            </summary>
            <param name="obj">The <see cref="T:System.Object"/> to compare with this instance.</param>
            <returns>
              <c>true</c> if the specified <see cref="T:System.Object"/> is equal to this instance; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="M:SharpDX.DrawingRectangleF.Equals(System.Object)">
            <inheritdoc/>
        </member>
        <member name="M:SharpDX.DrawingRectangleF.GetHashCode">
            <inheritdoc/>
        </member>
        <member name="M:SharpDX.DrawingRectangleF.op_Equality(SharpDX.DrawingRectangleF,SharpDX.DrawingRectangleF)">
            <summary>
            Implements the operator ==.
            </summary>
            <param name="left">The left.</param>
            <param name="right">The right.</param>
            <returns>
            The result of the operator.
            </returns>
        </member>
        <member name="M:SharpDX.DrawingRectangleF.op_Inequality(SharpDX.DrawingRectangleF,SharpDX.DrawingRectangleF)">
            <summary>
            Implements the operator !=.
            </summary>
            <param name="left">The left.</param>
            <param name="right">The right.</param>
            <returns>
            The result of the operator.
            </returns>
        </member>
        <member name="T:SharpDX.DrawingRectangle">
            <summary>
            Structure using the same layout than <see cref="!:System.Drawing.Rectangle"/> 
            </summary>
        </member>
        <member name="M:SharpDX.DrawingRectangle.#ctor(System.Int32,System.Int32,System.Int32,System.Int32)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.DrawingRectangle"/> struct.
            </summary>
            <param name="x">The x.</param>
            <param name="y">The y.</param>
            <param name="width">The width.</param>
            <param name="height">The height.</param>
        </member>
        <member name="F:SharpDX.DrawingRectangle.X">
            <summary>
            Left coordinate.
            </summary>
        </member>
        <member name="F:SharpDX.DrawingRectangle.Y">
            <summary>
            Top coordinate.
            </summary>
        </member>
        <member name="F:SharpDX.DrawingRectangle.Width">
            <summary>
            Width of this rectangle.
            </summary>
        </member>
        <member name="F:SharpDX.DrawingRectangle.Height">
            <summary>
            Height of this rectangle.
            </summary>
        </member>
        <member name="M:SharpDX.DrawingRectangle.Equals(SharpDX.DrawingRectangle)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to this instance.
            </summary>
            <param name="obj">The <see cref="T:System.Object"/> to compare with this instance.</param>
            <returns>
              <c>true</c> if the specified <see cref="T:System.Object"/> is equal to this instance; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="M:SharpDX.DrawingRectangle.Equals(System.Object)">
            <inheritdoc/>
        </member>
        <member name="M:SharpDX.DrawingRectangle.GetHashCode">
            <inheritdoc/>
        </member>
        <member name="M:SharpDX.DrawingRectangle.op_Equality(SharpDX.DrawingRectangle,SharpDX.DrawingRectangle)">
            <summary>
            Implements the operator ==.
            </summary>
            <param name="left">The left.</param>
            <param name="right">The right.</param>
            <returns>
            The result of the operator.
            </returns>
        </member>
        <member name="M:SharpDX.DrawingRectangle.op_Inequality(SharpDX.DrawingRectangle,SharpDX.DrawingRectangle)">
            <summary>
            Implements the operator !=.
            </summary>
            <param name="left">The left.</param>
            <param name="right">The right.</param>
            <returns>
            The result of the operator.
            </returns>
        </member>
        <member name="T:SharpDX.IO.NativeFile">
            <summary>
            Windows File Helper.
            </summary>
        </member>
        <member name="M:SharpDX.IO.NativeFile.ReadAllBytes(System.String)">
            <summary>
            Opens a binary file, reads the contents of the file into a byte array, and then closes the file.
            </summary>
            <param name="path">The file to open for reading. </param>
            <returns>A byte array containing the contents of the file.</returns>
        </member>
        <member name="M:SharpDX.IO.NativeFile.ReadAllText(System.String)">
            <summary>
            Opens a text file, reads all lines of the file, and then closes the file.
            </summary>
            <param name="path">The file to open for reading. </param>
            <returns>A string containing all lines of the file.</returns>
        </member>
        <member name="M:SharpDX.IO.NativeFile.ReadAllText(System.String,System.Text.Encoding)">
            <summary>
            Opens a text file, reads all lines of the file, and then closes the file.
            </summary>
            <param name="path">The file to open for reading. </param>
            <returns>A string containing all lines of the file.</returns>
        </member>
        <member name="M:SharpDX.IO.NativeFile.Create(System.String,SharpDX.IO.NativeFileAccess,SharpDX.IO.NativeFileShare,SharpDX.IO.NativeFileMode,System.IntPtr)">
            <summary>
            Creates the specified lp file name.
            </summary>
            <param name="fileName">Name of the file.</param>
            <param name="desiredAccess">The desired access.</param>
            <param name="shareMode">The share mode.</param>
            <param name="mode">The creation disposition.</param>
            <param name="extendedParameters">The extended parameters.</param>
            <returns>A handle to the created file. IntPtr.Zero if failed.</returns>
            <unmanaged>CreateFile2</unmanaged>
        </member>
        <member name="M:SharpDX.IO.NativeFile.ReadFile(System.IntPtr,System.IntPtr,System.Int32,System.Int32@,System.IntPtr)">
            <summary>
            Reads to a file.
            </summary>
            <param name="fileHandle">The file handle.</param>
            <param name="buffer">The buffer.</param>
            <param name="numberOfBytesToRead">The number of bytes to read.</param>
            <param name="numberOfBytesRead">The number of bytes read.</param>
            <param name="overlapped">The overlapped.</param>
            <returns>A Result</returns>
            <unmanaged>ReadFile</unmanaged>
        </member>
        <member name="M:SharpDX.IO.NativeFile.WriteFile(System.IntPtr,System.IntPtr,System.Int32,System.Int32@,System.IntPtr)">
            <summary>
            Writes to a file.
            </summary>
            <param name="fileHandle">The file handle.</param>
            <param name="buffer">The buffer.</param>
            <param name="numberOfBytesToRead">The number of bytes to read.</param>
            <param name="numberOfBytesRead">The number of bytes read.</param>
            <param name="overlapped">The overlapped.</param>
            <returns>A Result</returns>
            <unmanaged>WriteFile</unmanaged>
        </member>
        <member name="M:SharpDX.IO.NativeFile.SetFilePointerEx(System.IntPtr,System.Int64,System.Int64@,System.IO.SeekOrigin)">
            <summary>
            Sets the file pointer.
            </summary>
            <param name="handle">The handle.</param>
            <param name="distanceToMove">The distance to move.</param>
            <param name="distanceToMoveHigh">The distance to move high.</param>
            <param name="seekOrigin">The seek origin.</param>
            <returns></returns>
            <unmanaged>SetFilePointerEx</unmanaged>
        </member>
        <member name="M:SharpDX.IO.NativeFile.SetEndOfFile(System.IntPtr)">
            <summary>
            Sets the end of file.
            </summary>
            <param name="handle">The handle.</param>
            <returns></returns>
            <unmanaged>SetEndOfFile</unmanaged>
        </member>
        <member name="M:SharpDX.IO.NativeFile.GetFileSizeEx(System.IntPtr,System.Int64@)">
            <summary>
            Gets the size of the file.
            </summary>
            <param name="handle">The handle.</param>
            <param name="fileSize">Size of the file.</param>
            <returns></returns>
            <unmanaged>GetFileSizeEx</unmanaged>
        </member>
        <member name="T:SharpDX.IO.NativeFileStream">
            <summary>
            Windows File Helper.
            </summary>
        </member>
        <member name="M:SharpDX.IO.NativeFileStream.#ctor(System.String,SharpDX.IO.NativeFileMode,SharpDX.IO.NativeFileAccess,SharpDX.IO.NativeFileShare)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.IO.NativeFileStream"/> class.
            </summary>
            <param name="fileName">Name of the file.</param>
            <param name="fileMode">The file mode.</param>
            <param name="access">The access mode.</param>
            <param name="share">The share mode.</param>
        </member>
        <member name="M:SharpDX.IO.NativeFileStream.Flush">
            <inheritdoc/>
        </member>
        <member name="M:SharpDX.IO.NativeFileStream.Seek(System.Int64,System.IO.SeekOrigin)">
            <inheritdoc/>
        </member>
        <member name="M:SharpDX.IO.NativeFileStream.SetLength(System.Int64)">
            <inheritdoc/>
        </member>
        <member name="M:SharpDX.IO.NativeFileStream.Read(System.Byte[],System.Int32,System.Int32)">
            <inheritdoc/>
        </member>
        <member name="M:SharpDX.IO.NativeFileStream.Write(System.Byte[],System.Int32,System.Int32)">
            <inheritdoc/>
        </member>
        <member name="P:SharpDX.IO.NativeFileStream.CanRead">
            <inheritdoc/>
        </member>
        <member name="P:SharpDX.IO.NativeFileStream.CanSeek">
            <inheritdoc/>
        </member>
        <member name="P:SharpDX.IO.NativeFileStream.CanWrite">
            <inheritdoc/>
        </member>
        <member name="P:SharpDX.IO.NativeFileStream.Length">
            <inheritdoc/>
        </member>
        <member name="P:SharpDX.IO.NativeFileStream.Position">
            <inheritdoc/>
        </member>
        <member name="T:SharpDX.IO.NativeFileAccess">
            <summary>
            Native File access flags.
            </summary>
        </member>
        <member name="F:SharpDX.IO.NativeFileAccess.Read">
            <summary>
            Read access.
            </summary>
        </member>
        <member name="F:SharpDX.IO.NativeFileAccess.Write">
            <summary>
            Write access.
            </summary>
        </member>
        <member name="F:SharpDX.IO.NativeFileAccess.ReadWrite">
            <summary>
            Read/Write Access,
            </summary>
        </member>
        <member name="F:SharpDX.IO.NativeFileAccess.Execute">
            <summary>
            Execute access.
            </summary>
        </member>
        <member name="F:SharpDX.IO.NativeFileAccess.All">
            <summary>
            All access
            </summary>
        </member>
        <member name="T:SharpDX.IO.NativeFileOptions">
            <summary>
            Native file attributes.
            </summary>
        </member>
        <member name="F:SharpDX.IO.NativeFileOptions.None">
            <summary>
            None attribute.
            </summary>
        </member>
        <member name="F:SharpDX.IO.NativeFileOptions.Readonly">
            <summary>
            Read only attribute.
            </summary>
        </member>
        <member name="F:SharpDX.IO.NativeFileOptions.Hidden">
            <summary>
            Hidden attribute.
            </summary>
        </member>
        <member name="F:SharpDX.IO.NativeFileOptions.System">
            <summary>
            System attribute.
            </summary>
        </member>
        <member name="F:SharpDX.IO.NativeFileOptions.Directory">
            <summary>
            Directory attribute.
            </summary>
        </member>
        <member name="F:SharpDX.IO.NativeFileOptions.Archive">
            <summary>
            Archive attribute.
            </summary>
        </member>
        <member name="F:SharpDX.IO.NativeFileOptions.Device">
            <summary>
            Device attribute.
            </summary>
        </member>
        <member name="F:SharpDX.IO.NativeFileOptions.Normal">
            <summary>
            Normal attribute.
            </summary>
        </member>
        <member name="F:SharpDX.IO.NativeFileOptions.Temporary">
            <summary>
            Temporary attribute.
            </summary>
        </member>
        <member name="F:SharpDX.IO.NativeFileOptions.SparseFile">
            <summary>
            Sparse file attribute.
            </summary>
        </member>
        <member name="F:SharpDX.IO.NativeFileOptions.ReparsePoint">
            <summary>
            ReparsePoint attribute.
            </summary>
        </member>
        <member name="F:SharpDX.IO.NativeFileOptions.Compressed">
            <summary>
            Compressed attribute.
            </summary>
        </member>
        <member name="F:SharpDX.IO.NativeFileOptions.Offline">
            <summary>
            Offline attribute.
            </summary>
        </member>
        <member name="F:SharpDX.IO.NativeFileOptions.NotContentIndexed">
            <summary>
            Not content indexed attribute.
            </summary>
        </member>
        <member name="F:SharpDX.IO.NativeFileOptions.Encrypted">
            <summary>
            Encrypted attribute.
            </summary>
        </member>
        <member name="F:SharpDX.IO.NativeFileOptions.Write_Through">
            <summary>
            Write through attribute.
            </summary>
        </member>
        <member name="F:SharpDX.IO.NativeFileOptions.Overlapped">
            <summary>
            Overlapped attribute.
            </summary>
        </member>
        <member name="F:SharpDX.IO.NativeFileOptions.NoBuffering">
            <summary>
            No buffering attribute.
            </summary>
        </member>
        <member name="F:SharpDX.IO.NativeFileOptions.RandomAccess">
            <summary>
            Random access attribute.
            </summary>
        </member>
        <member name="F:SharpDX.IO.NativeFileOptions.SequentialScan">
            <summary>
            Sequential scan attribute.
            </summary>
        </member>
        <member name="F:SharpDX.IO.NativeFileOptions.DeleteOnClose">
            <summary>
            Delete on close attribute.
            </summary>
        </member>
        <member name="F:SharpDX.IO.NativeFileOptions.BackupSemantics">
            <summary>
            Backup semantics attribute.
            </summary>
        </member>
        <member name="F:SharpDX.IO.NativeFileOptions.PosixSemantics">
            <summary>
            Post semantics attribute.
            </summary>
        </member>
        <member name="F:SharpDX.IO.NativeFileOptions.OpenReparsePoint">
            <summary>
            Open reparse point attribute.
            </summary>
        </member>
        <member name="F:SharpDX.IO.NativeFileOptions.OpenNoRecall">
            <summary>
            Open no recall attribute.
            </summary>
        </member>
        <member name="F:SharpDX.IO.NativeFileOptions.FirstPipeInstance">
            <summary>
            First pipe instance attribute.
            </summary>
        </member>
        <member name="T:SharpDX.IO.NativeFileMode">
            <summary>
            Native file creation disposition.
            </summary>
        </member>
        <member name="F:SharpDX.IO.NativeFileMode.CreateNew">
            <summary>
            Creates a new file. The function fails if a specified file exists.
            </summary>
        </member>
        <member name="F:SharpDX.IO.NativeFileMode.Create">
            <summary>
            Creates a new file, always.
            If a file exists, the function overwrites the file, clears the existing attributes, combines the specified file attributes,
            and flags with FILE_ATTRIBUTE_ARCHIVE, but does not set the security descriptor that the SECURITY_ATTRIBUTES structure specifies.
            </summary>
        </member>
        <member name="F:SharpDX.IO.NativeFileMode.Open">
            <summary>
            Opens a file. The function fails if the file does not exist.
            </summary>
        </member>
        <member name="F:SharpDX.IO.NativeFileMode.OpenOrCreate">
            <summary>
            Opens a file, always.
            If a file does not exist, the function creates a file as if dwCreationDisposition is CREATE_NEW.
            </summary>
        </member>
        <member name="F:SharpDX.IO.NativeFileMode.Truncate">
            <summary>
            Opens a file and truncates it so that its size is 0 (zero) bytes. The function fails if the file does not exist.
            The calling process must open the file with the GENERIC_WRITE access right.
            </summary>
        </member>
        <member name="T:SharpDX.IO.NativeFileShare">
            <summary>
            Native file share.
            </summary>
        </member>
        <member name="F:SharpDX.IO.NativeFileShare.None">
            <summary>
            None flag.
            </summary>
        </member>
        <member name="F:SharpDX.IO.NativeFileShare.Read">
            <summary>
            Enables subsequent open operations on an object to request read access.
            Otherwise, other processes cannot open the object if they request read access.
            If this flag is not specified, but the object has been opened for read access, the function fails.
            </summary>
        </member>
        <member name="F:SharpDX.IO.NativeFileShare.Write">
            <summary>
            Enables subsequent open operations on an object to request write access.
            Otherwise, other processes cannot open the object if they request write access.
            If this flag is not specified, but the object has been opened for write access, the function fails.
            </summary>
        </member>
        <member name="F:SharpDX.IO.NativeFileShare.ReadWrite">
            <summary>
            Read and Write flags.
            </summary>
        </member>
        <member name="F:SharpDX.IO.NativeFileShare.Delete">
            <summary>
            Enables subsequent open operations on an object to request delete access.
            Otherwise, other processes cannot open the object if they request delete access.
            If this flag is not specified, but the object has been opened for delete access, the function fails.
            </summary>
        </member>
        <member name="T:SharpDX.Matrix3x2">
            <summary>
            Direct2D Matrix 3x2. Use <see cref="T:SharpDX.Matrix"/> and implicit cast to <see cref="T:SharpDX.Matrix3x2"/>.
            </summary>
        </member>
        <member name="F:SharpDX.Matrix3x2.M11">
            <summary>
            Element (1,1)
            </summary>
        </member>
        <member name="F:SharpDX.Matrix3x2.M12">
            <summary>
            Element (1,2)
            </summary>
        </member>
        <member name="F:SharpDX.Matrix3x2.M21">
            <summary>
            Element (2,1)
            </summary>
        </member>
        <member name="F:SharpDX.Matrix3x2.M22">
            <summary>
            Element (2,2)
            </summary>
        </member>
        <member name="F:SharpDX.Matrix3x2.M31">
            <summary>
            Element (3,1)
            </summary>
        </member>
        <member name="F:SharpDX.Matrix3x2.M32">
            <summary>
            Element (3,2)
            </summary>
        </member>
        <member name="M:SharpDX.Matrix3x2.op_Implicit(SharpDX.Matrix)~SharpDX.Matrix3x2">
            <summary>
            Performs an implicit conversion from <see cref="T:SharpDX.Matrix"/> to <see cref="T:SharpDX.Matrix3x2"/>.
            </summary>
            <param name="matrix">The matrix.</param>
            <returns>The result of the conversion.</returns>
        </member>
        <member name="P:SharpDX.Matrix3x2.Identity">
            <summary>
            Gets the identity matrix.
            </summary>
            <value>The identity matrix.</value>
        </member>
        <member name="T:SharpDX.ShadowContainer">
            <summary>
            The ShadowContainer is the main container used internally to keep references to all native COM/C++ callbacks.
            It is stored in the property <see cref="P:SharpDX.ICallbackable.Shadow"/>.
            </summary>
        </member>
        <member name="T:SharpDX.Collision">
            <summary>
            Contains static methods to help in determining intersections, containment, etc.
            </summary>
        </member>
        <member name="M:SharpDX.Collision.ClosestPointPointTriangle(SharpDX.Vector3@,SharpDX.Vector3@,SharpDX.Vector3@,SharpDX.Vector3@,SharpDX.Vector3@)">
            <summary>
            Determines the closest point between a point and a triangle.
            </summary>
            <param name="point">The point to test.</param>
            <param name="vertex1">The first vertex to test.</param>
            <param name="vertex2">The second vertex to test.</param>
            <param name="vertex3">The third vertex to test.</param>
            <param name="result">When the method completes, contains the closest point between the two objects.</param>
        </member>
        <member name="M:SharpDX.Collision.ClosestPointPlanePoint(SharpDX.Plane@,SharpDX.Vector3@,SharpDX.Vector3@)">
            <summary>
            Determines the closest point between a <see cref="T:SharpDX.Plane"/> and a point.
            </summary>
            <param name="plane">The plane to test.</param>
            <param name="point">The point to test.</param>
            <param name="result">When the method completes, contains the closest point between the two objects.</param>
        </member>
        <member name="M:SharpDX.Collision.ClosestPointBoxPoint(SharpDX.BoundingBox@,SharpDX.Vector3@,SharpDX.Vector3@)">
            <summary>
            Determines the closest point between a <see cref="T:SharpDX.BoundingBox"/> and a point.
            </summary>
            <param name="box">The box to test.</param>
            <param name="point">The point to test.</param>
            <param name="result">When the method completes, contains the closest point between the two objects.</param>
        </member>
        <member name="M:SharpDX.Collision.ClosestPointSpherePoint(SharpDX.BoundingSphere@,SharpDX.Vector3@,SharpDX.Vector3@)">
            <summary>
            Determines the closest point between a <see cref="T:SharpDX.BoundingSphere"/> and a point.
            </summary>
            <param name="sphere"></param>
            <param name="point">The point to test.</param>
            <param name="result">When the method completes, contains the closest point between the two objects;
            or, if the point is directly in the center of the sphere, contains <see cref="F:SharpDX.Vector3.Zero"/>.</param>
        </member>
        <member name="M:SharpDX.Collision.ClosestPointSphereSphere(SharpDX.BoundingSphere@,SharpDX.BoundingSphere@,SharpDX.Vector3@)">
            <summary>
            Determines the closest point between a <see cref="T:SharpDX.BoundingSphere"/> and a <see cref="T:SharpDX.BoundingSphere"/>.
            </summary>
            <param name="sphere1">The first sphere to test.</param>
            <param name="sphere2">The second sphere to test.</param>
            <param name="result">When the method completes, contains the closest point between the two objects;
            or, if the point is directly in the center of the sphere, contains <see cref="F:SharpDX.Vector3.Zero"/>.</param>
            <remarks>
            If the two spheres are overlapping, but not directly ontop of each other, the closest point
            is the 'closest' point of intersection. This can also be considered is the deepest point of
            intersection.
            </remarks>
        </member>
        <member name="M:SharpDX.Collision.DistancePlanePoint(SharpDX.Plane@,SharpDX.Vector3@)">
            <summary>
            Determines the distance between a <see cref="T:SharpDX.Plane"/> and a point.
            </summary>
            <param name="plane">The plane to test.</param>
            <param name="point">The point to test.</param>
            <returns>The distance between the two objects.</returns>
        </member>
        <member name="M:SharpDX.Collision.DistanceBoxPoint(SharpDX.BoundingBox@,SharpDX.Vector3@)">
            <summary>
            Determines the distance between a <see cref="T:SharpDX.BoundingBox"/> and a point.
            </summary>
            <param name="box">The box to test.</param>
            <param name="point">The point to test.</param>
            <returns>The distance between the two objects.</returns>
        </member>
        <member name="M:SharpDX.Collision.DistanceBoxBox(SharpDX.BoundingBox@,SharpDX.BoundingBox@)">
            <summary>
            Determines the distance between a <see cref="T:SharpDX.BoundingBox"/> and a <see cref="T:SharpDX.BoundingBox"/>.
            </summary>
            <param name="box1">The first box to test.</param>
            <param name="box2">The second box to test.</param>
            <returns>The distance between the two objects.</returns>
        </member>
        <member name="M:SharpDX.Collision.DistanceSpherePoint(SharpDX.BoundingSphere@,SharpDX.Vector3@)">
            <summary>
            Determines the distance between a <see cref="T:SharpDX.BoundingSphere"/> and a point.
            </summary>
            <param name="sphere">The sphere to test.</param>
            <param name="point">The point to test.</param>
            <returns>The distance between the two objects.</returns>
        </member>
        <member name="M:SharpDX.Collision.DistanceSphereSphere(SharpDX.BoundingSphere@,SharpDX.BoundingSphere@)">
            <summary>
            Determines the distance between a <see cref="T:SharpDX.BoundingSphere"/> and a <see cref="T:SharpDX.BoundingSphere"/>.
            </summary>
            <param name="sphere1">The first sphere to test.</param>
            <param name="sphere2">The second sphere to test.</param>
            <returns>The distance between the two objects.</returns>
        </member>
        <member name="M:SharpDX.Collision.RayIntersectsPoint(SharpDX.Ray@,SharpDX.Vector3@)">
            <summary>
            Determines whether there is an intersection between a <see cref="T:SharpDX.Ray"/> and a point.
            </summary>
            <param name="ray">The ray to test.</param>
            <param name="point">The point to test.</param>
            <returns>Whether the two objects intersect.</returns>
        </member>
        <member name="M:SharpDX.Collision.RayIntersectsRay(SharpDX.Ray@,SharpDX.Ray@,SharpDX.Vector3@)">
            <summary>
            Determines whether there is an intersection between a <see cref="T:SharpDX.Ray"/> and a <see cref="T:SharpDX.Ray"/>.
            </summary>
            <param name="ray1">The first ray to test.</param>
            <param name="ray2">The second ray to test.</param>
            <param name="point">When the method completes, contains the point of intersection,
            or <see cref="F:SharpDX.Vector3.Zero"/> if there was no intersection.</param>
            <returns>Whether the two objects intersect.</returns>
            <remarks>
            This method performs a ray vs ray intersection test based on the following formula
            from Goldman.
            <code>s = det([o_2 - o_1, d_2, d_1 x d_2]) / ||d_1 x d_2||^2</code>
            <code>t = det([o_2 - o_1, d_1, d_1 x d_2]) / ||d_1 x d_2||^2</code>
            Where o_1 is the position of the first ray, o_2 is the position of the second ray,
            d_1 is the normalized direction of the first ray, d_2 is the normalized direction
            of the second ray, det denotes the determinant of a matrix, x denotes the cross
            product, [ ] denotes a matrix, and || || denotes the length or magnitude of a vector.
            </remarks>
        </member>
        <member name="M:SharpDX.Collision.RayIntersectsPlane(SharpDX.Ray@,SharpDX.Plane@,System.Single@)">
            <summary>
            Determines whether there is an intersection between a <see cref="T:SharpDX.Ray"/> and a <see cref="T:SharpDX.Plane"/>.
            </summary>
            <param name="ray">The ray to test.</param>
            <param name="plane">The plane to test.</param>
            <param name="distance">When the method completes, contains the distance of the intersection,
            or 0 if there was no intersection.</param>
            <returns>Whether the two objects intersect.</returns>
        </member>
        <member name="M:SharpDX.Collision.RayIntersectsPlane(SharpDX.Ray@,SharpDX.Plane@,SharpDX.Vector3@)">
            <summary>
            Determines whether there is an intersection between a <see cref="T:SharpDX.Ray"/> and a <see cref="T:SharpDX.Plane"/>.
            </summary>
            <param name="ray">The ray to test.</param>
            <param name="plane">The plane to test</param>
            <param name="point">When the method completes, contains the point of intersection,
            or <see cref="F:SharpDX.Vector3.Zero"/> if there was no intersection.</param>
            <returns>Whether the two objects intersected.</returns>
        </member>
        <member name="M:SharpDX.Collision.RayIntersectsTriangle(SharpDX.Ray@,SharpDX.Vector3@,SharpDX.Vector3@,SharpDX.Vector3@,System.Single@)">
            <summary>
            Determines whether there is an intersection between a <see cref="T:SharpDX.Ray"/> and a triangle.
            </summary>
            <param name="ray">The ray to test.</param>
            <param name="vertex1">The first vertex of the triangle to test.</param>
            <param name="vertex2">The second vertex of the triagnle to test.</param>
            <param name="vertex3">The third vertex of the triangle to test.</param>
            <param name="distance">When the method completes, contains the distance of the intersection,
            or 0 if there was no intersection.</param>
            <returns>Whether the two objects intersected.</returns>
            <remarks>
            This method tests if the ray intersects either the front or back of the triangle.
            If the ray is parallel to the triangle's plane, no intersection is assumed to have
            happened. If the intersection of the ray and the triangle is behind the origin of
            the ray, no intersection is assumed to have happened. In both cases of assumptions,
            this method returns false.
            </remarks>
        </member>
        <member name="M:SharpDX.Collision.RayIntersectsTriangle(SharpDX.Ray@,SharpDX.Vector3@,SharpDX.Vector3@,SharpDX.Vector3@,SharpDX.Vector3@)">
            <summary>
            Determines whether there is an intersection between a <see cref="T:SharpDX.Ray"/> and a triangle.
            </summary>
            <param name="ray">The ray to test.</param>
            <param name="vertex1">The first vertex of the triangle to test.</param>
            <param name="vertex2">The second vertex of the triagnle to test.</param>
            <param name="vertex3">The third vertex of the triangle to test.</param>
            <param name="point">When the method completes, contains the point of intersection,
            or <see cref="F:SharpDX.Vector3.Zero"/> if there was no intersection.</param>
            <returns>Whether the two objects intersected.</returns>
        </member>
        <member name="M:SharpDX.Collision.RayIntersectsBox(SharpDX.Ray@,SharpDX.BoundingBox@,System.Single@)">
            <summary>
            Determines whether there is an intersection between a <see cref="T:SharpDX.Ray"/> and a <see cref="T:SharpDX.BoundingBox"/>.
            </summary>
            <param name="ray">The ray to test.</param>
            <param name="box">The box to test.</param>
            <param name="distance">When the method completes, contains the distance of the intersection,
            or 0 if there was no intersection.</param>
            <returns>Whether the two objects intersected.</returns>
        </member>
        <member name="M:SharpDX.Collision.RayIntersectsBox(SharpDX.Ray@,SharpDX.BoundingBox@,SharpDX.Vector3@)">
            <summary>
            Determines whether there is an intersection between a <see cref="T:SharpDX.Ray"/> and a <see cref="T:SharpDX.Plane"/>.
            </summary>
            <param name="ray">The ray to test.</param>
            <param name="box">The box to test.</param>
            <param name="point">When the method completes, contains the point of intersection,
            or <see cref="F:SharpDX.Vector3.Zero"/> if there was no intersection.</param>
            <returns>Whether the two objects intersected.</returns>
        </member>
        <member name="M:SharpDX.Collision.RayIntersectsSphere(SharpDX.Ray@,SharpDX.BoundingSphere@,System.Single@)">
            <summary>
            Determines whether there is an intersection between a <see cref="T:SharpDX.Ray"/> and a <see cref="T:SharpDX.BoundingSphere"/>.
            </summary>
            <param name="ray">The ray to test.</param>
            <param name="sphere">The sphere to test.</param>
            <param name="distance">When the method completes, contains the distance of the intersection,
            or 0 if there was no intersection.</param>
            <returns>Whether the two objects intersected.</returns>
        </member>
        <member name="M:SharpDX.Collision.RayIntersectsSphere(SharpDX.Ray@,SharpDX.BoundingSphere@,SharpDX.Vector3@)">
            <summary>
            Determines whether there is an intersection between a <see cref="T:SharpDX.Ray"/> and a <see cref="T:SharpDX.BoundingSphere"/>. 
            </summary>
            <param name="ray">The ray to test.</param>
            <param name="sphere">The sphere to test.</param>
            <param name="point">When the method completes, contains the point of intersection,
            or <see cref="F:SharpDX.Vector3.Zero"/> if there was no intersection.</param>
            <returns>Whether the two objects intersected.</returns>
        </member>
        <member name="M:SharpDX.Collision.PlaneIntersectsPoint(SharpDX.Plane@,SharpDX.Vector3@)">
            <summary>
            Determines whether there is an intersection between a <see cref="T:SharpDX.Plane"/> and a point.
            </summary>
            <param name="plane">The plane to test.</param>
            <param name="point">The point to test.</param>
            <returns>Whether the two objects intersected.</returns>
        </member>
        <member name="M:SharpDX.Collision.PlaneIntersectsPlane(SharpDX.Plane@,SharpDX.Plane@)">
            <summary>
            Determines whether there is an intersection between a <see cref="T:SharpDX.Plane"/> and a <see cref="T:SharpDX.Plane"/>.
            </summary>
            <param name="plane1">The first plane to test.</param>
            <param name="plane2">The second plane to test.</param>
            <returns>Whether the two objects intersected.</returns>
        </member>
        <member name="M:SharpDX.Collision.PlaneIntersectsPlane(SharpDX.Plane@,SharpDX.Plane@,SharpDX.Ray@)">
            <summary>
            Determines whether there is an intersection between a <see cref="T:SharpDX.Plane"/> and a <see cref="T:SharpDX.Plane"/>.
            </summary>
            <param name="plane1">The first plane to test.</param>
            <param name="plane2">The second plane to test.</param>
            <param name="line">When the method completes, contains the line of intersection
            as a <see cref="T:SharpDX.Ray"/>, or a zero ray if there was no intersection.</param>
            <returns>Whether the two objects intersected.</returns>
            <remarks>
            Although a ray is set to have an origin, the ray returned by this method is really
            a line in three dimensions which has no real origin. The ray is considered valid when
            both the positive direction is used and when the negative direction is used.
            </remarks>
        </member>
        <member name="M:SharpDX.Collision.PlaneIntersectsTriangle(SharpDX.Plane@,SharpDX.Vector3@,SharpDX.Vector3@,SharpDX.Vector3@)">
            <summary>
            Determines whether there is an intersection between a <see cref="T:SharpDX.Plane"/> and a triangle.
            </summary>
            <param name="plane">The plane to test.</param>
            <param name="vertex1">The first vertex of the triangle to test.</param>
            <param name="vertex2">The second vertex of the triagnle to test.</param>
            <param name="vertex3">The third vertex of the triangle to test.</param>
            <returns>Whether the two objects intersected.</returns>
        </member>
        <member name="M:SharpDX.Collision.PlaneIntersectsBox(SharpDX.Plane@,SharpDX.BoundingBox@)">
            <summary>
            Determines whether there is an intersection between a <see cref="T:SharpDX.Plane"/> and a <see cref="T:SharpDX.BoundingBox"/>.
            </summary>
            <param name="plane">The plane to test.</param>
            <param name="box">The box to test.</param>
            <returns>Whether the two objects intersected.</returns>
        </member>
        <member name="M:SharpDX.Collision.PlaneIntersectsSphere(SharpDX.Plane@,SharpDX.BoundingSphere@)">
            <summary>
            Determines whether there is an intersection between a <see cref="T:SharpDX.Plane"/> and a <see cref="T:SharpDX.BoundingSphere"/>.
            </summary>
            <param name="plane">The plane to test.</param>
            <param name="sphere">The sphere to test.</param>
            <returns>Whether the two objects intersected.</returns>
        </member>
        <member name="M:SharpDX.Collision.BoxIntersectsBox(SharpDX.BoundingBox@,SharpDX.BoundingBox@)">
            <summary>
            Determines whether there is an intersection between a <see cref="T:SharpDX.BoundingBox"/> and a <see cref="T:SharpDX.BoundingBox"/>.
            </summary>
            <param name="box1">The first box to test.</param>
            <param name="box2">The second box to test.</param>
            <returns>Whether the two objects intersected.</returns>
        </member>
        <member name="M:SharpDX.Collision.BoxIntersectsSphere(SharpDX.BoundingBox@,SharpDX.BoundingSphere@)">
            <summary>
            Determines whether there is an intersection between a <see cref="T:SharpDX.BoundingBox"/> and a <see cref="T:SharpDX.BoundingSphere"/>.
            </summary>
            <param name="box">The box to test.</param>
            <param name="sphere">The sphere to test.</param>
            <returns>Whether the two objects intersected.</returns>
        </member>
        <member name="M:SharpDX.Collision.SphereIntersectsTriangle(SharpDX.BoundingSphere@,SharpDX.Vector3@,SharpDX.Vector3@,SharpDX.Vector3@)">
            <summary>
            Determines whether there is an intersection between a <see cref="T:SharpDX.BoundingSphere"/> and a triangle.
            </summary>
            <param name="sphere">The sphere to test.</param>
            <param name="vertex1">The first vertex of the triangle to test.</param>
            <param name="vertex2">The second vertex of the triagnle to test.</param>
            <param name="vertex3">The third vertex of the triangle to test.</param>
            <returns>Whether the two objects intersected.</returns>
        </member>
        <member name="M:SharpDX.Collision.SphereIntersectsSphere(SharpDX.BoundingSphere@,SharpDX.BoundingSphere@)">
            <summary>
            Determines whether there is an intersection between a <see cref="T:SharpDX.BoundingSphere"/> and a <see cref="T:SharpDX.BoundingSphere"/>.
            </summary>
            <param name="sphere1">First sphere to test.</param>
            <param name="sphere2">Second sphere to test.</param>
            <returns>Whether the two objects intersected.</returns>
        </member>
        <member name="M:SharpDX.Collision.BoxContainsPoint(SharpDX.BoundingBox@,SharpDX.Vector3@)">
            <summary>
            Determines whether a <see cref="T:SharpDX.BoundingBox"/> contains a point.
            </summary>
            <param name="box">The box to test.</param>
            <param name="point">The point to test.</param>
            <returns>The type of containment the two objects have.</returns>
        </member>
        <member name="M:SharpDX.Collision.BoxContainsBox(SharpDX.BoundingBox@,SharpDX.BoundingBox@)">
            <summary>
            Determines whether a <see cref="T:SharpDX.BoundingBox"/> contains a <see cref="T:SharpDX.BoundingBox"/>.
            </summary>
            <param name="box1">The first box to test.</param>
            <param name="box2">The second box to test.</param>
            <returns>The type of containment the two objects have.</returns>
        </member>
        <member name="M:SharpDX.Collision.BoxContainsSphere(SharpDX.BoundingBox@,SharpDX.BoundingSphere@)">
            <summary>
            Determines whether a <see cref="T:SharpDX.BoundingBox"/> contains a <see cref="T:SharpDX.BoundingSphere"/>.
            </summary>
            <param name="box">The box to test.</param>
            <param name="sphere">The sphere to test.</param>
            <returns>The type of containment the two objects have.</returns>
        </member>
        <member name="M:SharpDX.Collision.SphereContainsPoint(SharpDX.BoundingSphere@,SharpDX.Vector3@)">
            <summary>
            Determines whether a <see cref="T:SharpDX.BoundingSphere"/> contains a point.
            </summary>
            <param name="sphere">The sphere to test.</param>
            <param name="point">The point to test.</param>
            <returns>The type of containment the two objects have.</returns>
        </member>
        <member name="M:SharpDX.Collision.SphereContainsTriangle(SharpDX.BoundingSphere@,SharpDX.Vector3@,SharpDX.Vector3@,SharpDX.Vector3@)">
            <summary>
            Determines whether a <see cref="T:SharpDX.BoundingSphere"/> contains a triangle.
            </summary>
            <param name="sphere">The sphere to test.</param>
            <param name="vertex1">The first vertex of the triangle to test.</param>
            <param name="vertex2">The second vertex of the triagnle to test.</param>
            <param name="vertex3">The third vertex of the triangle to test.</param>
            <returns>The type of containment the two objects have.</returns>
        </member>
        <member name="M:SharpDX.Collision.SphereContainsBox(SharpDX.BoundingSphere@,SharpDX.BoundingBox@)">
            <summary>
            Determines whether a <see cref="T:SharpDX.BoundingSphere"/> contains a <see cref="T:SharpDX.BoundingBox"/>.
            </summary>
            <param name="sphere">The sphere to test.</param>
            <param name="box">The box to test.</param>
            <returns>The type of containment the two objects have.</returns>
        </member>
        <member name="M:SharpDX.Collision.SphereContainsSphere(SharpDX.BoundingSphere@,SharpDX.BoundingSphere@)">
            <summary>
            Determines whether a <see cref="T:SharpDX.BoundingSphere"/> contains a <see cref="T:SharpDX.BoundingSphere"/>.
            </summary>
            <param name="sphere1">The first sphere to test.</param>
            <param name="sphere2">The second sphere to test.</param>
            <returns>The type of containment the two objects have.</returns>
        </member>
        <member name="T:SharpDX.Color3">
            <summary>
            Represents a color in the form of rgb.
            </summary>
        </member>
        <member name="F:SharpDX.Color3.Red">
            <summary>
            The red component of the color.
            </summary>
        </member>
        <member name="F:SharpDX.Color3.Green">
            <summary>
            The green component of the color.
            </summary>
        </member>
        <member name="F:SharpDX.Color3.Blue">
            <summary>
            The blue component of the color.
            </summary>
        </member>
        <member name="M:SharpDX.Color3.#ctor(System.Single)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Color3"/> struct.
            </summary>
            <param name="value">The value that will be assigned to all components.</param>
        </member>
        <member name="M:SharpDX.Color3.#ctor(System.Single,System.Single,System.Single)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Color3"/> struct.
            </summary>
            <param name="red">The red component of the color.</param>
            <param name="green">The green component of the color.</param>
            <param name="blue">The blue component of the color.</param>
        </member>
        <member name="M:SharpDX.Color3.#ctor(SharpDX.Vector3)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Color3"/> struct.
            </summary>
            <param name="value">The red, green, and blue components of the color.</param>
        </member>
        <member name="M:SharpDX.Color3.#ctor(System.Int32)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Color3"/> struct.
            </summary>
            <param name="rgb">A packed integer containing all three color components.
            The alpha component is ignored.</param>
        </member>
        <member name="M:SharpDX.Color3.#ctor(System.Single[])">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Color3"/> struct.
            </summary>
            <param name="values">The values to assign to the red, green, and blue components of the color. This must be an array with three elements.</param>
            <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="values"/> is <c>null</c>.</exception>
            <exception cref="T:System.ArgumentOutOfRangeException">Thrown when <paramref name="values"/> contains more or less than four elements.</exception>
        </member>
        <member name="M:SharpDX.Color3.ToRgb">
            <summary>
            Converts the color into a packed integer.
            </summary>
            <returns>A packed integer containing all three color components.
            The alpha channel is set to 255.</returns>
        </member>
        <member name="M:SharpDX.Color3.ToVector3">
            <summary>
            Converts the color into a three component vector.
            </summary>
            <returns>A three component vector containing the red, green, and blue components of the color.</returns>
        </member>
        <member name="M:SharpDX.Color3.ToArray">
            <summary>
            Creates an array containing the elements of the color.
            </summary>
            <returns>A three-element array containing the components of the color.</returns>
        </member>
        <member name="M:SharpDX.Color3.Add(SharpDX.Color3@,SharpDX.Color3@,SharpDX.Color3@)">
            <summary>
            Adds two colors.
            </summary>
            <param name="left">The first color to add.</param>
            <param name="right">The second color to add.</param>
            <param name="result">When the method completes, completes the sum of the two colors.</param>
        </member>
        <member name="M:SharpDX.Color3.Add(SharpDX.Color3,SharpDX.Color3)">
            <summary>
            Adds two colors.
            </summary>
            <param name="left">The first color to add.</param>
            <param name="right">The second color to add.</param>
            <returns>The sum of the two colors.</returns>
        </member>
        <member name="M:SharpDX.Color3.Subtract(SharpDX.Color3@,SharpDX.Color3@,SharpDX.Color3@)">
            <summary>
            Subtracts two colors.
            </summary>
            <param name="left">The first color to subtract.</param>
            <param name="right">The second color to subtract.</param>
            <param name="result">WHen the method completes, contains the difference of the two colors.</param>
        </member>
        <member name="M:SharpDX.Color3.Subtract(SharpDX.Color3,SharpDX.Color3)">
            <summary>
            Subtracts two colors.
            </summary>
            <param name="left">The first color to subtract.</param>
            <param name="right">The second color to subtract</param>
            <returns>The difference of the two colors.</returns>
        </member>
        <member name="M:SharpDX.Color3.Modulate(SharpDX.Color3@,SharpDX.Color3@,SharpDX.Color3@)">
            <summary>
            Modulates two colors.
            </summary>
            <param name="left">The first color to modulate.</param>
            <param name="right">The second color to modulate.</param>
            <param name="result">When the method completes, contains the modulated color.</param>
        </member>
        <member name="M:SharpDX.Color3.Modulate(SharpDX.Color3,SharpDX.Color3)">
            <summary>
            Modulates two colors.
            </summary>
            <param name="left">The first color to modulate.</param>
            <param name="right">The second color to modulate.</param>
            <returns>The modulated color.</returns>
        </member>
        <member name="M:SharpDX.Color3.Scale(SharpDX.Color3@,System.Single,SharpDX.Color3@)">
            <summary>
            Scales a color.
            </summary>
            <param name="value">The color to scale.</param>
            <param name="scale">The amount by which to scale.</param>
            <param name="result">When the method completes, contains the scaled color.</param>
        </member>
        <member name="M:SharpDX.Color3.Scale(SharpDX.Color3,System.Single)">
            <summary>
            Scales a color.
            </summary>
            <param name="value">The color to scale.</param>
            <param name="scale">The amount by which to scale.</param>
            <returns>The scaled color.</returns>
        </member>
        <member name="M:SharpDX.Color3.Negate(SharpDX.Color3@,SharpDX.Color3@)">
            <summary>
            Negates a color.
            </summary>
            <param name="value">The color to negate.</param>
            <param name="result">When the method completes, contains the negated color.</param>
        </member>
        <member name="M:SharpDX.Color3.Negate(SharpDX.Color3)">
            <summary>
            Negates a color.
            </summary>
            <param name="value">The color to negate.</param>
            <returns>The negated color.</returns>
        </member>
        <member name="M:SharpDX.Color3.Clamp(SharpDX.Color3@,SharpDX.Color3@,SharpDX.Color3@,SharpDX.Color3@)">
            <summary>
            Restricts a value to be within a specified range.
            </summary>
            <param name="value">The value to clamp.</param>
            <param name="min">The minimum value.</param>
            <param name="max">The maximum value.</param>
            <param name="result">When the method completes, contains the clamped value.</param>
        </member>
        <member name="M:SharpDX.Color3.Clamp(SharpDX.Color3,SharpDX.Color3,SharpDX.Color3)">
            <summary>
            Restricts a value to be within a specified range.
            </summary>
            <param name="value">The value to clamp.</param>
            <param name="min">The minimum value.</param>
            <param name="max">The maximum value.</param>
            <returns>The clamped value.</returns>
        </member>
        <member name="M:SharpDX.Color3.Lerp(SharpDX.Color3@,SharpDX.Color3@,System.Single,SharpDX.Color3@)">
            <summary>
            Performs a linear interpolation between two colors.
            </summary>
            <param name="start">Start color.</param>
            <param name="end">End color.</param>
            <param name="amount">Value between 0 and 1 indicating the weight of <paramref name="end"/>.</param>
            <param name="result">When the method completes, contains the linear interpolation of the two colors.</param>
            <remarks>
            This method performs the linear interpolation based on the following formula.
            <code>start + (end - start) * amount</code>
            Passing <paramref name="amount"/> a value of 0 will cause <paramref name="start"/> to be returned; a value of 1 will cause <paramref name="end"/> to be returned. 
            </remarks>
        </member>
        <member name="M:SharpDX.Color3.Lerp(SharpDX.Color3,SharpDX.Color3,System.Single)">
            <summary>
            Performs a linear interpolation between two colors.
            </summary>
            <param name="start">Start color.</param>
            <param name="end">End color.</param>
            <param name="amount">Value between 0 and 1 indicating the weight of <paramref name="end"/>.</param>
            <returns>The linear interpolation of the two colors.</returns>
            <remarks>
            This method performs the linear interpolation based on the following formula.
            <code>start + (end - start) * amount</code>
            Passing <paramref name="amount"/> a value of 0 will cause <paramref name="start"/> to be returned; a value of 1 will cause <paramref name="end"/> to be returned. 
            </remarks>
        </member>
        <member name="M:SharpDX.Color3.SmoothStep(SharpDX.Color3@,SharpDX.Color3@,System.Single,SharpDX.Color3@)">
            <summary>
            Performs a cubic interpolation between two colors.
            </summary>
            <param name="start">Start color.</param>
            <param name="end">End color.</param>
            <param name="amount">Value between 0 and 1 indicating the weight of <paramref name="end"/>.</param>
            <param name="result">When the method completes, contains the cubic interpolation of the two colors.</param>
        </member>
        <member name="M:SharpDX.Color3.SmoothStep(SharpDX.Color3,SharpDX.Color3,System.Single)">
            <summary>
            Performs a cubic interpolation between two colors.
            </summary>
            <param name="start">Start color.</param>
            <param name="end">End color.</param>
            <param name="amount">Value between 0 and 1 indicating the weight of <paramref name="end"/>.</param>
            <returns>The cubic interpolation of the two colors.</returns>
        </member>
        <member name="M:SharpDX.Color3.Max(SharpDX.Color3@,SharpDX.Color3@,SharpDX.Color3@)">
            <summary>
            Returns a color containing the smallest components of the specified colorss.
            </summary>
            <param name="left">The first source color.</param>
            <param name="right">The second source color.</param>
            <param name="result">When the method completes, contains an new color composed of the largest components of the source colorss.</param>
        </member>
        <member name="M:SharpDX.Color3.Max(SharpDX.Color3,SharpDX.Color3)">
            <summary>
            Returns a color containing the largest components of the specified colorss.
            </summary>
            <param name="left">The first source color.</param>
            <param name="right">The second source color.</param>
            <returns>A color containing the largest components of the source colors.</returns>
        </member>
        <member name="M:SharpDX.Color3.Min(SharpDX.Color3@,SharpDX.Color3@,SharpDX.Color3@)">
            <summary>
            Returns a color containing the smallest components of the specified colors.
            </summary>
            <param name="left">The first source color.</param>
            <param name="right">The second source color.</param>
            <param name="result">When the method completes, contains an new color composed of the smallest components of the source colors.</param>
        </member>
        <member name="M:SharpDX.Color3.Min(SharpDX.Color3,SharpDX.Color3)">
            <summary>
            Returns a color containing the smallest components of the specified colors.
            </summary>
            <param name="left">The first source color.</param>
            <param name="right">The second source color.</param>
            <returns>A color containing the smallest components of the source colors.</returns>
        </member>
        <member name="M:SharpDX.Color3.AdjustContrast(SharpDX.Color3@,System.Single,SharpDX.Color3@)">
            <summary>
            Adjusts the contrast of a color.
            </summary>
            <param name="value">The color whose contrast is to be adjusted.</param>
            <param name="contrast">The amount by which to adjust the contrast.</param>
            <param name="result">When the method completes, contains the adjusted color.</param>
        </member>
        <member name="M:SharpDX.Color3.AdjustContrast(SharpDX.Color3,System.Single)">
            <summary>
            Adjusts the contrast of a color.
            </summary>
            <param name="value">The color whose contrast is to be adjusted.</param>
            <param name="contrast">The amount by which to adjust the contrast.</param>
            <returns>The adjusted color.</returns>
        </member>
        <member name="M:SharpDX.Color3.AdjustSaturation(SharpDX.Color3@,System.Single,SharpDX.Color3@)">
            <summary>
            Adjusts the saturation of a color.
            </summary>
            <param name="value">The color whose saturation is to be adjusted.</param>
            <param name="saturation">The amount by which to adjust the saturation.</param>
            <param name="result">When the method completes, contains the adjusted color.</param>
        </member>
        <member name="M:SharpDX.Color3.AdjustSaturation(SharpDX.Color3,System.Single)">
            <summary>
            Adjusts the saturation of a color.
            </summary>
            <param name="value">The color whose saturation is to be adjusted.</param>
            <param name="saturation">The amount by which to adjust the saturation.</param>
            <returns>The adjusted color.</returns>
        </member>
        <member name="M:SharpDX.Color3.op_Addition(SharpDX.Color3,SharpDX.Color3)">
            <summary>
            Adds two colors.
            </summary>
            <param name="left">The first color to add.</param>
            <param name="right">The second color to add.</param>
            <returns>The sum of the two colors.</returns>
        </member>
        <member name="M:SharpDX.Color3.op_UnaryPlus(SharpDX.Color3)">
            <summary>
            Assert a color (return it unchanged).
            </summary>
            <param name="value">The color to assert (unchange).</param>
            <returns>The asserted (unchanged) color.</returns>
        </member>
        <member name="M:SharpDX.Color3.op_Subtraction(SharpDX.Color3,SharpDX.Color3)">
            <summary>
            Subtracts two colors.
            </summary>
            <param name="left">The first color to subtract.</param>
            <param name="right">The second color to subtract.</param>
            <returns>The difference of the two colors.</returns>
        </member>
        <member name="M:SharpDX.Color3.op_UnaryNegation(SharpDX.Color3)">
            <summary>
            Negates a color.
            </summary>
            <param name="value">The color to negate.</param>
            <returns>A negated color.</returns>
        </member>
        <member name="M:SharpDX.Color3.op_Multiply(System.Single,SharpDX.Color3)">
            <summary>
            Scales a color.
            </summary>
            <param name="scale">The factor by which to scale the color.</param>
            <param name="value">The color to scale.</param>
            <returns>The scaled color.</returns>
        </member>
        <member name="M:SharpDX.Color3.op_Multiply(SharpDX.Color3,System.Single)">
            <summary>
            Scales a color.
            </summary>
            <param name="value">The factor by which to scale the color.</param>
            <param name="scale">The color to scale.</param>
            <returns>The scaled color.</returns>
        </member>
        <member name="M:SharpDX.Color3.op_Multiply(SharpDX.Color3,SharpDX.Color3)">
            <summary>
            Modulates two colors.
            </summary>
            <param name="left">The first color to modulate.</param>
            <param name="right">The second color to modulate.</param>
            <returns>The modulated color.</returns>
        </member>
        <member name="M:SharpDX.Color3.op_Equality(SharpDX.Color3,SharpDX.Color3)">
            <summary>
            Tests for equality between two objects.
            </summary>
            <param name="left">The first value to compare.</param>
            <param name="right">The second value to compare.</param>
            <returns><c>true</c> if <paramref name="left"/> has the same value as <paramref name="right"/>; otherwise, <c>false</c>.</returns>
        </member>
        <member name="M:SharpDX.Color3.op_Inequality(SharpDX.Color3,SharpDX.Color3)">
            <summary>
            Tests for inequality between two objects.
            </summary>
            <param name="left">The first value to compare.</param>
            <param name="right">The second value to compare.</param>
            <returns><c>true</c> if <paramref name="left"/> has a different value than <paramref name="right"/>; otherwise, <c>false</c>.</returns>
        </member>
        <member name="M:SharpDX.Color3.op_Explicit(SharpDX.Color3)~SharpDX.Color4">
            <summary>
            Performs an explicit conversion from <see cref="T:SharpDX.Color3"/> to <see cref="T:SharpDX.Color4"/>.
            </summary>
            <param name="value">The value.</param>
            <returns>The result of the conversion.</returns>
        </member>
        <member name="M:SharpDX.Color3.op_Explicit(SharpDX.Color3)~SharpDX.Vector3">
            <summary>
            Performs an explicit conversion from <see cref="T:SharpDX.Color3"/> to <see cref="T:SharpDX.Vector3"/>.
            </summary>
            <param name="value">The value.</param>
            <returns>The result of the conversion.</returns>
        </member>
        <member name="M:SharpDX.Color3.op_Explicit(SharpDX.Vector3)~SharpDX.Color3">
            <summary>
            Performs an explicit conversion from <see cref="T:SharpDX.Vector3"/> to <see cref="T:SharpDX.Color3"/>.
            </summary>
            <param name="value">The value.</param>
            <returns>The result of the conversion.</returns>
        </member>
        <member name="M:SharpDX.Color3.op_Explicit(System.Int32)~SharpDX.Color3">
            <summary>
            Performs an explicit conversion from <see cref="T:System.Int32"/> to <see cref="T:SharpDX.Color3"/>.
            </summary>
            <param name="value">The value.</param>
            <returns>The result of the conversion.</returns>
        </member>
        <member name="M:SharpDX.Color3.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.Color3.ToString(System.String)">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <param name="format">The format.</param>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.Color3.ToString(System.IFormatProvider)">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <param name="formatProvider">The format provider.</param>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.Color3.ToString(System.String,System.IFormatProvider)">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <param name="format">The format.</param>
            <param name="formatProvider">The format provider.</param>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.Color3.GetHashCode">
            <summary>
            Returns a hash code for this instance.
            </summary>
            <returns>
            A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. 
            </returns>
        </member>
        <member name="M:SharpDX.Color3.Equals(SharpDX.Color3)">
            <summary>
            Determines whether the specified <see cref="T:SharpDX.Color3"/> is equal to this instance.
            </summary>
            <param name="other">The <see cref="T:SharpDX.Color3"/> to compare with this instance.</param>
            <returns>
            <c>true</c> if the specified <see cref="T:SharpDX.Color3"/> is equal to this instance; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="M:SharpDX.Color3.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to this instance.
            </summary>
            <param name="value">The <see cref="T:System.Object"/> to compare with this instance.</param>
            <returns>
            <c>true</c> if the specified <see cref="T:System.Object"/> is equal to this instance; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="P:SharpDX.Color3.Item(System.Int32)">
            <summary>
            Gets or sets the component at the specified index.
            </summary>
            <value>The value of the red, green, or blue component, depending on the index.</value>
            <param name="index">The index of the component to access. Use 0 for the red component, 1 for the green component, and 2 for the blue component.</param>
            <returns>The value of the component at the specified index.</returns>
            <exception cref="T:System.ArgumentOutOfRangeException">Thrown when the <paramref name="index"/> is out of the range [0, 2].</exception>
        </member>
        <member name="T:SharpDX.Color4">
            <summary>
            Represents a color in the form of argb.
            </summary>
        </member>
        <member name="F:SharpDX.Color4.Red">
            <summary>
            The red component of the color.
            </summary>
        </member>
        <member name="F:SharpDX.Color4.Green">
            <summary>
            The green component of the color.
            </summary>
        </member>
        <member name="F:SharpDX.Color4.Blue">
            <summary>
            The blue component of the color.
            </summary>
        </member>
        <member name="F:SharpDX.Color4.Alpha">
            <summary>
            The alpha component of the color.
            </summary>
        </member>
        <member name="M:SharpDX.Color4.#ctor(System.Single)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Color4"/> struct.
            </summary>
            <param name="value">The value that will be assigned to all components.</param>
        </member>
        <member name="M:SharpDX.Color4.#ctor(System.Single,System.Single,System.Single,System.Single)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Color4"/> struct.
            </summary>
            <param name="red">The red component of the color.</param>
            <param name="green">The green component of the color.</param>
            <param name="blue">The blue component of the color.</param>
            <param name="alpha">The alpha component of the color.</param>
        </member>
        <member name="M:SharpDX.Color4.#ctor(SharpDX.Vector4)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Color4"/> struct.
            </summary>
            <param name="value">The red, green, blue, and alpha components of the color.</param>
        </member>
        <member name="M:SharpDX.Color4.#ctor(SharpDX.Vector3,System.Single)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Color4"/> struct.
            </summary>
            <param name="value">The red, green, and blue compoennts of the color.</param>
            <param name="alpha">The alpha component of the color.</param>
        </member>
        <member name="M:SharpDX.Color4.#ctor(System.UInt32)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Color4"/> struct.
            </summary>
            <param name="argb">A packed integer containing all four color components.</param>
        </member>
        <member name="M:SharpDX.Color4.#ctor(System.Int32)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Color4"/> struct.
            </summary>
            <param name="argb">A packed integer containing all four color components.</param>
        </member>
        <member name="M:SharpDX.Color4.#ctor(System.Single[])">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Color4"/> struct.
            </summary>
            <param name="values">The values to assign to the alpha, red, green, and blue components of the color. This must be an array with four elements.</param>
            <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="values"/> is <c>null</c>.</exception>
            <exception cref="T:System.ArgumentOutOfRangeException">Thrown when <paramref name="values"/> contains more or less than four elements.</exception>
        </member>
        <member name="M:SharpDX.Color4.ToArgb">
            <summary>
            Converts the color into a packed integer.
            </summary>
            <returns>A packed integer containing all four color components.</returns>
        </member>
        <member name="M:SharpDX.Color4.ToVector3">
            <summary>
            Converts the color into a three component vector.
            </summary>
            <returns>A three component vector containing the red, green, and blue components of the color.</returns>
        </member>
        <member name="M:SharpDX.Color4.ToVector4">
            <summary>
            Converts the color into a four component vector.
            </summary>
            <returns>A four component vector containing all four color components.</returns>
        </member>
        <member name="M:SharpDX.Color4.ToArray">
            <summary>
            Creates an array containing the elements of the color.
            </summary>
            <returns>A four-element array containing the components of the color.</returns>
        </member>
        <member name="M:SharpDX.Color4.Add(SharpDX.Color4@,SharpDX.Color4@,SharpDX.Color4@)">
            <summary>
            Adds two colors.
            </summary>
            <param name="left">The first color to add.</param>
            <param name="right">The second color to add.</param>
            <param name="result">When the method completes, completes the sum of the two colors.</param>
        </member>
        <member name="M:SharpDX.Color4.Add(SharpDX.Color4,SharpDX.Color4)">
            <summary>
            Adds two colors.
            </summary>
            <param name="left">The first color to add.</param>
            <param name="right">The second color to add.</param>
            <returns>The sum of the two colors.</returns>
        </member>
        <member name="M:SharpDX.Color4.Subtract(SharpDX.Color4@,SharpDX.Color4@,SharpDX.Color4@)">
            <summary>
            Subtracts two colors.
            </summary>
            <param name="left">The first color to subtract.</param>
            <param name="right">The second color to subtract.</param>
            <param name="result">WHen the method completes, contains the difference of the two colors.</param>
        </member>
        <member name="M:SharpDX.Color4.Subtract(SharpDX.Color4,SharpDX.Color4)">
            <summary>
            Subtracts two colors.
            </summary>
            <param name="left">The first color to subtract.</param>
            <param name="right">The second color to subtract</param>
            <returns>The difference of the two colors.</returns>
        </member>
        <member name="M:SharpDX.Color4.Modulate(SharpDX.Color4@,SharpDX.Color4@,SharpDX.Color4@)">
            <summary>
            Modulates two colors.
            </summary>
            <param name="left">The first color to modulate.</param>
            <param name="right">The second color to modulate.</param>
            <param name="result">When the method completes, contains the modulated color.</param>
        </member>
        <member name="M:SharpDX.Color4.Modulate(SharpDX.Color4,SharpDX.Color4)">
            <summary>
            Modulates two colors.
            </summary>
            <param name="left">The first color to modulate.</param>
            <param name="right">The second color to modulate.</param>
            <returns>The modulated color.</returns>
        </member>
        <member name="M:SharpDX.Color4.Scale(SharpDX.Color4@,System.Single,SharpDX.Color4@)">
            <summary>
            Scales a color.
            </summary>
            <param name="value">The color to scale.</param>
            <param name="scale">The amount by which to scale.</param>
            <param name="result">When the method completes, contains the scaled color.</param>
        </member>
        <member name="M:SharpDX.Color4.Scale(SharpDX.Color4,System.Single)">
            <summary>
            Scales a color.
            </summary>
            <param name="value">The color to scale.</param>
            <param name="scale">The amount by which to scale.</param>
            <returns>The scaled color.</returns>
        </member>
        <member name="M:SharpDX.Color4.Negate(SharpDX.Color4@,SharpDX.Color4@)">
            <summary>
            Negates a color.
            </summary>
            <param name="value">The color to negate.</param>
            <param name="result">When the method completes, contains the negated color.</param>
        </member>
        <member name="M:SharpDX.Color4.Negate(SharpDX.Color4)">
            <summary>
            Negates a color.
            </summary>
            <param name="value">The color to negate.</param>
            <returns>The negated color.</returns>
        </member>
        <member name="M:SharpDX.Color4.Clamp(SharpDX.Color4@,SharpDX.Color4@,SharpDX.Color4@,SharpDX.Color4@)">
            <summary>
            Restricts a value to be within a specified range.
            </summary>
            <param name="value">The value to clamp.</param>
            <param name="min">The minimum value.</param>
            <param name="max">The maximum value.</param>
            <param name="result">When the method completes, contains the clamped value.</param>
        </member>
        <member name="M:SharpDX.Color4.Clamp(SharpDX.Color4,SharpDX.Color4,SharpDX.Color4)">
            <summary>
            Restricts a value to be within a specified range.
            </summary>
            <param name="value">The value to clamp.</param>
            <param name="min">The minimum value.</param>
            <param name="max">The maximum value.</param>
            <returns>The clamped value.</returns>
        </member>
        <member name="M:SharpDX.Color4.Lerp(SharpDX.Color4@,SharpDX.Color4@,System.Single,SharpDX.Color4@)">
            <summary>
            Performs a linear interpolation between two colors.
            </summary>
            <param name="start">Start color.</param>
            <param name="end">End color.</param>
            <param name="amount">Value between 0 and 1 indicating the weight of <paramref name="end"/>.</param>
            <param name="result">When the method completes, contains the linear interpolation of the two colors.</param>
            <remarks>
            This method performs the linear interpolation based on the following formula.
            <code>start + (end - start) * amount</code>
            Passing <paramref name="amount"/> a value of 0 will cause <paramref name="start"/> to be returned; a value of 1 will cause <paramref name="end"/> to be returned. 
            </remarks>
        </member>
        <member name="M:SharpDX.Color4.Lerp(SharpDX.Color4,SharpDX.Color4,System.Single)">
            <summary>
            Performs a linear interpolation between two colors.
            </summary>
            <param name="start">Start color.</param>
            <param name="end">End color.</param>
            <param name="amount">Value between 0 and 1 indicating the weight of <paramref name="end"/>.</param>
            <returns>The linear interpolation of the two colors.</returns>
            <remarks>
            This method performs the linear interpolation based on the following formula.
            <code>start + (end - start) * amount</code>
            Passing <paramref name="amount"/> a value of 0 will cause <paramref name="start"/> to be returned; a value of 1 will cause <paramref name="end"/> to be returned. 
            </remarks>
        </member>
        <member name="M:SharpDX.Color4.SmoothStep(SharpDX.Color4@,SharpDX.Color4@,System.Single,SharpDX.Color4@)">
            <summary>
            Performs a cubic interpolation between two colors.
            </summary>
            <param name="start">Start color.</param>
            <param name="end">End color.</param>
            <param name="amount">Value between 0 and 1 indicating the weight of <paramref name="end"/>.</param>
            <param name="result">When the method completes, contains the cubic interpolation of the two colors.</param>
        </member>
        <member name="M:SharpDX.Color4.SmoothStep(SharpDX.Color4,SharpDX.Color4,System.Single)">
            <summary>
            Performs a cubic interpolation between two colors.
            </summary>
            <param name="start">Start color.</param>
            <param name="end">End color.</param>
            <param name="amount">Value between 0 and 1 indicating the weight of <paramref name="end"/>.</param>
            <returns>The cubic interpolation of the two colors.</returns>
        </member>
        <member name="M:SharpDX.Color4.Max(SharpDX.Color4@,SharpDX.Color4@,SharpDX.Color4@)">
            <summary>
            Returns a color containing the smallest components of the specified colorss.
            </summary>
            <param name="left">The first source color.</param>
            <param name="right">The second source color.</param>
            <param name="result">When the method completes, contains an new color composed of the largest components of the source colorss.</param>
        </member>
        <member name="M:SharpDX.Color4.Max(SharpDX.Color4,SharpDX.Color4)">
            <summary>
            Returns a color containing the largest components of the specified colorss.
            </summary>
            <param name="left">The first source color.</param>
            <param name="right">The second source color.</param>
            <returns>A color containing the largest components of the source colors.</returns>
        </member>
        <member name="M:SharpDX.Color4.Min(SharpDX.Color4@,SharpDX.Color4@,SharpDX.Color4@)">
            <summary>
            Returns a color containing the smallest components of the specified colors.
            </summary>
            <param name="left">The first source color.</param>
            <param name="right">The second source color.</param>
            <param name="result">When the method completes, contains an new color composed of the smallest components of the source colors.</param>
        </member>
        <member name="M:SharpDX.Color4.Min(SharpDX.Color4,SharpDX.Color4)">
            <summary>
            Returns a color containing the smallest components of the specified colors.
            </summary>
            <param name="left">The first source color.</param>
            <param name="right">The second source color.</param>
            <returns>A color containing the smallest components of the source colors.</returns>
        </member>
        <member name="M:SharpDX.Color4.AdjustContrast(SharpDX.Color4@,System.Single,SharpDX.Color4@)">
            <summary>
            Adjusts the contrast of a color.
            </summary>
            <param name="value">The color whose contrast is to be adjusted.</param>
            <param name="contrast">The amount by which to adjust the contrast.</param>
            <param name="result">When the method completes, contains the adjusted color.</param>
        </member>
        <member name="M:SharpDX.Color4.AdjustContrast(SharpDX.Color4,System.Single)">
            <summary>
            Adjusts the contrast of a color.
            </summary>
            <param name="value">The color whose contrast is to be adjusted.</param>
            <param name="contrast">The amount by which to adjust the contrast.</param>
            <returns>The adjusted color.</returns>
        </member>
        <member name="M:SharpDX.Color4.AdjustSaturation(SharpDX.Color4@,System.Single,SharpDX.Color4@)">
            <summary>
            Adjusts the saturation of a color.
            </summary>
            <param name="value">The color whose saturation is to be adjusted.</param>
            <param name="saturation">The amount by which to adjust the saturation.</param>
            <param name="result">When the method completes, contains the adjusted color.</param>
        </member>
        <member name="M:SharpDX.Color4.AdjustSaturation(SharpDX.Color4,System.Single)">
            <summary>
            Adjusts the saturation of a color.
            </summary>
            <param name="value">The color whose saturation is to be adjusted.</param>
            <param name="saturation">The amount by which to adjust the saturation.</param>
            <returns>The adjusted color.</returns>
        </member>
        <member name="M:SharpDX.Color4.op_Addition(SharpDX.Color4,SharpDX.Color4)">
            <summary>
            Adds two colors.
            </summary>
            <param name="left">The first color to add.</param>
            <param name="right">The second color to add.</param>
            <returns>The sum of the two colors.</returns>
        </member>
        <member name="M:SharpDX.Color4.op_UnaryPlus(SharpDX.Color4)">
            <summary>
            Assert a color (return it unchanged).
            </summary>
            <param name="value">The color to assert (unchange).</param>
            <returns>The asserted (unchanged) color.</returns>
        </member>
        <member name="M:SharpDX.Color4.op_Subtraction(SharpDX.Color4,SharpDX.Color4)">
            <summary>
            Subtracts two colors.
            </summary>
            <param name="left">The first color to subtract.</param>
            <param name="right">The second color to subtract.</param>
            <returns>The difference of the two colors.</returns>
        </member>
        <member name="M:SharpDX.Color4.op_UnaryNegation(SharpDX.Color4)">
            <summary>
            Negates a color.
            </summary>
            <param name="value">The color to negate.</param>
            <returns>A negated color.</returns>
        </member>
        <member name="M:SharpDX.Color4.op_Multiply(System.Single,SharpDX.Color4)">
            <summary>
            Scales a color.
            </summary>
            <param name="scale">The factor by which to scale the color.</param>
            <param name="value">The color to scale.</param>
            <returns>The scaled color.</returns>
        </member>
        <member name="M:SharpDX.Color4.op_Multiply(SharpDX.Color4,System.Single)">
            <summary>
            Scales a color.
            </summary>
            <param name="value">The factor by which to scale the color.</param>
            <param name="scale">The color to scale.</param>
            <returns>The scaled color.</returns>
        </member>
        <member name="M:SharpDX.Color4.op_Multiply(SharpDX.Color4,SharpDX.Color4)">
            <summary>
            Modulates two colors.
            </summary>
            <param name="left">The first color to modulate.</param>
            <param name="right">The second color to modulate.</param>
            <returns>The modulated color.</returns>
        </member>
        <member name="M:SharpDX.Color4.op_Equality(SharpDX.Color4,SharpDX.Color4)">
            <summary>
            Tests for equality between two objects.
            </summary>
            <param name="left">The first value to compare.</param>
            <param name="right">The second value to compare.</param>
            <returns><c>true</c> if <paramref name="left"/> has the same value as <paramref name="right"/>; otherwise, <c>false</c>.</returns>
        </member>
        <member name="M:SharpDX.Color4.op_Inequality(SharpDX.Color4,SharpDX.Color4)">
            <summary>
            Tests for inequality between two objects.
            </summary>
            <param name="left">The first value to compare.</param>
            <param name="right">The second value to compare.</param>
            <returns><c>true</c> if <paramref name="left"/> has a different value than <paramref name="right"/>; otherwise, <c>false</c>.</returns>
        </member>
        <member name="M:SharpDX.Color4.op_Explicit(SharpDX.Color4)~SharpDX.Color3">
            <summary>
            Performs an explicit conversion from <see cref="T:SharpDX.Color4"/> to <see cref="T:SharpDX.Color3"/>.
            </summary>
            <param name="value">The value.</param>
            <returns>The result of the conversion.</returns>
        </member>
        <member name="M:SharpDX.Color4.op_Explicit(SharpDX.Color4)~SharpDX.Vector3">
            <summary>
            Performs an explicit conversion from <see cref="T:SharpDX.Color4"/> to <see cref="T:SharpDX.Vector3"/>.
            </summary>
            <param name="value">The value.</param>
            <returns>The result of the conversion.</returns>
        </member>
        <member name="M:SharpDX.Color4.op_Explicit(SharpDX.Color4)~SharpDX.Vector4">
            <summary>
            Performs an explicit conversion from <see cref="T:SharpDX.Color4"/> to <see cref="T:SharpDX.Vector4"/>.
            </summary>
            <param name="value">The value.</param>
            <returns>The result of the conversion.</returns>
        </member>
        <member name="M:SharpDX.Color4.op_Explicit(SharpDX.Vector3)~SharpDX.Color4">
            <summary>
            Performs an explicit conversion from <see cref="T:SharpDX.Vector3"/> to <see cref="T:SharpDX.Color4"/>.
            </summary>
            <param name="value">The value.</param>
            <returns>The result of the conversion.</returns>
        </member>
        <member name="M:SharpDX.Color4.op_Explicit(SharpDX.Vector4)~SharpDX.Color4">
            <summary>
            Performs an explicit conversion from <see cref="T:SharpDX.Vector4"/> to <see cref="T:SharpDX.Color4"/>.
            </summary>
            <param name="value">The value.</param>
            <returns>The result of the conversion.</returns>
        </member>
        <member name="M:SharpDX.Color4.op_Implicit(SharpDX.Color4)~System.Int32">
            <summary>
            Performs an implicit conversion from <see cref="T:SharpDX.Color4"/> to <see cref="T:System.Int32"/>.
            </summary>
            <param name="value">The value.</param>
            <returns>
            The result of the conversion.
            </returns>
        </member>
        <member name="M:SharpDX.Color4.op_Implicit(System.Int32)~SharpDX.Color4">
            <summary>
            Performs an implicit conversion from <see cref="T:System.Int32"/> to <see cref="T:SharpDX.Color4"/>.
            </summary>
            <param name="value">The value.</param>
            <returns>
            The result of the conversion.
            </returns>
        </member>
        <member name="M:SharpDX.Color4.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.Color4.ToString(System.String)">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <param name="format">The format.</param>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.Color4.ToString(System.IFormatProvider)">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <param name="formatProvider">The format provider.</param>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.Color4.ToString(System.String,System.IFormatProvider)">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <param name="format">The format.</param>
            <param name="formatProvider">The format provider.</param>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.Color4.GetHashCode">
            <summary>
            Returns a hash code for this instance.
            </summary>
            <returns>
            A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. 
            </returns>
        </member>
        <member name="M:SharpDX.Color4.Equals(SharpDX.Color4)">
            <summary>
            Determines whether the specified <see cref="T:SharpDX.Color4"/> is equal to this instance.
            </summary>
            <param name="other">The <see cref="T:SharpDX.Color4"/> to compare with this instance.</param>
            <returns>
            <c>true</c> if the specified <see cref="T:SharpDX.Color4"/> is equal to this instance; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="M:SharpDX.Color4.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to this instance.
            </summary>
            <param name="value">The <see cref="T:System.Object"/> to compare with this instance.</param>
            <returns>
            <c>true</c> if the specified <see cref="T:System.Object"/> is equal to this instance; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="P:SharpDX.Color4.Item(System.Int32)">
            <summary>
            Gets or sets the component at the specified index.
            </summary>
            <value>The value of the alpha, red, green, or blue component, depending on the index.</value>
            <param name="index">The index of the component to access. Use 0 for the alpha component, 1 for the red component, 2 for the green component, and 3 for the blue component.</param>
            <returns>The value of the component at the specified index.</returns>
            <exception cref="T:System.ArgumentOutOfRangeException">Thrown when the <paramref name="index"/> is out of the range [0, 3].</exception>
        </member>
        <member name="P:SharpDX.Win32.ComBaseStreamNative.Callback">
            <summary>
            Gets or sets the unmanaged callback.
            </summary>
            <value>The unmanaged callback.</value>
            <remarks>
            This property is set whenever this instance has an unmanaged callback
            registered. This callback must be disposed when disposing this instance. 
            </remarks>
        </member>
        <member name="T:SharpDX.ComObject">
            <summary>
            Root IUnknown class to interop with COM object
            </summary>
        </member>
        <member name="T:SharpDX.CppObject">
            <summary>
            Root class for all Cpp interop object.
            </summary>
        </member>
        <member name="F:SharpDX.CppObject._nativePointer">
            <summary>
            The native pointer
            </summary>
        </member>
        <member name="M:SharpDX.CppObject.#ctor(System.IntPtr)">
            <summary>
              Default constructor.
            </summary>
            <param name = "pointer">Pointer to Cpp Object</param>
        </member>
        <member name="M:SharpDX.CppObject.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.CppObject"/> class.
            </summary>
        </member>
        <member name="M:SharpDX.CppObject.op_Explicit(SharpDX.CppObject)~System.IntPtr">
            <summary>
            Performs an explicit conversion from <see cref="T:SharpDX.CppObject"/> to <see cref="T:System.IntPtr"/>.
            </summary>
            <param name="cppObject">The CPP object.</param>
            <returns>
            The result of the conversion.
            </returns>
        </member>
        <member name="M:SharpDX.CppObject.FromTemp(SharpDX.CppObject)">
            <summary>
            Initializes this instance with a pointer from a temporary object and set the pointer of the temporary  
            object to IntPtr.Zero.
            </summary>
            <param name="temp">The instance to get the NativePointer.</param>
        </member>
        <member name="M:SharpDX.CppObject.FromTemp(System.IntPtr)">
            <summary>
            Initializes this instance with a pointer from a temporary object and set the pointer of the temporary  
            object to IntPtr.Zero.
            </summary>
            <param name="temp">The instance to get the NativePointer.</param>
        </member>
        <member name="M:SharpDX.CppObject.NativePointerUpdating">
            <summary>
            Method called when <see cref="P:SharpDX.CppObject.NativePointer"/> is going to be update.
            </summary>
        </member>
        <member name="M:SharpDX.CppObject.NativePointerUpdated(System.IntPtr)">
            <summary>
            Method called when the <see cref="P:SharpDX.CppObject.NativePointer"/> is updated.
            </summary>
        </member>
        <member name="M:SharpDX.CppObject.FromPointer``1(System.IntPtr)">
            <summary>
            Instantiate a ComObject from a native pointer.
            </summary>
            <typeparam name="T">The ComObject class that will be returned</typeparam>
            <param name="comObjectPtr">The native pointer to a com object.</param>
            <returns>An instance of T binded to the native pointer</returns>
        </member>
        <member name="P:SharpDX.CppObject.NativePointer">
            <summary>
              Get a pointer to the underlying Cpp Object
            </summary>
        </member>
        <member name="T:SharpDX.IUnknown">
            <summary>
            Base interface for Component Object Model (COM).
            </summary>
        </member>
        <member name="M:SharpDX.IUnknown.QueryInterface(System.Guid@,System.IntPtr@)">
            <summary>
            Queries the supported COM interface on this instance.
            </summary>
            <param name="guid">The guid of the interface.</param>
            <param name="comObject">The output COM object reference.</param>
            <returns>If successfull, <see cref="F:SharpDX.Result.Ok"/> </returns>
        </member>
        <member name="M:SharpDX.IUnknown.AddReference">
            <summary>
            Increments the reference count for an interface on this instance.
            </summary>
            <returns>The method returns the new reference count.</returns>
        </member>
        <member name="M:SharpDX.IUnknown.Release">
            <summary>
            Decrements the reference count for an interface on this instance.
            </summary>
            <returns>The method returns the new reference count.</returns>
        </member>
        <member name="M:SharpDX.ComObject.#ctor(System.IntPtr)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.ComObject"/> class.
            </summary>
            <param name="pointer">Pointer to Cpp Object</param>
        </member>
        <member name="M:SharpDX.ComObject.#ctor(System.Object)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.ComObject"/> class from a IUnknown object.
            </summary>
            <param name="iunknowObject">Reference to a IUnknown object</param>
        </member>
        <member name="M:SharpDX.ComObject.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.ComObject"/> class.
            </summary>
        </member>
        <member name="M:SharpDX.ComObject.QueryInterface(System.Guid,System.IntPtr@)">
            <summary>
            Query this instance for a particular COM GUID/interface support.
            </summary>
            <param name="guid">GUID query interface</param>
            <param name="outPtr">output object associated with this GUID, IntPtr.Zero in interface is not supported</param>
            <exception cref="T:SharpDX.SharpDXException">If this object doesn't support the interface</exception>
            <msdn-id>ms682521</msdn-id>
            <unmanaged>IUnknown::QueryInterface</unmanaged>	
            <unmanaged-short>IUnknown::QueryInterface</unmanaged-short>
        </member>
        <member name="M:SharpDX.ComObject.QueryInterfaceOrNull(System.Guid)">
            <summary>
              Query instance for a particular COM GUID/interface support.
            </summary>
            <param name="guid">GUID query interface</param>
            <exception cref="T:SharpDX.SharpDXException">If this object doesn't support the interface</exception>
            <msdn-id>ms682521</msdn-id>
            <unmanaged>IUnknown::QueryInterface</unmanaged>	
            <unmanaged-short>IUnknown::QueryInterface</unmanaged-short>
        </member>
        <member name="M:SharpDX.ComObject.QueryInterface``1">
            <summary>
             Query this instance for a particular COM interface support.
            </summary>
            <typeparam name="T">The type of the COM interface to query</typeparam>
            <returns>An instance of the queried interface</returns>
             <exception cref="T:SharpDX.SharpDXException">If this object doesn't support the interface</exception>
             <msdn-id>ms682521</msdn-id>
             <unmanaged>IUnknown::QueryInterface</unmanaged>	
             <unmanaged-short>IUnknown::QueryInterface</unmanaged-short>
        </member>
        <member name="M:SharpDX.ComObject.QueryInterfaceUnsafe``1">
            <summary>
             Query this instance for a particular COM interface support.
            </summary>
            <typeparam name="T">The type of the COM interface to query</typeparam>
            <returns>An instance of the queried interface</returns>
             <exception cref="T:SharpDX.SharpDXException">If this object doesn't support the interface</exception>
             <msdn-id>ms682521</msdn-id>
             <unmanaged>IUnknown::QueryInterface</unmanaged>	
             <unmanaged-short>IUnknown::QueryInterface</unmanaged-short>
        </member>
        <member name="M:SharpDX.ComObject.As``1(System.Object)">
             <summary>
             Queries a managed object for a particular COM interface support (This method is a shortcut to <see cref="M:SharpDX.ComObject.QueryInterface(System.Guid,System.IntPtr@)"/>)
             </summary>
            <typeparam name="T">The type of the COM interface to query</typeparam>
             <param name="comObject">The managed COM object.</param>
            <returns>An instance of the queried interface</returns>
             <msdn-id>ms682521</msdn-id>
             <unmanaged>IUnknown::QueryInterface</unmanaged>	
             <unmanaged-short>IUnknown::QueryInterface</unmanaged-short>
        </member>
        <member name="M:SharpDX.ComObject.As``1(System.IntPtr)">
             <summary>
             Queries a managed object for a particular COM interface support (This method is a shortcut to <see cref="M:SharpDX.ComObject.QueryInterface(System.Guid,System.IntPtr@)"/>)
             </summary>
            <typeparam name="T">The type of the COM interface to query</typeparam>
             <param name="iunknownPtr">The managed COM object.</param>
            <returns>An instance of the queried interface</returns>
             <msdn-id>ms682521</msdn-id>
             <unmanaged>IUnknown::QueryInterface</unmanaged>	
             <unmanaged-short>IUnknown::QueryInterface</unmanaged-short>
        </member>
        <member name="M:SharpDX.ComObject.Dispose``1(``0@)">
             <summary>
             Safely dispose a referencem if not null, and set it to null after dispose.
             </summary>
            <typeparam name="T">The type of COM interface to dispose</typeparam>
             <param name="comObject">Object to dispose</param>
             <remarks>
             The reference will be set to null after dispose.
             </remarks>
        </member>
        <member name="M:SharpDX.ComObject.QueryInterface``1(System.Object)">
             <summary>
             Queries a managed object for a particular COM interface support.
             </summary>
            <typeparam name="T">The type of the COM interface to query</typeparam>
             <param name="comObject">The managed COM object.</param>
            <returns>An instance of the queried interface</returns>
             <msdn-id>ms682521</msdn-id>
             <unmanaged>IUnknown::QueryInterface</unmanaged>	
             <unmanaged-short>IUnknown::QueryInterface</unmanaged-short>
        </member>
        <member name="M:SharpDX.ComObject.QueryInterfaceOrNull``1">
            <summary>
             Query Interface for a particular interface support.
            </summary>
            <returns>An instance of the queried interface or null if it is not supported</returns>
            <returns></returns>
             <msdn-id>ms682521</msdn-id>
             <unmanaged>IUnknown::QueryInterface</unmanaged>	
             <unmanaged-short>IUnknown::QueryInterface</unmanaged-short>
        </member>
        <member name="M:SharpDX.ComObject.op_Explicit(System.IntPtr)~SharpDX.ComObject">
            <summary>
            Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.ComObject"/>.
            </summary>
            <param name="nativePointer">The native pointer.</param>
            <returns>
            The result of the conversion.
            </returns>
        </member>
        <member name="M:SharpDX.ComObject.QueryInterfaceFrom``1(``0)">
            <summary>
             Query Interface for a particular interface support and attach to the given instance.
            </summary>
            <typeparam name="T"></typeparam>
            <returns></returns>
        </member>
        <member name="M:SharpDX.ComObject.Dispose(System.Boolean)">
            <summary>
            Releases unmanaged and - optionally - managed resources
            </summary>
            <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
            <msdn-id>ms682317</msdn-id>
            <unmanaged>IUnknown::Release</unmanaged>	
            <unmanaged-short>IUnknown::Release</unmanaged-short>
        </member>
        <member name="T:SharpDX.ComObjectCallback">
            <summary>
            Base class for unmanaged callabackable Com object.
            </summary>
        </member>
        <member name="M:SharpDX.ComObjectCallback.#ctor(System.IntPtr)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.ComObject"/> class.
            </summary>
            <param name="pointer">Pointer to Cpp Object</param>
        </member>
        <member name="M:SharpDX.ComObjectCallback.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.ComObject"/> class.
            </summary>
        </member>
        <member name="P:SharpDX.ComObjectCallback.Shadow">
            <summary>
            Implements <see cref="T:SharpDX.ICallbackable"/> but it cannot not be set. 
            This is only used to support for interop with unmanaged callback.
            </summary>
        </member>
        <member name="T:SharpDX.ComObjectShadow">
            <summary>
            A COM Interface Callback
            </summary>
        </member>
        <member name="T:SharpDX.CppObjectShadow">
            <summary>
            An Interface shadow callback
            </summary>
        </member>
        <member name="M:SharpDX.CppObjectShadow.Initialize(SharpDX.ICallbackable)">
            <summary>
            Initializes the specified shadow instance from a vtbl and a callback.
            </summary>
            <param name="callbackInstance">The callback.</param>
        </member>
        <member name="M:SharpDX.CppObjectShadow.ToIntPtr``1(SharpDX.ICallbackable)">
            <summary>
            Return the unmanaged pointer from a tuple <see cref="T:SharpDX.CppObjectShadow"/> and <see cref="T:SharpDX.ICallbackable"/> instances.
            </summary>
            <typeparam name="TCallback">The type of the callback.</typeparam>
            <param name="callback">The callback.</param>
            <returns>A pointer to the unamanaged C++ object of the callback</returns>
        </member>
        <member name="P:SharpDX.CppObjectShadow.Callback">
            <summary>
            Gets the callback.
            </summary>
        </member>
        <member name="P:SharpDX.CppObjectShadow.GetVtbl">
            <summary>
            Gets the VTBL associated with this shadow instance.
            </summary>
        </member>
        <member name="M:SharpDX.CppObjectVtbl.#ctor(System.Int32)">
            <summary>
            Default Constructor.
            </summary>
            <param name="numberOfCallbackMethods">number of methods to allocate in the VTBL</param>
        </member>
        <member name="M:SharpDX.CppObjectVtbl.AddMethod(System.Delegate)">
            <summary>
            Add a method supported by this interface. This method is typically called from inherited constructor.
            </summary>
            <param name="method">the managed delegate method</param>
        </member>
        <member name="P:SharpDX.CppObjectVtbl.Pointer">
            <summary>
            Gets the pointer to the vtbl.
            </summary>
        </member>
        <member name="T:SharpDX.CompilationException">
            <summary>
            A compilation exception.
            </summary>
        </member>
        <member name="T:SharpDX.SharpDXException">
            <summary>
              The base class for errors that occur in SharpDX.
            </summary>
        </member>
        <member name="M:SharpDX.SharpDXException.#ctor">
            <summary>
              Initializes a new instance of the <see cref = "T:SharpDX.SharpDXException" /> class.
            </summary>
        </member>
        <member name="M:SharpDX.SharpDXException.#ctor(SharpDX.Result)">
            <summary>
              Initializes a new instance of the <see cref = "T:SharpDX.SharpDXException" /> class.
            </summary>
            <param name = "result">The result code that caused this exception.</param>
        </member>
        <member name="M:SharpDX.SharpDXException.#ctor(SharpDX.ResultDescriptor)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.SharpDXException"/> class.
            </summary>
            <param name="descriptor">The result descriptor.</param>
        </member>
        <member name="M:SharpDX.SharpDXException.#ctor(SharpDX.Result,System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.SharpDXException"/> class.
            </summary>
            <param name="result">The error result code.</param>
            <param name="message">The message describing the exception.</param>
        </member>
        <member name="M:SharpDX.SharpDXException.#ctor(SharpDX.Result,System.String,System.Object[])">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.SharpDXException"/> class.
            </summary>
            <param name="result">The error result code.</param>
            <param name="message">The message describing the exception.</param>
            <param name="args">formatting arguments</param>
        </member>
        <member name="M:SharpDX.SharpDXException.#ctor(System.String,System.Object[])">
            <summary>
              Initializes a new instance of the <see cref = "T:SharpDX.SharpDXException" /> class.
            </summary>
            <param name = "message">The message describing the exception.</param>
            <param name="args">formatting arguments</param>
        </member>
        <member name="M:SharpDX.SharpDXException.#ctor(System.String,System.Exception,System.Object[])">
            <summary>
              Initializes a new instance of the <see cref = "T:SharpDX.SharpDXException" /> class.
            </summary>
            <param name = "message">The message describing the exception.</param>
            <param name = "innerException">The exception that caused this exception.</param>
            <param name="args">formatting arguments</param>
        </member>
        <member name="P:SharpDX.SharpDXException.ResultCode">
            <summary>
              Gets the <see cref = "T:SharpDX.Result">Result code</see> for the exception. This value indicates
              the specific type of failure that occured within SharpDX.
            </summary>
        </member>
        <member name="P:SharpDX.SharpDXException.Descriptor">
            <summary>
              Gets the <see cref = "T:SharpDX.Result">Result code</see> for the exception. This value indicates
              the specific type of failure that occured within SharpDX.
            </summary>
        </member>
        <member name="M:SharpDX.CompilationException.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.CompilationException"/> class.
            </summary>
            <param name="message">The message.</param>
        </member>
        <member name="M:SharpDX.CompilationException.#ctor(SharpDX.Result,System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.CompilationException"/> class.
            </summary>
            <param name="errorCode">The error code.</param>
            <param name="message">The message.</param>
        </member>
        <member name="T:SharpDX.Component">
            <summary>
            Base class for a framework component. This class can be used as a base component to provide:
            <list type="bullet">
            <item><description>a way to create named disposable component which can be associated with some user tags.</description></item>
            <item><description>a container for disposable objects, being able to dispose dependent disposable.</description></item>
            <item><description>an automatic component container with todipose-region that will be able to add newly created components to a list of components to dispose. Use <see cref="M:SharpDX.Component.PushCollector"/> and <see cref="M:SharpDX.Component.PopCollector"/> to use this feature in a subclass container component.</description></item>
            </list>
            </summary>
        </member>
        <member name="F:SharpDX.Component._collectors">
            <summary>
            Thread local storage for ToDispose Collectors.
            </summary>
        </member>
        <member name="M:SharpDX.Component.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Component"/> class.
            </summary>
        </member>
        <member name="M:SharpDX.Component.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Component"/> class.
            </summary>
            <param name="name">The name attached to this component</param>
        </member>
        <member name="M:SharpDX.Component.Dispose">
            <summary>
            Releases unmanaged and - optionally - managed resources
            </summary>
        </member>
        <member name="M:SharpDX.Component.PushCollector">
            <summary>
            Use this component as the collector for new components created in the current thread.
            </summary>
            <remarks>
            The collector push on the stack is local to the current executing thread.
            </remarks>
        </member>
        <member name="M:SharpDX.Component.PopCollector">
            <summary>
            Unuse this component as the collector for new components created in the current thread.
            </summary>
            <remarks>
            The collector push on the stack is local to the current executing thread.
            </remarks>
        </member>
        <member name="M:SharpDX.Component.ToDisposeAuto">
            <summary>
            Try to add this component to the latest component that started PushCollector
            </summary>
        </member>
        <member name="M:SharpDX.Component.Dispose(System.Boolean)">
            <summary>
            Disposes of object resources.
            </summary>
            <param name="disposeManagedResources">If true, managed resources should be
            disposed of in addition to unmanaged resources.</param>
        </member>
        <member name="M:SharpDX.Component.ToDispose``1(``0)">
            <summary>
            Adds a disposable object to the list of the objects to dispose.
            </summary>
            <param name="toDisposeArg">To dispose.</param>
        </member>
        <member name="M:SharpDX.Component.SafeDispose``1(``0@)">
            <summary>
            Dispose a disposable object and set the reference to null. Removes this object from the ToDispose list.
            </summary>
            <param name="objectToDispose">Object to dispose.</param>
        </member>
        <member name="M:SharpDX.Component.RemoveToDispose``1(``0)">
            <summary>
            Removes a disposable object to the list of the objects to dispose.
            </summary>
            <typeparam name="T"></typeparam>
            <param name="toDisposeArg">To dispose.</param>
        </member>
        <member name="E:SharpDX.Component.Disposing">
            <summary>
            Occurs while this component is disposing and before it is disposed.
            </summary>
        </member>
        <member name="P:SharpDX.Component.Disposables">
            <summary>
            Gets or sets the disposables.
            </summary>
            <value>The disposables.</value>
        </member>
        <member name="P:SharpDX.Component.IsAttached">
            <summary>
            Gets or sets a value indicating whether this instance is attached to a collector.
            </summary>
            <value>
            	<c>true</c> if this instance is attached to a collector; otherwise, <c>false</c>.
            </value>
        </member>
        <member name="P:SharpDX.Component.Name">
            <summary>
            Gets the name of this component.
            </summary>
            <value>The name.</value>
        </member>
        <member name="P:SharpDX.Component.Tag">
            <summary>
            Gets or sets the tag associated to this object.
            </summary>
            <value>The tag.</value>
        </member>
        <member name="P:SharpDX.Component.IsDisposed">
            <summary>
            Gets a value indicating whether this instance is disposed.
            </summary>
            <value>
            	<c>true</c> if this instance is disposed; otherwise, <c>false</c>.
            </value>
        </member>
        <member name="T:SharpDX.Configuration">
            <summary>
            Global configuration.
            </summary>
        </member>
        <member name="F:SharpDX.Configuration.EnableObjectTracking">
            <summary>
            Enables or disables object tracking. Default is disabled (false).
            </summary>
            <remarks>
            Object Tracking is used to track COM object lifecycle creation/dispose. When this option is enabled
            objects can be tracked using <see cref="T:SharpDX.Diagnostics.ObjectTracker"/>. Using Object tracking has a significant
            impact on performance and should be used only while debugging.
            </remarks>
        </member>
        <member name="F:SharpDX.Configuration.EnableReleaseOnFinalizer">
            <summary>
            Enables or disables release of ComObject on finalizer. Default is disabled (false).
            </summary>
        </member>
        <member name="F:SharpDX.Configuration.ThrowOnShaderCompileError">
            <summary>
            Throws a <see cref="T:SharpDX.CompilationException"/> when a shader or effect compilation error occured. Default is enabled (true).
            </summary>
        </member>
        <member name="T:SharpDX.DataBox">
            <summary>
            Provides access to data organized in 3D.
            </summary>
        </member>
        <member name="M:SharpDX.DataBox.#ctor(System.IntPtr,System.Int32,System.Int32)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.DataBox"/> struct.
            </summary>
            <param name="datapointer">The datapointer.</param>
            <param name="rowPitch">The row pitch.</param>
            <param name="slicePitch">The slice pitch.</param>
        </member>
        <member name="M:SharpDX.DataBox.#ctor(System.IntPtr)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.DataBox"/> struct.
            </summary>
            <param name="dataPointer">The data pointer.</param>
        </member>
        <member name="F:SharpDX.DataBox.DataPointer">
            <summary>
            Pointer to the data.
            </summary>
        </member>
        <member name="F:SharpDX.DataBox.RowPitch">
            <summary>
            Gets the number of bytes per row.
            </summary>
        </member>
        <member name="F:SharpDX.DataBox.SlicePitch">
            <summary>
            Gets the number of bytes per slice (for a 3D texture, a slice is a 2D image)
            </summary>
        </member>
        <member name="T:SharpDX.DataRectangle">
            <summary>
            Provides access to data organized in 2D.
            </summary>
        </member>
        <member name="M:SharpDX.DataRectangle.#ctor(System.IntPtr,System.Int32)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.DataRectangle"/> class.
            </summary>
            <param name="dataPointer">The data pointer.</param>
            <param name="pitch">The pitch.</param>
        </member>
        <member name="F:SharpDX.DataRectangle.DataPointer">
            <summary>
            Pointer to the data.
            </summary>
        </member>
        <member name="F:SharpDX.DataRectangle.Pitch">
            <summary>
            Gets the number of bytes per row.
            </summary>
        </member>
        <member name="T:SharpDX.DataStream">
            <summary>
              Provides a stream interface to a buffer located in unmanaged memory.
            </summary>
        </member>
        <member name="M:SharpDX.DataStream.#ctor(SharpDX.Direct3D.Blob)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.DataStream"/> class from a Blob buffer.
            </summary>
            <param name="buffer">The buffer.</param>
        </member>
        <member name="M:SharpDX.DataStream.Create``1(``0[],System.Boolean,System.Boolean,System.Boolean)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.DataStream"/> class, using a managed buffer as a backing store.
            </summary>
            <typeparam name="T"></typeparam>
            <param name="userBuffer">A managed array to be used as a backing store.</param>
            <param name="canRead"><c>true</c> if reading from the buffer should be allowed; otherwise, <c>false</c>.</param>
            <param name="canWrite"><c>true</c> if writing to the buffer should be allowed; otherwise, <c>false</c>.</param>
            <param name="makeCopy">if set to <c>true</c> [make copy].</param>
            <returns></returns>
        </member>
        <member name="M:SharpDX.DataStream.#ctor(System.Int32,System.Boolean,System.Boolean)">
            <summary>
              Initializes a new instance of the <see cref="T:SharpDX.DataStream"/> class, and allocates a new buffer to use as a backing store.
            </summary>
            <param name="sizeInBytes">The size of the buffer to be allocated, in bytes.</param>
            <param name="canRead">
              <c>true</c> if reading from the buffer should be allowed; otherwise, <c>false</c>.</param>
            <param name="canWrite">
              <c>true</c> if writing to the buffer should be allowed; otherwise, <c>false</c>.</param>
        </member>
        <member name="M:SharpDX.DataStream.#ctor(System.IntPtr,System.Int64,System.Boolean,System.Boolean)">
            <summary>
              Initializes a new instance of the <see cref="T:SharpDX.DataStream"/> class, using an unmanaged buffer as a backing store.
            </summary>
            <param name="userBuffer">A pointer to the buffer to be used as a backing store.</param>
            <param name="sizeInBytes">The size of the buffer provided, in bytes.</param>
            <param name="canRead">
              <c>true</c> if reading from the buffer should be allowed; otherwise, <c>false</c>.</param>
            <param name="canWrite">
              <c>true</c> if writing to the buffer should be allowed; otherwise, <c>false</c>.</param>
        </member>
        <member name="M:SharpDX.DataStream.Dispose(System.Boolean)">
            <summary>
            Releases unmanaged and - optionally - managed resources
            </summary>
            <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
        </member>
        <member name="M:SharpDX.DataStream.Flush">
            <summary>
              Not supported.
            </summary>
            <exception cref = "T:System.NotSupportedException">Always thrown.</exception>
        </member>
        <member name="M:SharpDX.DataStream.Read``1">
            <summary>
              Reads a single value from the current stream and advances the current
              position within this stream by the number of bytes read.
            </summary>
            <remarks>
            In order to provide faster read/write, this operation doesn't check stream bound. 
            A client must carefully not read/write above the size of this datastream.
            </remarks>
            <typeparam name = "T">The type of the value to be read from the stream.</typeparam>
            <returns>The value that was read.</returns>
            <exception cref = "T:System.NotSupportedException">This stream does not support reading.</exception>
        </member>
        <member name="M:SharpDX.DataStream.ReadFloat">
            <summary>
            Reads a float.
            </summary>
            <remarks>
            In order to provide faster read/write, this operation doesn't check stream bound. 
            A client must carefully not read/write above the size of this datastream.
            </remarks>
            <returns>a float from the stream</returns>
        </member>
        <member name="M:SharpDX.DataStream.ReadInt">
            <summary>
            Reads a int.
            </summary>
            <remarks>
            In order to provide faster read/write, this operation doesn't check stream bound. 
            A client must carefully not read/write above the size of this datastream.
            </remarks>
            <returns>an int from the stream</returns>
        </member>
        <member name="M:SharpDX.DataStream.ReadShort">
            <summary>
            Reads a short.
            </summary>
            <remarks>
            In order to provide faster read/write, this operation doesn't check stream bound. 
            A client must carefully not read/write above the size of this datastream.
            </remarks>
            <returns>an short from the stream</returns>
        </member>
        <member name="M:SharpDX.DataStream.ReadBoolean">
            <summary>
            Reads a bool.
            </summary>
            <remarks>
            In order to provide faster read/write, this operation doesn't check stream bound. 
            A client must carefully not read/write above the size of this datastream.
            </remarks>
            <returns>an bool from the stream</returns>
        </member>
        <member name="M:SharpDX.DataStream.ReadVector2">
            <summary>
            Reads a Vector2.
            </summary>
            <remarks>
            In order to provide faster read/write, this operation doesn't check stream bound. 
            A client must carefully not read/write above the size of this datastream.
            </remarks>
            <returns>an Vector2 from the stream</returns>
        </member>
        <member name="M:SharpDX.DataStream.ReadVector3">
            <summary>
            Reads a Vector3.
            </summary>
            <remarks>
            In order to provide faster read/write, this operation doesn't check stream bound. 
            A client must carefully not read/write above the size of this datastream.
            </remarks>
            <returns>an Vector3 from the stream</returns>
        </member>
        <member name="M:SharpDX.DataStream.ReadVector4">
            <summary>
            Reads a Vector4.
            </summary>
            <remarks>
            In order to provide faster read/write, this operation doesn't check stream bound. 
            A client must carefully not read/write above the size of this datastream.
            </remarks>
            <returns>an Vector4 from the stream</returns>
        </member>
        <member name="M:SharpDX.DataStream.ReadColor3">
            <summary>
            Reads a Color3.
            </summary>
            <remarks>
            In order to provide faster read/write, this operation doesn't check stream bound. 
            A client must carefully not read/write above the size of this datastream.
            </remarks>
            <returns>an Color3 from the stream</returns>
        </member>
        <member name="M:SharpDX.DataStream.ReadColor4">
            <summary>
            Reads a Color4.
            </summary>
            <remarks>
            In order to provide faster read/write, this operation doesn't check stream bound. 
            A client must carefully not read/write above the size of this datastream.
            </remarks>
            <returns>an Color4 from the stream</returns>
        </member>
        <member name="M:SharpDX.DataStream.ReadHalf">
            <summary>
            Reads a Half.
            </summary>
            <remarks>
            In order to provide faster read/write, this operation doesn't check stream bound. 
            A client must carefully not read/write above the size of this datastream.
            </remarks>
            <returns>an Half from the stream</returns>
        </member>
        <member name="M:SharpDX.DataStream.ReadHalf2">
            <summary>
            Reads a Half2.
            </summary>
            <remarks>
            In order to provide faster read/write, this operation doesn't check stream bound. 
            A client must carefully not read/write above the size of this datastream.
            </remarks>
            <returns>an Half2 from the stream</returns>
        </member>
        <member name="M:SharpDX.DataStream.ReadHalf3">
            <summary>
            Reads a Half3.
            </summary>
            <remarks>
            In order to provide faster read/write, this operation doesn't check stream bound. 
            A client must carefully not read/write above the size of this datastream.
            </remarks>
            <returns>an Half3 from the stream</returns>
        </member>
        <member name="M:SharpDX.DataStream.ReadHalf4">
            <summary>
            Reads a Half4.
            </summary>
            <remarks>
            In order to provide faster read/write, this operation doesn't check stream bound. 
            A client must carefully not read/write above the size of this datastream.
            </remarks>
            <returns>an Half4 from the stream</returns>
        </member>
        <member name="M:SharpDX.DataStream.ReadMatrix">
            <summary>
            Reads a Matrix.
            </summary>
            <remarks>
            In order to provide faster read/write, this operation doesn't check stream bound. 
            A client must carefully not read/write above the size of this datastream.
            </remarks>
            <returns>a Matrix from the stream</returns>
        </member>
        <member name="M:SharpDX.DataStream.ReadQuaternion">
            <summary>
            Reads a Quaternion.
            </summary>
            <remarks>
            In order to provide faster read/write, this operation doesn't check stream bound. 
            A client must carefully not read/write above the size of this datastream.
            </remarks>
            <returns>a Quaternion from the stream</returns>
        </member>
        <member name="M:SharpDX.DataStream.Read(System.Byte[],System.Int32,System.Int32)">
            <summary>
              Reads a sequence of bytes from the current stream and advances the position
              within the stream by the number of bytes read.
            </summary>
            <remarks>
            In order to provide faster read/write, this operation doesn't check stream bound. 
            A client must carefully not read/write above the size of this datastream.
            </remarks>
            <param name = "buffer">An array of values to be read from the stream.</param>
            <param name = "offset">The zero-based byte offset in buffer at which to begin storing
              the data read from the current stream.</param>
            <param name = "count">The maximum number of bytes to be read from the current stream.</param>
            <returns>The number of bytes read from the stream.</returns>
            <exception cref = "T:System.NotSupportedException">This stream does not support reading.</exception>
        </member>
        <member name="M:SharpDX.DataStream.ReadRange``1(System.Int32)">
            <summary>
              Reads an array of values from the current stream, and advances the current position
              within this stream by the number of bytes written.
            </summary>
            <remarks>
            In order to provide faster read/write, this operation doesn't check stream bound. 
            A client must carefully not read/write above the size of this datastream.
            </remarks>
            <typeparam name = "T">The type of the values to be read from the stream.</typeparam>
            <returns>An array of values that was read from the current stream.</returns>
        </member>
        <member name="M:SharpDX.DataStream.ReadRange``1(``0[],System.Int32,System.Int32)">
            <summary>
              Reads a sequence of elements from the current stream into a target buffer and
              advances the position within the stream by the number of bytes read.
            </summary>
            <remarks>
            In order to provide faster read/write, this operation doesn't check stream bound. 
            A client must carefully not read/write above the size of this datastream.
            </remarks>
            <param name = "buffer">An array of values to be read from the stream.</param>
            <param name = "offset">The zero-based byte offset in buffer at which to begin storing
              the data read from the current stream.</param>
            <param name = "count">The number of values to be read from the current stream.</param>
            <returns>The number of bytes read from the stream.</returns>
            <exception cref = "T:System.NotSupportedException">This stream does not support reading.</exception>
        </member>
        <member name="M:SharpDX.DataStream.Seek(System.Int64,System.IO.SeekOrigin)">
            <summary>
              Sets the position within the current stream.
            </summary>
            <exception cref = "T:System.InvalidOperationException">Attempted to seek outside of the bounds of the stream.</exception>
        </member>
        <member name="M:SharpDX.DataStream.SetLength(System.Int64)">
            <summary>
              Not supported.
            </summary>
            <param name = "value">Always ignored.</param>
            <exception cref = "T:System.NotSupportedException">Always thrown.</exception>
        </member>
        <member name="M:SharpDX.DataStream.Write``1(``0)">
            <summary>
              Writes a single value to the stream, and advances the current position
              within this stream by the number of bytes written.
            </summary>
            <remarks>
            In order to provide faster read/write, this operation doesn't check stream bound. 
            A client must carefully not read/write above the size of this datastream.
            </remarks>
            <typeparam name = "T">The type of the value to be written to the stream.</typeparam>
            <param name = "value">The value to write to the stream.</param>
            <exception cref = "T:System.NotSupportedException">The stream does not support writing.</exception>
        </member>
        <member name="M:SharpDX.DataStream.Write(System.Single)">
            <summary>
            Writes the specified value.
            </summary>
            <remarks>
            In order to provide faster read/write, this operation doesn't check stream bound. 
            A client must carefully not read/write above the size of this datastream.
            </remarks>
            <param name="value">The value.</param>
        </member>
        <member name="M:SharpDX.DataStream.Write(System.Int32)">
            <summary>
            Writes the specified value.
            </summary>
            <remarks>
            In order to provide faster read/write, this operation doesn't check stream bound. 
            A client must carefully not read/write above the size of this datastream.
            </remarks>
            <param name="value">The value.</param>
        </member>
        <member name="M:SharpDX.DataStream.Write(System.Int16)">
            <summary>
            Writes the specified value.
            </summary>
            <remarks>
            In order to provide faster read/write, this operation doesn't check stream bound. 
            A client must carefully not read/write above the size of this datastream.
            </remarks>
            <param name="value">The value.</param>
        </member>
        <member name="M:SharpDX.DataStream.Write(System.Boolean)">
            <summary>
            Writes the specified value.
            </summary>
            <remarks>
            In order to provide faster read/write, this operation doesn't check stream bound. 
            A client must carefully not read/write above the size of this datastream.
            </remarks>
            <param name="value">The value.</param>
        </member>
        <member name="M:SharpDX.DataStream.Write(SharpDX.Vector2)">
            <summary>
            Writes the specified value.
            </summary>
            <remarks>
            In order to provide faster read/write, this operation doesn't check stream bound. 
            A client must carefully not read/write above the size of this datastream.
            </remarks>
            <param name="value">The value.</param>
        </member>
        <member name="M:SharpDX.DataStream.Write(SharpDX.Vector3)">
            <summary>
            Writes the specified value.
            </summary>
            <remarks>
            In order to provide faster read/write, this operation doesn't check stream bound. 
            A client must carefully not read/write above the size of this datastream.
            </remarks>
            <param name="value">The value.</param>
        </member>
        <member name="M:SharpDX.DataStream.Write(SharpDX.Vector4)">
            <summary>
            Writes the specified value.
            </summary>
            <remarks>
            In order to provide faster read/write, this operation doesn't check stream bound. 
            A client must carefully not read/write above the size of this datastream.
            </remarks>
            <param name="value">The value.</param>
        </member>
        <member name="M:SharpDX.DataStream.Write(SharpDX.Color3)">
            <summary>
            Writes the specified value.
            </summary>
            <remarks>
            In order to provide faster read/write, this operation doesn't check stream bound. 
            A client must carefully not read/write above the size of this datastream.
            </remarks>
            <param name="value">The value.</param>
        </member>
        <member name="M:SharpDX.DataStream.Write(SharpDX.Color4)">
            <summary>
            Writes the specified value.
            </summary>
            <remarks>
            In order to provide faster read/write, this operation doesn't check stream bound. 
            A client must carefully not read/write above the size of this datastream.
            </remarks>
            <param name="value">The value.</param>
        </member>
        <member name="M:SharpDX.DataStream.Write(SharpDX.Half)">
            <summary>
            Writes the specified value.
            </summary>
            <remarks>
            In order to provide faster read/write, this operation doesn't check stream bound. 
            A client must carefully not read/write above the size of this datastream.
            </remarks>
            <param name="value">The value.</param>
        </member>
        <member name="M:SharpDX.DataStream.Write(SharpDX.Half2)">
            <summary>
            Writes the specified value.
            </summary>
            <remarks>
            In order to provide faster read/write, this operation doesn't check stream bound. 
            A client must carefully not read/write above the size of this datastream.
            </remarks>
            <param name="value">The value.</param>
        </member>
        <member name="M:SharpDX.DataStream.Write(SharpDX.Half3)">
            <summary>
            Writes the specified value.
            </summary>
            <remarks>
            In order to provide faster read/write, this operation doesn't check stream bound. 
            A client must carefully not read/write above the size of this datastream.
            </remarks>
            <param name="value">The value.</param>
        </member>
        <member name="M:SharpDX.DataStream.Write(SharpDX.Half4)">
            <summary>
            Writes the specified value.
            </summary>
            <remarks>
            In order to provide faster read/write, this operation doesn't check stream bound. 
            A client must carefully not read/write above the size of this datastream.
            </remarks>
            <param name="value">The value.</param>
        </member>
        <member name="M:SharpDX.DataStream.Write(SharpDX.Matrix)">
            <summary>
            Writes the specified value.
            </summary>
            <remarks>
            In order to provide faster read/write, this operation doesn't check stream bound. 
            A client must carefully not read/write above the size of this datastream.
            </remarks>
            <param name="value">The value.</param>
        </member>
        <member name="M:SharpDX.DataStream.Write(SharpDX.Quaternion)">
            <summary>
            Writes the specified value.
            </summary>
            <remarks>
            In order to provide faster read/write, this operation doesn't check stream bound. 
            A client must carefully not read/write above the size of this datastream.
            </remarks>
            <param name="value">The value.</param>
        </member>
        <member name="M:SharpDX.DataStream.Write(System.Byte[],System.Int32,System.Int32)">
            <summary>
              Writes a sequence of bytes to the current stream and advances the current
              position within this stream by the number of bytes written.
            </summary>
            <remarks>
            In order to provide faster read/write, this operation doesn't check stream bound. 
            A client must carefully not read/write above the size of this datastream.
            </remarks>
            <param name = "buffer">An array of bytes. This method copies count bytes from buffer to the current stream.</param>
            <param name = "offset">The zero-based byte offset in buffer at which to begin copying bytes to the current stream.</param>
            <param name = "count">The number of bytes to be written to the current stream.</param>
            <exception cref = "T:System.NotSupportedException">This stream does not support writing.</exception>
        </member>
        <member name="M:SharpDX.DataStream.WriteRange``1(``0[])">
            <summary>
              Writes an array of values to the current stream, and advances the current position
              within this stream by the number of bytes written.
            </summary>
            <remarks>
            In order to provide faster read/write, this operation doesn't check stream bound. 
            A client must carefully not read/write above the size of this datastream.
            </remarks>
            <param name = "data">An array of values to be written to the current stream.</param>
            <exception cref = "T:System.NotSupportedException">This stream does not support writing.</exception>
        </member>
        <member name="M:SharpDX.DataStream.WriteRange(System.IntPtr,System.Int64)">
            <summary>
              Writes a range of bytes to the current stream, and advances the current position
              within this stream by the number of bytes written.
            </summary>
            <remarks>
            In order to provide faster read/write, this operation doesn't check stream bound. 
            A client must carefully not read/write above the size of this datastream.
            </remarks>
            <param name = "source">A pointer to the location to start copying from.</param>
            <param name = "count">The number of bytes to copy from source to the current stream.</param>
            <exception cref = "T:System.NotSupportedException">This stream does not support writing.</exception>
        </member>
        <member name="M:SharpDX.DataStream.WriteRange``1(``0[],System.Int32,System.Int32)">
            <summary>
              Writes an array of values to the current stream, and advances the current position
              within this stream by the number of bytes written.
            </summary>
            <remarks>
            In order to provide faster read/write, this operation doesn't check stream bound. 
            A client must carefully not read/write above the size of this datastream.
            </remarks>
            <typeparam name = "T">The type of the values to be written to the stream.</typeparam>
            <param name = "data">An array of values to be written to the stream.</param>
            <param name = "offset">The zero-based offset in data at which to begin copying values to the current stream.</param>
            <param name = "count">The number of values to be written to the current stream. If this is zero,
              all of the contents <paramref name = "data" /> will be written.</param>
            <exception cref = "T:System.NotSupportedException">This stream does not support writing.</exception>
        </member>
        <member name="P:SharpDX.DataStream.CanRead">
            <summary>
              Gets a value indicating whether the current stream supports reading.
            </summary>
            <value>
              <c>true</c> if the stream supports reading; otherwise, <c>false</c>.</value>
        </member>
        <member name="P:SharpDX.DataStream.CanSeek">
            <summary>
              Gets a value indicating whether the current stream supports seeking.
            </summary>
            <value>Always <c>true</c>.</value>
        </member>
        <member name="P:SharpDX.DataStream.CanWrite">
            <summary>
              Gets a value indicating whether the current stream supports writing.
            </summary>
            <value>
              <c>true</c> if the stream supports writing; otherwise, <c>false</c>.</value>
        </member>
        <member name="P:SharpDX.DataStream.DataPointer">
            <summary>
              Gets the internal pointer to the current stream's backing store.
            </summary>
            <value>An IntPtr to the buffer being used as a backing store.</value>
        </member>
        <member name="P:SharpDX.DataStream.Length">
            <summary>
              Gets the length in bytes of the stream.
            </summary>
            <value>A long value representing the length of the stream in bytes.</value>
        </member>
        <member name="P:SharpDX.DataStream.Position">
            <summary>
              Gets or sets the position within the current stream.
            </summary>
            <value>The current position within the stream.</value>
            <seealso cref = "T:System.IO.Stream">Stream Class</seealso>
        </member>
        <member name="P:SharpDX.DataStream.PositionPointer">
            <summary>
            Gets the position pointer.
            </summary>
            <value>The position pointer.</value>
        </member>
        <member name="P:SharpDX.DataStream.RemainingLength">
            <summary>
            Gets the length of the remaining.
            </summary>
            <value>The length of the remaining.</value>
        </member>
        <member name="T:SharpDX.DataBuffer">
            <summary>
            Provides methods to perform fast read/write random access data on a buffer located in an unmanaged memory.
            </summary>
            <remarks>
            This class doesn't validate the position read/write from. It is the responsability of the client of this class
            to verify that access is done within the size of the buffer.
            </remarks>
        </member>
        <member name="M:SharpDX.DataBuffer.Create``1(``0[],System.Boolean,System.Boolean)">
            <summary>
            Creates the specified user buffer.
            </summary>
            <typeparam name="T"></typeparam>
            <param name="userBuffer">The user buffer.</param>
            <param name="canRead">if set to <c>true</c> [can read].</param>
            <param name="canWrite">if set to <c>true</c> [can write].</param>
            <returns></returns>
        </member>
        <member name="M:SharpDX.DataBuffer.#ctor(System.Int32)">
            <summary>
              Initializes a new instance of the <see cref="T:SharpDX.DataBuffer"/> class, and allocates a new buffer to use as a backing store.
            </summary>
            <param name="sizeInBytes">The size of the buffer to be allocated, in bytes.</param>
            <exception cref="T:System.ArgumentOutOfRangeException">
              <paramref name="sizeInBytes"/> is less than 1.</exception>
        </member>
        <member name="M:SharpDX.DataBuffer.#ctor(System.IntPtr,System.Int64)">
            <summary>
              Initializes a new instance of the <see cref="T:SharpDX.DataBuffer"/> class, using an unmanaged buffer as a backing store.
            </summary>
            <param name="userBuffer">A pointer to the buffer to be used as a backing store.</param>
            <param name="sizeInBytes">The size of the buffer provided, in bytes.</param>
        </member>
        <member name="M:SharpDX.DataBuffer.Dispose(System.Boolean)">
            <summary>
            Releases unmanaged and - optionally - managed resources
            </summary>
            <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
        </member>
        <member name="M:SharpDX.DataBuffer.Get``1(System.Int32)">
            <summary>
              Gets a single value from the current buffer at the specified position.
            </summary>
            <param name="positionInBytes">Relative position in bytes from the beginning of the buffer to get the data from.</param>
            <typeparam name = "T">The type of the value to be read from the buffer.</typeparam>
            <returns>The value that was read.</returns>
        </member>
        <member name="M:SharpDX.DataBuffer.GetFloat(System.Int32)">
            <summary>
            Gets a float.
            </summary>
            <param name="positionInBytes">Relative position in bytes from the beginning of the buffer to get the data from.</param>
            <returns>a float from the buffer</returns>
        </member>
        <member name="M:SharpDX.DataBuffer.GetInt(System.Int32)">
            <summary>
            Gets a int.
            </summary>
            <param name="positionInBytes">Relative position in bytes from the beginning of the buffer to get the data from.</param>
            <returns>an int from the buffer</returns>
        </member>
        <member name="M:SharpDX.DataBuffer.GetShort(System.Int32)">
            <summary>
            Gets a short.
            </summary>
            <param name="positionInBytes">Relative position in bytes from the beginning of the buffer to get the data from.</param>
            <returns>an short from the buffer</returns>
        </member>
        <member name="M:SharpDX.DataBuffer.GetBoolean(System.Int32)">
            <summary>
            Gets a bool.
            </summary>
            <param name="positionInBytes">Relative position in bytes from the beginning of the buffer to get the data from.</param>
            <returns>an bool from the buffer</returns>
        </member>
        <member name="M:SharpDX.DataBuffer.GetVector2(System.Int32)">
            <summary>
            Gets a Vector2.
            </summary>
            <param name="positionInBytes">Relative position in bytes from the beginning of the buffer to get the data from.</param>
            <returns>an Vector2 from the buffer</returns>
        </member>
        <member name="M:SharpDX.DataBuffer.GetVector3(System.Int32)">
            <summary>
            Gets a Vector3.
            </summary>
            <param name="positionInBytes">Relative position in bytes from the beginning of the buffer to get the data from.</param>
            <returns>an Vector3 from the buffer</returns>
        </member>
        <member name="M:SharpDX.DataBuffer.GetVector4(System.Int32)">
            <summary>
            Gets a Vector4.
            </summary>
            <param name="positionInBytes">Relative position in bytes from the beginning of the buffer to get the data from.</param>
            <returns>an Vector4 from the buffer</returns>
        </member>
        <member name="M:SharpDX.DataBuffer.GetColor3(System.Int32)">
            <summary>
            Gets a Color3.
            </summary>
            <param name="positionInBytes">Relative position in bytes from the beginning of the buffer to get the data from.</param>
            <returns>an Color3 from the buffer</returns>
        </member>
        <member name="M:SharpDX.DataBuffer.GetColor4(System.Int32)">
            <summary>
            Gets a Color4.
            </summary>
            <param name="positionInBytes">Relative position in bytes from the beginning of the buffer to get the data from.</param>
            <returns>an Color4 from the buffer</returns>
        </member>
        <member name="M:SharpDX.DataBuffer.GetHalf(System.Int32)">
            <summary>
            Gets a Half.
            </summary>
            <param name="positionInBytes">Relative position in bytes from the beginning of the buffer to get the data from.</param>
            <returns>an Half from the buffer</returns>
        </member>
        <member name="M:SharpDX.DataBuffer.GetHalf2(System.Int32)">
            <summary>
            Gets a Half2.
            </summary>
            <param name="positionInBytes">Relative position in bytes from the beginning of the buffer to get the data from.</param>
            <returns>an Half2 from the buffer</returns>
        </member>
        <member name="M:SharpDX.DataBuffer.GetHalf3(System.Int32)">
            <summary>
            Gets a Half3.
            </summary>
            <param name="positionInBytes">Relative position in bytes from the beginning of the buffer to get the data from.</param>
            <returns>an Half3 from the buffer</returns>
        </member>
        <member name="M:SharpDX.DataBuffer.GetHalf4(System.Int32)">
            <summary>
            Gets a Half4.
            </summary>
            <param name="positionInBytes">Relative position in bytes from the beginning of the buffer to get the data from.</param>
            <returns>an Half4 from the buffer</returns>
        </member>
        <member name="M:SharpDX.DataBuffer.GetMatrix(System.Int32)">
            <summary>
            Gets a Matrix.
            </summary>
            <param name="positionInBytes">Relative position in bytes from the beginning of the buffer to get the data from.</param>
            <returns>a Matrix from the buffer</returns>
        </member>
        <member name="M:SharpDX.DataBuffer.GetQuaternion(System.Int32)">
            <summary>
            Gets a Quaternion.
            </summary>
            <param name="positionInBytes">Relative position in bytes from the beginning of the buffer to get the data from.</param>
            <returns>a Quaternion from the buffer</returns>
        </member>
        <member name="M:SharpDX.DataBuffer.GetRange``1(System.Int32,System.Int32)">
            <summary>
              Gets an array of values from a position in the buffer.
            </summary>
            <param name="positionInBytes">Relative position in bytes from the beginning of the buffer to get the data from.</param>
            <param name="count">number of T instance to get from the positionInBytes</param>
            <typeparam name = "T">The type of the values to be read from the buffer.</typeparam>
            <returns>An array of values that was read from the current buffer.</returns>
        </member>
        <member name="M:SharpDX.DataBuffer.GetRange``1(System.Int32,``0[],System.Int32,System.Int32)">
            <summary>
              Gets a sequence of elements from a position in the buffer into a target buffer.
            </summary>
            <param name="positionInBytes">Relative position in bytes from the beginning of the buffer to get the data from.</param>
            <param name = "buffer">An array of values to be read from the buffer.</param>
            <param name = "offset">The zero-based byte offset in buffer at which to begin storing
              the data read from the current buffer.</param>
            <param name = "count">The number of values to be read from the current buffer.</param>
        </member>
        <member name="M:SharpDX.DataBuffer.Set``1(System.Int32,``0)">
            <summary>
              Sets a single value to the buffer at a specified position.
            </summary>
            <typeparam name = "T">The type of the value to be written to the buffer.</typeparam>
            <param name="positionInBytes">Relative position in bytes from the beginning of the buffer to set the data to.</param>
            <param name = "value">The value to write to the buffer.</param>
        </member>
        <member name="M:SharpDX.DataBuffer.Set(System.Int32,System.Single)">
            <summary>
            Sets the specified value.
            </summary>
            <param name="positionInBytes">Relative position in bytes from the beginning of the buffer to set the data to.</param>
            <param name="value">The value.</param>
        </member>
        <member name="M:SharpDX.DataBuffer.Set(System.Int32,System.Int32)">
            <summary>
            Sets the specified value.
            </summary>
            <param name="positionInBytes">Relative position in bytes from the beginning of the buffer to set the data to.</param>
            <param name="value">The value.</param>
        </member>
        <member name="M:SharpDX.DataBuffer.Set(System.Int32,System.Int16)">
            <summary>
            Sets the specified value.
            </summary>
            <param name="positionInBytes">Relative position in bytes from the beginning of the buffer to set the data to.</param>
            <param name="value">The value.</param>
        </member>
        <member name="M:SharpDX.DataBuffer.Set(System.Int32,System.Boolean)">
            <summary>
            Sets the specified value.
            </summary>
            <param name="positionInBytes">Relative position in bytes from the beginning of the buffer to set the data to.</param>
            <param name="value">The value.</param>
        </member>
        <member name="M:SharpDX.DataBuffer.Set(System.Int32,SharpDX.Vector2)">
            <summary>
            Sets the specified value.
            </summary>
            <param name="positionInBytes">Relative position in bytes from the beginning of the buffer to set the data to.</param>
            <param name="value">The value.</param>
        </member>
        <member name="M:SharpDX.DataBuffer.Set(System.Int32,SharpDX.Vector3)">
            <summary>
            Sets the specified value.
            </summary>
            <param name="positionInBytes">Relative position in bytes from the beginning of the buffer to set the data to.</param>
            <param name="value">The value.</param>
        </member>
        <member name="M:SharpDX.DataBuffer.Set(System.Int32,SharpDX.Vector4)">
            <summary>
            Sets the specified value.
            </summary>
            <param name="positionInBytes">Relative position in bytes from the beginning of the buffer to set the data to.</param>
            <param name="value">The value.</param>
        </member>
        <member name="M:SharpDX.DataBuffer.Set(System.Int32,SharpDX.Color3)">
            <summary>
            Sets the specified value.
            </summary>
            <param name="positionInBytes">Relative position in bytes from the beginning of the buffer to set the data to.</param>
            <param name="value">The value.</param>
        </member>
        <member name="M:SharpDX.DataBuffer.Set(System.Int32,SharpDX.Color4)">
            <summary>
            Sets the specified value.
            </summary>
            <param name="positionInBytes">Relative position in bytes from the beginning of the buffer to set the data to.</param>
            <param name="value">The value.</param>
        </member>
        <member name="M:SharpDX.DataBuffer.Set(System.Int32,SharpDX.Half)">
            <summary>
            Sets the specified value.
            </summary>
            <param name="positionInBytes">Relative position in bytes from the beginning of the buffer to set the data to.</param>
            <param name="value">The value.</param>
        </member>
        <member name="M:SharpDX.DataBuffer.Set(System.Int32,SharpDX.Half2)">
            <summary>
            Sets the specified value.
            </summary>
            <param name="positionInBytes">Relative position in bytes from the beginning of the buffer to set the data to.</param>
            <param name="value">The value.</param>
        </member>
        <member name="M:SharpDX.DataBuffer.Set(System.Int32,SharpDX.Half3)">
            <summary>
            Sets the specified value.
            </summary>
            <param name="positionInBytes">Relative position in bytes from the beginning of the buffer to set the data to.</param>
            <param name="value">The value.</param>
        </member>
        <member name="M:SharpDX.DataBuffer.Set(System.Int32,SharpDX.Half4)">
            <summary>
            Sets the specified value.
            </summary>
            <param name="positionInBytes">Relative position in bytes from the beginning of the buffer to set the data to.</param>
            <param name="value">The value.</param>
        </member>
        <member name="M:SharpDX.DataBuffer.Set(System.Int32,SharpDX.Matrix)">
            <summary>
            Sets the specified value.
            </summary>
            <param name="positionInBytes">Relative position in bytes from the beginning of the buffer to set the data to.</param>
            <param name="value">The value.</param>
        </member>
        <member name="M:SharpDX.DataBuffer.Set(System.Int32,SharpDX.Quaternion)">
            <summary>
            Sets the specified value.
            </summary>
            <param name="positionInBytes">Relative position in bytes from the beginning of the buffer to set the data to.</param>
            <param name="value">The value.</param>
        </member>
        <member name="M:SharpDX.DataBuffer.Set``1(System.Int32,``0[])">
            <summary>
              Sets an array of values to a specified position into the buffer.
            </summary>
            <param name="positionInBytes">Relative position in bytes from the beginning of the buffer to set the data to.</param>
            <param name = "data">An array of values to be written to the current buffer.</param>
        </member>
        <member name="M:SharpDX.DataBuffer.Set(System.Int32,System.IntPtr,System.Int64)">
            <summary>
              Sets a range of data to a specified position into the buffer.
            </summary>
            <param name="positionInBytes">Relative position in bytes from the beginning of the buffer to set the data to.</param>
            <param name = "source">A pointer to the location to start copying from.</param>
            <param name = "count">The number of bytes to copy from source to the current buffer.</param>
        </member>
        <member name="M:SharpDX.DataBuffer.Set``1(System.Int32,``0[],System.Int32,System.Int32)">
            <summary>
              Sets an array of values to a specified position into the buffer.
            </summary>
            <typeparam name = "T">The type of the values to be written to the buffer.</typeparam>
            <param name="positionInBytes">Relative position in bytes from the beginning of the buffer to set the data to.</param>
            <param name = "data">An array of values to be written to the buffer.</param>
            <param name = "offset">The zero-based offset in data at which to begin copying values to the current buffer.</param>
            <param name = "count">The number of values to be written to the current buffer. If this is zero,
              all of the contents <paramref name = "data" /> will be written.</param>
        </member>
        <member name="P:SharpDX.DataBuffer.DataPointer">
            <summary>
              Gets a pointer to the buffer used as a backing store..
            </summary>
            <value>An IntPtr to the buffer being used as a backing store.</value>
        </member>
        <member name="P:SharpDX.DataBuffer.Size">
            <summary>
              Gets the length in bytes of the buffer.
            </summary>
            <value>A long value representing the length of the buffer in bytes.</value>
        </member>
        <member name="T:SharpDX.Diagnostics.ObjectReference">
            <summary>
            Contains information about a tracked COM object.
            </summary>
        </member>
        <member name="M:SharpDX.Diagnostics.ObjectReference.#ctor(System.DateTime,SharpDX.ComObject)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Diagnostics.ObjectReference"/> class.
            </summary>
            <param name="creationTime">The creation time.</param>
            <param name="comObject">The com object to track.</param>
            <param name="stackTrace">The stack trace.</param>
        </member>
        <member name="M:SharpDX.Diagnostics.ObjectReference.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="P:SharpDX.Diagnostics.ObjectReference.CreationTime">
            <summary>
            Gets the time the object was created.
            </summary>
            <value>The creation time.</value>
        </member>
        <member name="P:SharpDX.Diagnostics.ObjectReference.Object">
            <summary>
            Gets a weak reference to the tracked object.
            </summary>
            <value>The weak reference to the tracked object.</value>
        </member>
        <member name="P:SharpDX.Diagnostics.ObjectReference.IsAlive">
            <summary>
            Gets a value indicating whether the tracked object is alive.
            </summary>
            <value><c>true</c> if tracked object is alive; otherwise, <c>false</c>.</value>
        </member>
        <member name="T:SharpDX.Diagnostics.ObjectTracker">
            <summary>
            Track all allocated objects.
            </summary>
        </member>
        <member name="M:SharpDX.Diagnostics.ObjectTracker.Track(SharpDX.ComObject)">
            <summary>
            Tracks the specified COM object.
            </summary>
            <param name="comObject">The COM object.</param>
        </member>
        <member name="M:SharpDX.Diagnostics.ObjectTracker.Find(System.IntPtr)">
            <summary>
            Finds a list of object reference from a specified COM object pointer.
            </summary>
            <param name="comObjectPtr">The COM object pointer.</param>
            <returns>A list of object reference</returns>
        </member>
        <member name="M:SharpDX.Diagnostics.ObjectTracker.Find(SharpDX.ComObject)">
            <summary>
            Finds the object reference for a specific COM object.
            </summary>
            <param name="comObject">The COM object.</param>
            <returns>An object reference</returns>
        </member>
        <member name="M:SharpDX.Diagnostics.ObjectTracker.UnTrack(SharpDX.ComObject)">
            <summary>
            Untracks the specified COM object.
            </summary>
            <param name="comObject">The COM object.</param>
        </member>
        <member name="M:SharpDX.Diagnostics.ObjectTracker.FindActiveObjects">
            <summary>
            Reports all COM object that are active and not yet disposed.
            </summary>
        </member>
        <member name="M:SharpDX.Diagnostics.ObjectTracker.ReportActiveObjects">
            <summary>
            Reports all COM object that are active and not yet disposed.
            </summary>
        </member>
        <member name="T:SharpDX.AngleType">
            <summary>
            Describes the type of angle.
            </summary>
        </member>
        <member name="F:SharpDX.AngleType.Revolution">
            <summary>
            Specifies an angle measurement in revolutions.
            </summary>
        </member>
        <member name="F:SharpDX.AngleType.Degree">
            <summary>
            Specifies an angle measurement in degrees.
            </summary>
        </member>
        <member name="F:SharpDX.AngleType.Radian">
            <summary>
            Specifies an angle measurement in radians.
            </summary>
        </member>
        <member name="F:SharpDX.AngleType.Gradian">
            <summary>
            Specifies an angle measurement in gradians.
            </summary>
        </member>
        <member name="T:SharpDX.ContainmentType">
            <summary>
            Describes how one bounding volume contains another.
            </summary>
        </member>
        <member name="F:SharpDX.ContainmentType.Disjoint">
            <summary>
            The two bounding volumes don't intersect at all.
            </summary>
        </member>
        <member name="F:SharpDX.ContainmentType.Contains">
            <summary>
            One bounding volume completely contains another.
            </summary>
        </member>
        <member name="F:SharpDX.ContainmentType.Intersects">
            <summary>
            The two bounding volumes overlap.
            </summary>
        </member>
        <member name="T:SharpDX.PlaneIntersectionType">
            <summary>
            Describes the result of an intersection with a plane in three dimensions.
            </summary>
        </member>
        <member name="F:SharpDX.PlaneIntersectionType.Back">
            <summary>
            The object is behind the plane.
            </summary>
        </member>
        <member name="F:SharpDX.PlaneIntersectionType.Front">
            <summary>
            The object is in front of the plane.
            </summary>
        </member>
        <member name="F:SharpDX.PlaneIntersectionType.Intersecting">
            <summary>
            The object is intersecting the plane.
            </summary>
        </member>
        <member name="T:SharpDX.FunctionCallback">
            <summary>
            FunctionCallback
            </summary>
        </member>
        <member name="M:SharpDX.FunctionCallback.ToString">
            <summary>
              Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <returns>
              A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.FunctionCallback.ToString(System.String)">
            <summary>
              Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <param name="format">The format.</param>
            <returns>
              A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.FunctionCallback.GetHashCode">
            <summary>
              Returns a hash code for this instance.
            </summary>
            <returns>
              A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. 
            </returns>
        </member>
        <member name="M:SharpDX.FunctionCallback.Equals(SharpDX.FunctionCallback)">
            <summary>
              Determines whether the specified <see cref="T:SharpDX.FunctionCallback"/> is equal to this instance.
            </summary>
            <param name="other">The <see cref="T:SharpDX.FunctionCallback"/> to compare with this instance.</param>
            <returns>
              <c>true</c> if the specified <see cref="T:SharpDX.FunctionCallback"/> is equal to this instance; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="M:SharpDX.FunctionCallback.Equals(System.Object)">
            <summary>
              Determines whether the specified <see cref="T:System.Object"/> is equal to this instance.
            </summary>
            <param name="value">The <see cref="T:System.Object"/> to compare with this instance.</param>
            <returns>
              <c>true</c> if the specified <see cref="T:System.Object"/> is equal to this instance; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="T:SharpDX.Direct3D.DriverType">
            <summary>	
            <p>Driver type options.</p>	
            </summary>	
            <remarks>	
            <p>The driver type is required when calling <strong><see cref="!:SharpDX.Direct3D11.D3D11.CreateDevice"/></strong> or <strong>D3D11CreateDeviceAndSwapChain</strong>.</p>	
            </remarks>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_DRIVER_TYPE']/*"/>	
            <msdn-id>ff476328</msdn-id>	
            <unmanaged>D3D_DRIVER_TYPE</unmanaged>	
            <unmanaged-short>D3D_DRIVER_TYPE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.DriverType.Unknown">
            <summary>	
            <dd> <p>The driver type is unknown.</p> </dd>	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_DRIVER_TYPE_UNKNOWN']/*"/>	
            <msdn-id>ff476328</msdn-id>	
            <unmanaged>D3D_DRIVER_TYPE_UNKNOWN</unmanaged>	
            <unmanaged-short>D3D_DRIVER_TYPE_UNKNOWN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.DriverType.Hardware">
            <summary>	
            <dd> <p>A hardware driver, which implements Direct3D features in hardware. This is the primary driver that you should use in your Direct3D applications because it provides the best performance. A hardware driver uses hardware acceleration (on supported hardware) but can also use software for parts of the pipeline that are not supported in hardware. This driver type is often referred to as a hardware abstraction layer or HAL.</p> </dd>	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_DRIVER_TYPE_HARDWARE']/*"/>	
            <msdn-id>ff476328</msdn-id>	
            <unmanaged>D3D_DRIVER_TYPE_HARDWARE</unmanaged>	
            <unmanaged-short>D3D_DRIVER_TYPE_HARDWARE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.DriverType.Reference">
            <summary>	
            <dd> <p>A reference driver, which is a software implementation that supports every Direct3D feature. A reference driver is designed for accuracy rather than speed and as a result is slow but accurate. The rasterizer portion of the driver does make use of special CPU instructions whenever it can, but it is not intended for retail applications; use it only for feature testing, demonstration of functionality, debugging, or verifying bugs in other drivers. This driver is installed by the DirectX SDK. This driver may be referred to as a REF driver, a reference driver or a reference rasterizer.</p> </dd>	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_DRIVER_TYPE_REFERENCE']/*"/>	
            <msdn-id>ff476328</msdn-id>	
            <unmanaged>D3D_DRIVER_TYPE_REFERENCE</unmanaged>	
            <unmanaged-short>D3D_DRIVER_TYPE_REFERENCE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.DriverType.Null">
            <summary>	
            <dd> <p>A <c>null</c> driver, which is a reference driver without render capability. This driver is commonly used for debugging non-rendering API calls, it is not appropriate for retail applications. This driver is installed by the DirectX SDK.</p> </dd>	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_DRIVER_TYPE_NULL']/*"/>	
            <msdn-id>ff476328</msdn-id>	
            <unmanaged>D3D_DRIVER_TYPE_NULL</unmanaged>	
            <unmanaged-short>D3D_DRIVER_TYPE_NULL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.DriverType.Software">
            <summary>	
            <dd> <p>A software driver, which is a driver implemented completely in software. The software implementation is not intended for a high-performance application due to its very slow performance.</p> </dd>	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_DRIVER_TYPE_SOFTWARE']/*"/>	
            <msdn-id>ff476328</msdn-id>	
            <unmanaged>D3D_DRIVER_TYPE_SOFTWARE</unmanaged>	
            <unmanaged-short>D3D_DRIVER_TYPE_SOFTWARE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.DriverType.Warp">
            <summary>	
            <dd> <p>A WARP driver, which is a high-performance software rasterizer. The rasterizer supports <strong>feature levels</strong> 9_1 through level 10.1 with a high performance software implementation. For information about limitations creating a WARP device on certain feature levels, see Limitations Creating WARP and Reference Devices. For more information about using a WARP driver, see Windows Advanced Rasterization Platform (WARP) In-Depth Guide.</p> </dd>	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_DRIVER_TYPE_WARP']/*"/>	
            <msdn-id>ff476328</msdn-id>	
            <unmanaged>D3D_DRIVER_TYPE_WARP</unmanaged>	
            <unmanaged-short>D3D_DRIVER_TYPE_WARP</unmanaged-short>	
        </member>
        <member name="T:SharpDX.Direct3D.FeatureLevel">
            <summary>	
            <p>Describes the set of features targeted by a Direct3D device.</p>	
            </summary>	
            <remarks>	
            <p>For an overview of  the capabilities of each feature level, see Overview For Each Feature Level.</p><p>For information about limitations creating nonhardware-type devices on certain feature levels, see Limitations Creating WARP and Reference Devices.</p>	
            </remarks>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_FEATURE_LEVEL']/*"/>	
            <msdn-id>ff476329</msdn-id>	
            <unmanaged>D3D_FEATURE_LEVEL</unmanaged>	
            <unmanaged-short>D3D_FEATURE_LEVEL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.FeatureLevel.Level_9_1">
            <summary>	
            <dd> <p>Targets features supported by feature level 9.1 including shader model 2.</p> </dd>	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_FEATURE_LEVEL_9_1']/*"/>	
            <msdn-id>ff476329</msdn-id>	
            <unmanaged>D3D_FEATURE_LEVEL_9_1</unmanaged>	
            <unmanaged-short>D3D_FEATURE_LEVEL_9_1</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.FeatureLevel.Level_9_2">
            <summary>	
            <dd> <p>Targets features supported by feature level 9.2 including shader model 2.</p> </dd>	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_FEATURE_LEVEL_9_2']/*"/>	
            <msdn-id>ff476329</msdn-id>	
            <unmanaged>D3D_FEATURE_LEVEL_9_2</unmanaged>	
            <unmanaged-short>D3D_FEATURE_LEVEL_9_2</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.FeatureLevel.Level_9_3">
            <summary>	
            <dd> <p>Targets features supported by feature level 9.3 including shader model 2.0b.</p> </dd>	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_FEATURE_LEVEL_9_3']/*"/>	
            <msdn-id>ff476329</msdn-id>	
            <unmanaged>D3D_FEATURE_LEVEL_9_3</unmanaged>	
            <unmanaged-short>D3D_FEATURE_LEVEL_9_3</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.FeatureLevel.Level_10_0">
            <summary>	
            <dd> <p>Targets features supported by Direct3D 10.0 including shader model 4.</p> </dd>	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_FEATURE_LEVEL_10_0']/*"/>	
            <msdn-id>ff476329</msdn-id>	
            <unmanaged>D3D_FEATURE_LEVEL_10_0</unmanaged>	
            <unmanaged-short>D3D_FEATURE_LEVEL_10_0</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.FeatureLevel.Level_10_1">
            <summary>	
            <dd> <p>Targets features supported by Direct3D 10.1 including shader model 4.</p> </dd>	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_FEATURE_LEVEL_10_1']/*"/>	
            <msdn-id>ff476329</msdn-id>	
            <unmanaged>D3D_FEATURE_LEVEL_10_1</unmanaged>	
            <unmanaged-short>D3D_FEATURE_LEVEL_10_1</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.FeatureLevel.Level_11_0">
            <summary>	
            <dd> <p>Targets features supported by Direct3D 11.0 including shader model 5.</p> </dd>	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_FEATURE_LEVEL_11_0']/*"/>	
            <msdn-id>ff476329</msdn-id>	
            <unmanaged>D3D_FEATURE_LEVEL_11_0</unmanaged>	
            <unmanaged-short>D3D_FEATURE_LEVEL_11_0</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.FeatureLevel.Level_11_1">
            <summary>	
            <dd> <p>Targets features supported by Direct3D 11.1 including Direct3D device sharing. Device sharing enables Direct3D 10 and Direct3D 11 APIs to use one underlying rendering device. For more information about device sharing, see <strong><see cref="!:SharpDX.Direct3D11.DeviceContext1.SwapDeviceContextState"/></strong>.</p> </dd>	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_FEATURE_LEVEL_11_1']/*"/>	
            <msdn-id>ff476329</msdn-id>	
            <unmanaged>D3D_FEATURE_LEVEL_11_1</unmanaged>	
            <unmanaged-short>D3D_FEATURE_LEVEL_11_1</unmanaged-short>	
        </member>
        <member name="T:SharpDX.Direct3D.MinimumPrecision">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_MIN_PRECISION']/*"/>	
            <unmanaged>D3D_MIN_PRECISION</unmanaged>	
            <unmanaged-short>D3D_MIN_PRECISION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.MinimumPrecision.MinimumPrecisionDefault">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_MIN_PRECISION_DEFAULT']/*"/>	
            <unmanaged>D3D_MIN_PRECISION_DEFAULT</unmanaged>	
            <unmanaged-short>D3D_MIN_PRECISION_DEFAULT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.MinimumPrecision.MinimumPrecisionFloat16">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_MIN_PRECISION_FLOAT_16']/*"/>	
            <unmanaged>D3D_MIN_PRECISION_FLOAT_16</unmanaged>	
            <unmanaged-short>D3D_MIN_PRECISION_FLOAT_16</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.MinimumPrecision.MinimumPrecisionFloat28">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_MIN_PRECISION_FLOAT_2_8']/*"/>	
            <unmanaged>D3D_MIN_PRECISION_FLOAT_2_8</unmanaged>	
            <unmanaged-short>D3D_MIN_PRECISION_FLOAT_2_8</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.MinimumPrecision.MinimumPrecisionReserved">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_MIN_PRECISION_RESERVED']/*"/>	
            <unmanaged>D3D_MIN_PRECISION_RESERVED</unmanaged>	
            <unmanaged-short>D3D_MIN_PRECISION_RESERVED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.MinimumPrecision.MinimumPrecisionSInt16">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_MIN_PRECISION_SINT_16']/*"/>	
            <unmanaged>D3D_MIN_PRECISION_SINT_16</unmanaged>	
            <unmanaged-short>D3D_MIN_PRECISION_SINT_16</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.MinimumPrecision.MinimumPrecisionUInt16">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_MIN_PRECISION_UINT_16']/*"/>	
            <unmanaged>D3D_MIN_PRECISION_UINT_16</unmanaged>	
            <unmanaged-short>D3D_MIN_PRECISION_UINT_16</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.MinimumPrecision.MinimumPrecisionAny16">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_MIN_PRECISION_ANY_16']/*"/>	
            <unmanaged>D3D_MIN_PRECISION_ANY_16</unmanaged>	
            <unmanaged-short>D3D_MIN_PRECISION_ANY_16</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.MinimumPrecision.MinimumPrecisionAny10">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_MIN_PRECISION_ANY_10']/*"/>	
            <unmanaged>D3D_MIN_PRECISION_ANY_10</unmanaged>	
            <unmanaged-short>D3D_MIN_PRECISION_ANY_10</unmanaged-short>	
        </member>
        <member name="T:SharpDX.Direct3D.PrimitiveTopology">
            <summary>	
            <p>Values that indicate how the pipeline interprets vertex data that is bound to the input-assembler stage. These primitive topology values determine how the vertex data is rendered on screen.</p>	
            </summary>	
            <remarks>	
            <p>Use the  <strong><see cref="!:SharpDX.Direct3D11.InputAssemblerStage.SetPrimitiveTopology"/></strong> method and a value from <strong><see cref="T:SharpDX.Direct3D.PrimitiveTopology"/></strong> to bind a primitive topology to the input-assembler stage. Use the  <strong><see cref="!:SharpDX.Direct3D11.InputAssemblerStage.GetPrimitiveTopology"/></strong> method to retrieve the primitive topology for the input-assembler stage.</p><p>The following diagram shows the various primitive types for a geometry shader object.</p>	
            </remarks>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_PRIMITIVE_TOPOLOGY']/*"/>	
            <msdn-id>ff728726</msdn-id>	
            <unmanaged>D3D_PRIMITIVE_TOPOLOGY</unmanaged>	
            <unmanaged-short>D3D_PRIMITIVE_TOPOLOGY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.PrimitiveTopology.Undefined">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_PRIMITIVE_TOPOLOGY_UNDEFINED']/*"/>	
            <unmanaged>D3D_PRIMITIVE_TOPOLOGY_UNDEFINED</unmanaged>	
            <unmanaged-short>D3D_PRIMITIVE_TOPOLOGY_UNDEFINED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.PrimitiveTopology.PointList">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_PRIMITIVE_TOPOLOGY_POINTLIST']/*"/>	
            <unmanaged>D3D_PRIMITIVE_TOPOLOGY_POINTLIST</unmanaged>	
            <unmanaged-short>D3D_PRIMITIVE_TOPOLOGY_POINTLIST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.PrimitiveTopology.LineList">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_PRIMITIVE_TOPOLOGY_LINELIST']/*"/>	
            <unmanaged>D3D_PRIMITIVE_TOPOLOGY_LINELIST</unmanaged>	
            <unmanaged-short>D3D_PRIMITIVE_TOPOLOGY_LINELIST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.PrimitiveTopology.LineStrip">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_PRIMITIVE_TOPOLOGY_LINESTRIP']/*"/>	
            <unmanaged>D3D_PRIMITIVE_TOPOLOGY_LINESTRIP</unmanaged>	
            <unmanaged-short>D3D_PRIMITIVE_TOPOLOGY_LINESTRIP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.PrimitiveTopology.TriangleList">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_PRIMITIVE_TOPOLOGY_TRIANGLELIST']/*"/>	
            <unmanaged>D3D_PRIMITIVE_TOPOLOGY_TRIANGLELIST</unmanaged>	
            <unmanaged-short>D3D_PRIMITIVE_TOPOLOGY_TRIANGLELIST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.PrimitiveTopology.TriangleStrip">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_PRIMITIVE_TOPOLOGY_TRIANGLESTRIP']/*"/>	
            <unmanaged>D3D_PRIMITIVE_TOPOLOGY_TRIANGLESTRIP</unmanaged>	
            <unmanaged-short>D3D_PRIMITIVE_TOPOLOGY_TRIANGLESTRIP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.PrimitiveTopology.LineListWithAdjacency">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_PRIMITIVE_TOPOLOGY_LINELIST_ADJ']/*"/>	
            <unmanaged>D3D_PRIMITIVE_TOPOLOGY_LINELIST_ADJ</unmanaged>	
            <unmanaged-short>D3D_PRIMITIVE_TOPOLOGY_LINELIST_ADJ</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.PrimitiveTopology.LineStripWithAdjacency">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_PRIMITIVE_TOPOLOGY_LINESTRIP_ADJ']/*"/>	
            <unmanaged>D3D_PRIMITIVE_TOPOLOGY_LINESTRIP_ADJ</unmanaged>	
            <unmanaged-short>D3D_PRIMITIVE_TOPOLOGY_LINESTRIP_ADJ</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.PrimitiveTopology.TriangleListWithAdjacency">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_PRIMITIVE_TOPOLOGY_TRIANGLELIST_ADJ']/*"/>	
            <unmanaged>D3D_PRIMITIVE_TOPOLOGY_TRIANGLELIST_ADJ</unmanaged>	
            <unmanaged-short>D3D_PRIMITIVE_TOPOLOGY_TRIANGLELIST_ADJ</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.PrimitiveTopology.TriangleStripWithAdjacency">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_PRIMITIVE_TOPOLOGY_TRIANGLESTRIP_ADJ']/*"/>	
            <unmanaged>D3D_PRIMITIVE_TOPOLOGY_TRIANGLESTRIP_ADJ</unmanaged>	
            <unmanaged-short>D3D_PRIMITIVE_TOPOLOGY_TRIANGLESTRIP_ADJ</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.PrimitiveTopology.PatchListWith1ControlPoints">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_PRIMITIVE_TOPOLOGY_1_CONTROL_POINT_PATCHLIST']/*"/>	
            <unmanaged>D3D_PRIMITIVE_TOPOLOGY_1_CONTROL_POINT_PATCHLIST</unmanaged>	
            <unmanaged-short>D3D_PRIMITIVE_TOPOLOGY_1_CONTROL_POINT_PATCHLIST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.PrimitiveTopology.PatchListWith2ControlPoints">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_PRIMITIVE_TOPOLOGY_2_CONTROL_POINT_PATCHLIST']/*"/>	
            <unmanaged>D3D_PRIMITIVE_TOPOLOGY_2_CONTROL_POINT_PATCHLIST</unmanaged>	
            <unmanaged-short>D3D_PRIMITIVE_TOPOLOGY_2_CONTROL_POINT_PATCHLIST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.PrimitiveTopology.PatchListWith3ControlPoints">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_PRIMITIVE_TOPOLOGY_3_CONTROL_POINT_PATCHLIST']/*"/>	
            <unmanaged>D3D_PRIMITIVE_TOPOLOGY_3_CONTROL_POINT_PATCHLIST</unmanaged>	
            <unmanaged-short>D3D_PRIMITIVE_TOPOLOGY_3_CONTROL_POINT_PATCHLIST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.PrimitiveTopology.PatchListWith4ControlPoints">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_PRIMITIVE_TOPOLOGY_4_CONTROL_POINT_PATCHLIST']/*"/>	
            <unmanaged>D3D_PRIMITIVE_TOPOLOGY_4_CONTROL_POINT_PATCHLIST</unmanaged>	
            <unmanaged-short>D3D_PRIMITIVE_TOPOLOGY_4_CONTROL_POINT_PATCHLIST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.PrimitiveTopology.PatchListWith5ControlPoints">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_PRIMITIVE_TOPOLOGY_5_CONTROL_POINT_PATCHLIST']/*"/>	
            <unmanaged>D3D_PRIMITIVE_TOPOLOGY_5_CONTROL_POINT_PATCHLIST</unmanaged>	
            <unmanaged-short>D3D_PRIMITIVE_TOPOLOGY_5_CONTROL_POINT_PATCHLIST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.PrimitiveTopology.PatchListWith6ControlPoints">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_PRIMITIVE_TOPOLOGY_6_CONTROL_POINT_PATCHLIST']/*"/>	
            <unmanaged>D3D_PRIMITIVE_TOPOLOGY_6_CONTROL_POINT_PATCHLIST</unmanaged>	
            <unmanaged-short>D3D_PRIMITIVE_TOPOLOGY_6_CONTROL_POINT_PATCHLIST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.PrimitiveTopology.PatchListWith7ControlPoints">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_PRIMITIVE_TOPOLOGY_7_CONTROL_POINT_PATCHLIST']/*"/>	
            <unmanaged>D3D_PRIMITIVE_TOPOLOGY_7_CONTROL_POINT_PATCHLIST</unmanaged>	
            <unmanaged-short>D3D_PRIMITIVE_TOPOLOGY_7_CONTROL_POINT_PATCHLIST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.PrimitiveTopology.PatchListWith8ControlPoints">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_PRIMITIVE_TOPOLOGY_8_CONTROL_POINT_PATCHLIST']/*"/>	
            <unmanaged>D3D_PRIMITIVE_TOPOLOGY_8_CONTROL_POINT_PATCHLIST</unmanaged>	
            <unmanaged-short>D3D_PRIMITIVE_TOPOLOGY_8_CONTROL_POINT_PATCHLIST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.PrimitiveTopology.PatchListWith9ControlPoints">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_PRIMITIVE_TOPOLOGY_9_CONTROL_POINT_PATCHLIST']/*"/>	
            <unmanaged>D3D_PRIMITIVE_TOPOLOGY_9_CONTROL_POINT_PATCHLIST</unmanaged>	
            <unmanaged-short>D3D_PRIMITIVE_TOPOLOGY_9_CONTROL_POINT_PATCHLIST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.PrimitiveTopology.PatchListWith10ControlPoints">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_PRIMITIVE_TOPOLOGY_10_CONTROL_POINT_PATCHLIST']/*"/>	
            <unmanaged>D3D_PRIMITIVE_TOPOLOGY_10_CONTROL_POINT_PATCHLIST</unmanaged>	
            <unmanaged-short>D3D_PRIMITIVE_TOPOLOGY_10_CONTROL_POINT_PATCHLIST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.PrimitiveTopology.PatchListWith11ControlPoints">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_PRIMITIVE_TOPOLOGY_11_CONTROL_POINT_PATCHLIST']/*"/>	
            <unmanaged>D3D_PRIMITIVE_TOPOLOGY_11_CONTROL_POINT_PATCHLIST</unmanaged>	
            <unmanaged-short>D3D_PRIMITIVE_TOPOLOGY_11_CONTROL_POINT_PATCHLIST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.PrimitiveTopology.PatchListWith12ControlPoints">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_PRIMITIVE_TOPOLOGY_12_CONTROL_POINT_PATCHLIST']/*"/>	
            <unmanaged>D3D_PRIMITIVE_TOPOLOGY_12_CONTROL_POINT_PATCHLIST</unmanaged>	
            <unmanaged-short>D3D_PRIMITIVE_TOPOLOGY_12_CONTROL_POINT_PATCHLIST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.PrimitiveTopology.PatchListWith13ControlPoints">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_PRIMITIVE_TOPOLOGY_13_CONTROL_POINT_PATCHLIST']/*"/>	
            <unmanaged>D3D_PRIMITIVE_TOPOLOGY_13_CONTROL_POINT_PATCHLIST</unmanaged>	
            <unmanaged-short>D3D_PRIMITIVE_TOPOLOGY_13_CONTROL_POINT_PATCHLIST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.PrimitiveTopology.PatchListWith14ControlPoints">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_PRIMITIVE_TOPOLOGY_14_CONTROL_POINT_PATCHLIST']/*"/>	
            <unmanaged>D3D_PRIMITIVE_TOPOLOGY_14_CONTROL_POINT_PATCHLIST</unmanaged>	
            <unmanaged-short>D3D_PRIMITIVE_TOPOLOGY_14_CONTROL_POINT_PATCHLIST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.PrimitiveTopology.PatchListWith15ControlPoints">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_PRIMITIVE_TOPOLOGY_15_CONTROL_POINT_PATCHLIST']/*"/>	
            <unmanaged>D3D_PRIMITIVE_TOPOLOGY_15_CONTROL_POINT_PATCHLIST</unmanaged>	
            <unmanaged-short>D3D_PRIMITIVE_TOPOLOGY_15_CONTROL_POINT_PATCHLIST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.PrimitiveTopology.PatchListWith16ControlPoints">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_PRIMITIVE_TOPOLOGY_16_CONTROL_POINT_PATCHLIST']/*"/>	
            <unmanaged>D3D_PRIMITIVE_TOPOLOGY_16_CONTROL_POINT_PATCHLIST</unmanaged>	
            <unmanaged-short>D3D_PRIMITIVE_TOPOLOGY_16_CONTROL_POINT_PATCHLIST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.PrimitiveTopology.PatchListWith17ControlPoints">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_PRIMITIVE_TOPOLOGY_17_CONTROL_POINT_PATCHLIST']/*"/>	
            <unmanaged>D3D_PRIMITIVE_TOPOLOGY_17_CONTROL_POINT_PATCHLIST</unmanaged>	
            <unmanaged-short>D3D_PRIMITIVE_TOPOLOGY_17_CONTROL_POINT_PATCHLIST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.PrimitiveTopology.PatchListWith18ControlPoints">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_PRIMITIVE_TOPOLOGY_18_CONTROL_POINT_PATCHLIST']/*"/>	
            <unmanaged>D3D_PRIMITIVE_TOPOLOGY_18_CONTROL_POINT_PATCHLIST</unmanaged>	
            <unmanaged-short>D3D_PRIMITIVE_TOPOLOGY_18_CONTROL_POINT_PATCHLIST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.PrimitiveTopology.PatchListWith19ControlPoints">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_PRIMITIVE_TOPOLOGY_19_CONTROL_POINT_PATCHLIST']/*"/>	
            <unmanaged>D3D_PRIMITIVE_TOPOLOGY_19_CONTROL_POINT_PATCHLIST</unmanaged>	
            <unmanaged-short>D3D_PRIMITIVE_TOPOLOGY_19_CONTROL_POINT_PATCHLIST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.PrimitiveTopology.PatchListWith20ControlPoints">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_PRIMITIVE_TOPOLOGY_20_CONTROL_POINT_PATCHLIST']/*"/>	
            <unmanaged>D3D_PRIMITIVE_TOPOLOGY_20_CONTROL_POINT_PATCHLIST</unmanaged>	
            <unmanaged-short>D3D_PRIMITIVE_TOPOLOGY_20_CONTROL_POINT_PATCHLIST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.PrimitiveTopology.PatchListWith21ControlPoints">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_PRIMITIVE_TOPOLOGY_21_CONTROL_POINT_PATCHLIST']/*"/>	
            <unmanaged>D3D_PRIMITIVE_TOPOLOGY_21_CONTROL_POINT_PATCHLIST</unmanaged>	
            <unmanaged-short>D3D_PRIMITIVE_TOPOLOGY_21_CONTROL_POINT_PATCHLIST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.PrimitiveTopology.PatchListWith22ControlPoints">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_PRIMITIVE_TOPOLOGY_22_CONTROL_POINT_PATCHLIST']/*"/>	
            <unmanaged>D3D_PRIMITIVE_TOPOLOGY_22_CONTROL_POINT_PATCHLIST</unmanaged>	
            <unmanaged-short>D3D_PRIMITIVE_TOPOLOGY_22_CONTROL_POINT_PATCHLIST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.PrimitiveTopology.PatchListWith23ControlPoints">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_PRIMITIVE_TOPOLOGY_23_CONTROL_POINT_PATCHLIST']/*"/>	
            <unmanaged>D3D_PRIMITIVE_TOPOLOGY_23_CONTROL_POINT_PATCHLIST</unmanaged>	
            <unmanaged-short>D3D_PRIMITIVE_TOPOLOGY_23_CONTROL_POINT_PATCHLIST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.PrimitiveTopology.PatchListWith24ControlPoints">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_PRIMITIVE_TOPOLOGY_24_CONTROL_POINT_PATCHLIST']/*"/>	
            <unmanaged>D3D_PRIMITIVE_TOPOLOGY_24_CONTROL_POINT_PATCHLIST</unmanaged>	
            <unmanaged-short>D3D_PRIMITIVE_TOPOLOGY_24_CONTROL_POINT_PATCHLIST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.PrimitiveTopology.PatchListWith25ControlPoints">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_PRIMITIVE_TOPOLOGY_25_CONTROL_POINT_PATCHLIST']/*"/>	
            <unmanaged>D3D_PRIMITIVE_TOPOLOGY_25_CONTROL_POINT_PATCHLIST</unmanaged>	
            <unmanaged-short>D3D_PRIMITIVE_TOPOLOGY_25_CONTROL_POINT_PATCHLIST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.PrimitiveTopology.PatchListWith26ControlPoints">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_PRIMITIVE_TOPOLOGY_26_CONTROL_POINT_PATCHLIST']/*"/>	
            <unmanaged>D3D_PRIMITIVE_TOPOLOGY_26_CONTROL_POINT_PATCHLIST</unmanaged>	
            <unmanaged-short>D3D_PRIMITIVE_TOPOLOGY_26_CONTROL_POINT_PATCHLIST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.PrimitiveTopology.PatchListWith27ControlPoints">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_PRIMITIVE_TOPOLOGY_27_CONTROL_POINT_PATCHLIST']/*"/>	
            <unmanaged>D3D_PRIMITIVE_TOPOLOGY_27_CONTROL_POINT_PATCHLIST</unmanaged>	
            <unmanaged-short>D3D_PRIMITIVE_TOPOLOGY_27_CONTROL_POINT_PATCHLIST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.PrimitiveTopology.PatchListWith28ControlPoints">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_PRIMITIVE_TOPOLOGY_28_CONTROL_POINT_PATCHLIST']/*"/>	
            <unmanaged>D3D_PRIMITIVE_TOPOLOGY_28_CONTROL_POINT_PATCHLIST</unmanaged>	
            <unmanaged-short>D3D_PRIMITIVE_TOPOLOGY_28_CONTROL_POINT_PATCHLIST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.PrimitiveTopology.PatchListWith29ControlPoints">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_PRIMITIVE_TOPOLOGY_29_CONTROL_POINT_PATCHLIST']/*"/>	
            <unmanaged>D3D_PRIMITIVE_TOPOLOGY_29_CONTROL_POINT_PATCHLIST</unmanaged>	
            <unmanaged-short>D3D_PRIMITIVE_TOPOLOGY_29_CONTROL_POINT_PATCHLIST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.PrimitiveTopology.PatchListWith30ControlPoints">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_PRIMITIVE_TOPOLOGY_30_CONTROL_POINT_PATCHLIST']/*"/>	
            <unmanaged>D3D_PRIMITIVE_TOPOLOGY_30_CONTROL_POINT_PATCHLIST</unmanaged>	
            <unmanaged-short>D3D_PRIMITIVE_TOPOLOGY_30_CONTROL_POINT_PATCHLIST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.PrimitiveTopology.PatchListWith31ControlPoints">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_PRIMITIVE_TOPOLOGY_31_CONTROL_POINT_PATCHLIST']/*"/>	
            <unmanaged>D3D_PRIMITIVE_TOPOLOGY_31_CONTROL_POINT_PATCHLIST</unmanaged>	
            <unmanaged-short>D3D_PRIMITIVE_TOPOLOGY_31_CONTROL_POINT_PATCHLIST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.PrimitiveTopology.PatchListWith32ControlPoints">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_PRIMITIVE_TOPOLOGY_32_CONTROL_POINT_PATCHLIST']/*"/>	
            <unmanaged>D3D_PRIMITIVE_TOPOLOGY_32_CONTROL_POINT_PATCHLIST</unmanaged>	
            <unmanaged-short>D3D_PRIMITIVE_TOPOLOGY_32_CONTROL_POINT_PATCHLIST</unmanaged-short>	
        </member>
        <member name="T:SharpDX.Direct3D.ShaderResourceViewDimension">
            <summary>	
            <p>Values that identify the type of resource to be viewed as a shader resource.</p>	
            </summary>	
            <remarks>	
            <p>A <strong><see cref="T:SharpDX.Direct3D.ShaderResourceViewDimension"/></strong>-typed value is specified in the <strong>ViewDimension</strong> member of the <strong><see cref="!:SharpDX.Direct3D11.ShaderResourceViewDescription"/></strong> structure or the  <strong>Dimension</strong> member of the <strong><see cref="!:SharpDX.D3DCompiler.InputBindingDescription"/></strong> structure.</p>	
            </remarks>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_SRV_DIMENSION']/*"/>	
            <msdn-id>ff728736</msdn-id>	
            <unmanaged>D3D_SRV_DIMENSION</unmanaged>	
            <unmanaged-short>D3D_SRV_DIMENSION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.ShaderResourceViewDimension.Unknown">
            <summary>	
            <dd> <p>The type is unknown.</p> </dd>	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_SRV_DIMENSION_UNKNOWN']/*"/>	
            <msdn-id>ff728736</msdn-id>	
            <unmanaged>D3D_SRV_DIMENSION_UNKNOWN</unmanaged>	
            <unmanaged-short>D3D_SRV_DIMENSION_UNKNOWN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.ShaderResourceViewDimension.Buffer">
            <summary>	
            <dd> <p>The resource is a buffer.</p> </dd>	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_SRV_DIMENSION_BUFFER']/*"/>	
            <msdn-id>ff728736</msdn-id>	
            <unmanaged>D3D_SRV_DIMENSION_BUFFER</unmanaged>	
            <unmanaged-short>D3D_SRV_DIMENSION_BUFFER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.ShaderResourceViewDimension.Texture1D">
            <summary>	
            <dd> <p>The resource is a 1D texture.</p> </dd>	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_SRV_DIMENSION_TEXTURE1D']/*"/>	
            <msdn-id>ff728736</msdn-id>	
            <unmanaged>D3D_SRV_DIMENSION_TEXTURE1D</unmanaged>	
            <unmanaged-short>D3D_SRV_DIMENSION_TEXTURE1D</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.ShaderResourceViewDimension.Texture1DArray">
            <summary>	
            <dd> <p>The resource is an array of 1D textures.</p> </dd>	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_SRV_DIMENSION_TEXTURE1DARRAY']/*"/>	
            <msdn-id>ff728736</msdn-id>	
            <unmanaged>D3D_SRV_DIMENSION_TEXTURE1DARRAY</unmanaged>	
            <unmanaged-short>D3D_SRV_DIMENSION_TEXTURE1DARRAY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.ShaderResourceViewDimension.Texture2D">
            <summary>	
            <dd> <p>The resource is a 2D texture.</p> </dd>	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_SRV_DIMENSION_TEXTURE2D']/*"/>	
            <msdn-id>ff728736</msdn-id>	
            <unmanaged>D3D_SRV_DIMENSION_TEXTURE2D</unmanaged>	
            <unmanaged-short>D3D_SRV_DIMENSION_TEXTURE2D</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.ShaderResourceViewDimension.Texture2DArray">
            <summary>	
            <dd> <p>The resource is an array of 2D textures.</p> </dd>	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_SRV_DIMENSION_TEXTURE2DARRAY']/*"/>	
            <msdn-id>ff728736</msdn-id>	
            <unmanaged>D3D_SRV_DIMENSION_TEXTURE2DARRAY</unmanaged>	
            <unmanaged-short>D3D_SRV_DIMENSION_TEXTURE2DARRAY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.ShaderResourceViewDimension.Texture2DMultisampled">
            <summary>	
            <dd> <p>The resource is a multisampling 2D texture.</p> </dd>	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_SRV_DIMENSION_TEXTURE2DMS']/*"/>	
            <msdn-id>ff728736</msdn-id>	
            <unmanaged>D3D_SRV_DIMENSION_TEXTURE2DMS</unmanaged>	
            <unmanaged-short>D3D_SRV_DIMENSION_TEXTURE2DMS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.ShaderResourceViewDimension.Texture2DMultisampledArray">
            <summary>	
            <dd> <p>The resource is an array of multisampling 2D textures.</p> </dd>	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_SRV_DIMENSION_TEXTURE2DMSARRAY']/*"/>	
            <msdn-id>ff728736</msdn-id>	
            <unmanaged>D3D_SRV_DIMENSION_TEXTURE2DMSARRAY</unmanaged>	
            <unmanaged-short>D3D_SRV_DIMENSION_TEXTURE2DMSARRAY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.ShaderResourceViewDimension.Texture3D">
            <summary>	
            <dd> <p>The resource is a 3D texture.</p> </dd>	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_SRV_DIMENSION_TEXTURE3D']/*"/>	
            <msdn-id>ff728736</msdn-id>	
            <unmanaged>D3D_SRV_DIMENSION_TEXTURE3D</unmanaged>	
            <unmanaged-short>D3D_SRV_DIMENSION_TEXTURE3D</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.ShaderResourceViewDimension.TextureCube">
            <summary>	
            <dd> <p>The resource is a cube texture.</p> </dd>	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_SRV_DIMENSION_TEXTURECUBE']/*"/>	
            <msdn-id>ff728736</msdn-id>	
            <unmanaged>D3D_SRV_DIMENSION_TEXTURECUBE</unmanaged>	
            <unmanaged-short>D3D_SRV_DIMENSION_TEXTURECUBE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.ShaderResourceViewDimension.Texturecubearray">
            <summary>	
            <dd> <p>The resource is an array of cube textures.</p> </dd>	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_SRV_DIMENSION_TEXTURECUBEARRAY']/*"/>	
            <msdn-id>ff728736</msdn-id>	
            <unmanaged>D3D_SRV_DIMENSION_TEXTURECUBEARRAY</unmanaged>	
            <unmanaged-short>D3D_SRV_DIMENSION_TEXTURECUBEARRAY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.ShaderResourceViewDimension.ExtendedBuffer">
            <summary>	
            <dd> <p>The resource is an extended buffer.</p> </dd>	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_SRV_DIMENSION_BUFFEREX']/*"/>	
            <msdn-id>ff728736</msdn-id>	
            <unmanaged>D3D_SRV_DIMENSION_BUFFEREX</unmanaged>	
            <unmanaged-short>D3D_SRV_DIMENSION_BUFFEREX</unmanaged-short>	
        </member>
        <member name="T:SharpDX.Direct3D.CommonGuid">
            <summary>	
            Functions	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='SharpDX.Direct3D.CommonGuid']/*"/>	
        </member>
        <member name="F:SharpDX.Direct3D.CommonGuid.DebugObjectName">
            <summary>Constant DebugObjectName.</summary>
            <unmanaged>WKPDID_D3DDebugObjectName</unmanaged>
        </member>
        <member name="T:SharpDX.Direct3D.Blob">
            <summary>	
            <p>This interface is used to return arbitrary length data.</p>	
            </summary>	
            <remarks>	
            <p>An <strong><see cref="T:SharpDX.Direct3D.Blob"/></strong> is obtained by calling <strong>D3D10CreateBlob</strong>.</p><p>The  <strong>ID3DBlob</strong> interface is type defined in the  D3DCommon.h header file as a  <strong><see cref="T:SharpDX.Direct3D.Blob"/></strong> interface, which is fully defined in the  D3DCommon.h header file. <strong>ID3DBlob</strong> is version neutral and can be used in code for any Direct3D version.</p><p>Blobs can be used as a data buffer, storing vertex, adjacency, and material information during mesh optimization and loading operations. Also, these objects are used to return object code and error messages in APIs that compile vertex, geometry and pixel shaders.</p>	
            </remarks>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Blob']/*"/>	
            <msdn-id>bb173507</msdn-id>	
            <unmanaged>ID3D10Blob</unmanaged>	
            <unmanaged-short>ID3D10Blob</unmanaged-short>	
        </member>
        <member name="M:SharpDX.Direct3D.Blob.#ctor(System.IntPtr)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Direct3D.Blob"/> class.
            </summary>
            <param name="nativePtr">The native pointer.</param>	
        </member>
        <member name="M:SharpDX.Direct3D.Blob.op_Explicit(System.IntPtr)~SharpDX.Direct3D.Blob">
            <summary>
            Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D.Blob"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>) 
            </summary>
            <param name="nativePointer">The native pointer.</param>
            <returns>
            The result of the conversion.
            </returns>
        </member>
        <member name="M:SharpDX.Direct3D.Blob.GetBufferPointer">
            <summary>	
            <p>Get a reference to the data.</p>	
            </summary>	
            <returns><p>Returns a reference.</p></returns>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Blob::GetBufferPointer']/*"/>	
            <msdn-id>bb173508</msdn-id>	
            <unmanaged>void* ID3D10Blob::GetBufferPointer()</unmanaged>	
            <unmanaged-short>ID3D10Blob::GetBufferPointer</unmanaged-short>	
        </member>
        <member name="M:SharpDX.Direct3D.Blob.GetBufferSize">
            <summary>	
            <p>Get the size.</p>	
            </summary>	
            <returns><p>The size of the data, in bytes.</p></returns>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Blob::GetBufferSize']/*"/>	
            <msdn-id>bb173509</msdn-id>	
            <unmanaged>SIZE_T ID3D10Blob::GetBufferSize()</unmanaged>	
            <unmanaged-short>ID3D10Blob::GetBufferSize</unmanaged-short>	
        </member>
        <member name="P:SharpDX.Direct3D.Blob.BufferPointer">
            <summary>	
            <p>Get a reference to the data.</p>	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Blob::GetBufferPointer']/*"/>	
            <msdn-id>bb173508</msdn-id>	
            <unmanaged>GetBufferPointer</unmanaged>	
            <unmanaged-short>GetBufferPointer</unmanaged-short>	
            <unmanaged>void* ID3D10Blob::GetBufferPointer()</unmanaged>
        </member>
        <member name="P:SharpDX.Direct3D.Blob.BufferSize">
            <summary>	
            <p>Get the size.</p>	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Blob::GetBufferSize']/*"/>	
            <msdn-id>bb173509</msdn-id>	
            <unmanaged>GetBufferSize</unmanaged>	
            <unmanaged-short>GetBufferSize</unmanaged-short>	
            <unmanaged>SIZE_T ID3D10Blob::GetBufferSize()</unmanaged>
        </member>
        <member name="T:SharpDX.Direct3D.ShaderMacro">
            <summary>	
            <p>Defines a shader macro.</p>	
            </summary>	
            <remarks>	
            <p>You can use shader macros in your shaders. The <strong><see cref="T:SharpDX.Direct3D.ShaderMacro"/></strong> structure defines a single shader macro as shown in the following example:</p><pre><code> <see cref="T:SharpDX.Direct3D.ShaderMacro"/> Shader_Macros[1] = { "zero", "0"  };	
            </code></pre><p>The following shader or effect creation functions take an array of shader macros as an input parameter:</p><ul> <li> <strong>D3D10CompileShader</strong> </li> <li> <strong>D3DX10CreateEffectFromFile</strong> </li> <li> <strong>D3DX10PreprocessShaderFromFile</strong> </li> <li> <strong>D3DX11CreateAsyncShaderPreprocessProcessor</strong> </li> </ul>	
            </remarks>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_SHADER_MACRO']/*"/>	
            <msdn-id>ff728732</msdn-id>	
            <unmanaged>D3D_SHADER_MACRO</unmanaged>	
            <unmanaged-short>D3D_SHADER_MACRO</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.ShaderMacro.Name">
            <summary>	
            <dd> <p>The macro name.</p> </dd>	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_SHADER_MACRO::Name']/*"/>	
            <msdn-id>ff728732</msdn-id>	
            <unmanaged>const char* Name</unmanaged>	
            <unmanaged-short>char Name</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Direct3D.ShaderMacro.Definition">
            <summary>	
            <dd> <p>The macro definition.</p> </dd>	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D_SHADER_MACRO::Definition']/*"/>	
            <msdn-id>ff728732</msdn-id>	
            <unmanaged>const char* Definition</unmanaged>	
            <unmanaged-short>char Definition</unmanaged-short>	
        </member>
        <member name="M:SharpDX.Direct3D.ShaderMacro.#ctor(System.String,System.Object)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Direct3D.ShaderMacro"/> struct. 
            </summary>
            <param name="name">
            The name.
            </param>
            <param name="definition">
            The definition.
            </param>
        </member>
        <member name="T:SharpDX.Multimedia.AudclntSharemode">
            <summary>	
            <p> </p><p>The <strong><see cref="T:SharpDX.Multimedia.AudclntSharemode"/></strong> enumeration defines constants that indicate whether an audio stream will run in shared mode or in exclusive mode.</p>	
            </summary>	
            <remarks>	
            <p>The <strong>IAudioClient::Initialize</strong> and <strong>IAudioClient::IsFormatSupported</strong> methods use the constants defined in the <strong><see cref="T:SharpDX.Multimedia.AudclntSharemode"/></strong> enumeration.</p><p>In shared mode, the client can share the audio endpoint device with clients that run in other user-mode processes. The audio engine always supports formats for client streams that match the engine's mix format. In addition, the audio engine might support another format if the Windows audio service can insert system effects into the client stream to convert the client format to the mix format.</p><p>In exclusive mode, the Windows audio service attempts to establish a connection in which the client has exclusive access to the audio endpoint device. In this mode, the audio engine inserts no system effects into the local stream to aid in the creation of the connection point. Either the audio device can handle the specified format directly or the method fails.</p><p>For more information about shared-mode and exclusive-mode streams, see User-Mode Audio Components.</p>	
            </remarks>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='AUDCLNT_SHAREMODE']/*"/>	
            <msdn-id>dd370790</msdn-id>	
            <unmanaged>AUDCLNT_SHAREMODE</unmanaged>	
            <unmanaged-short>AUDCLNT_SHAREMODE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.AudclntSharemode.Shared">
            <summary>	
            <dd> <p>The audio stream will run in shared mode. For more information, see Remarks.</p> </dd>	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='AUDCLNT_SHAREMODE_SHARED']/*"/>	
            <msdn-id>dd370790</msdn-id>	
            <unmanaged>AUDCLNT_SHAREMODE_SHARED</unmanaged>	
            <unmanaged-short>AUDCLNT_SHAREMODE_SHARED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.AudclntSharemode.Exclusive">
            <summary>	
            <dd> <p>The audio stream will run in exclusive mode. For more information, see Remarks.</p> </dd>	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='AUDCLNT_SHAREMODE_EXCLUSIVE']/*"/>	
            <msdn-id>dd370790</msdn-id>	
            <unmanaged>AUDCLNT_SHAREMODE_EXCLUSIVE</unmanaged>	
            <unmanaged-short>AUDCLNT_SHAREMODE_EXCLUSIVE</unmanaged-short>	
        </member>
        <member name="T:SharpDX.Multimedia.AudioSessionState">
            <summary>	
            <p> </p><p>The <strong>AudioSessionState</strong> enumeration defines constants that indicate the current state of an audio session.</p>	
            </summary>	
            <remarks>	
            <p>When a client opens a session by assigning the first stream to the session (by calling the <strong>IAudioClient::Initialize</strong> method), the initial session state is inactive. The session state changes from inactive to active when a stream in the session begins running (because the client has called the <strong>IAudioClient::Start</strong> method). The session changes from active to inactive when the client stops the last running stream in the session (by calling the <strong>IAudioClient::Stop</strong> method). The session state changes to expired when the client destroys the last stream in the session by releasing all references to the stream object.</p><p>The system volume-control program, Sndvol, displays volume controls for both active and inactive sessions. Sndvol stops displaying the volume control for a session when the session state changes to expired. For more information about Sndvol, see Audio Sessions.</p><p>The <strong>IAudioSessionControl::GetState</strong> and <strong>IAudioSessionEvents::OnStateChanged</strong> methods use the constants defined in the <strong>AudioSessionState</strong> enumeration.</p><p>For more information about session states, see Audio Sessions.</p>	
            </remarks>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='AudioSessionState']/*"/>	
            <msdn-id>dd370792</msdn-id>	
            <unmanaged>AudioSessionState</unmanaged>	
            <unmanaged-short>AudioSessionState</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.AudioSessionState.AudioSessionStateInactive">
            <summary>	
            <dd> <p>The audio session is inactive. (It contains at least one stream, but none of the streams in the session is currently running.)</p> </dd>	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='AudioSessionStateInactive']/*"/>	
            <msdn-id>dd370792</msdn-id>	
            <unmanaged>AudioSessionStateInactive</unmanaged>	
            <unmanaged-short>AudioSessionStateInactive</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.AudioSessionState.AudioSessionStateActive">
            <summary>	
            <dd> <p>The audio session is active. (At least one of the streams in the session is running.)</p> </dd>	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='AudioSessionStateActive']/*"/>	
            <msdn-id>dd370792</msdn-id>	
            <unmanaged>AudioSessionStateActive</unmanaged>	
            <unmanaged-short>AudioSessionStateActive</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.AudioSessionState.AudioSessionStateExpired">
            <summary>	
            <dd> <p>The audio session has expired. (It contains no streams.)</p> </dd>	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='AudioSessionStateExpired']/*"/>	
            <msdn-id>dd370792</msdn-id>	
            <unmanaged>AudioSessionStateExpired</unmanaged>	
            <unmanaged-short>AudioSessionStateExpired</unmanaged-short>	
        </member>
        <member name="T:SharpDX.Multimedia.AudioStreamCategory">
            <summary>	
            <p>[This documentation is preliminary and is subject to change.]</p><p>Specifies the category of an audio stream.</p>	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='AUDIO_STREAM_CATEGORY']/*"/>	
            <msdn-id>hh404178</msdn-id>	
            <unmanaged>AUDIO_STREAM_CATEGORY</unmanaged>	
            <unmanaged-short>AUDIO_STREAM_CATEGORY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.AudioStreamCategory.Other">
            <summary>	
            <dd> <p>Media, such as music or streaming audio.</p> </dd>	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='AudioCategory_Other']/*"/>	
            <msdn-id>hh404178</msdn-id>	
            <unmanaged>AudioCategory_Other</unmanaged>	
            <unmanaged-short>AudioCategory_Other</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.AudioStreamCategory.ForegroundOnlyMedia">
            <summary>	
            <dd> <p>Real-time communications, such as VOIP or chat.</p> </dd>	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='AudioCategory_ForegroundOnlyMedia']/*"/>	
            <msdn-id>hh404178</msdn-id>	
            <unmanaged>AudioCategory_ForegroundOnlyMedia</unmanaged>	
            <unmanaged-short>AudioCategory_ForegroundOnlyMedia</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.AudioStreamCategory.BackgroundCapableMedia">
            <summary>	
            <dd> <p>Voice narration, such as a screen reader or ebook reader.</p> </dd>	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='AudioCategory_BackgroundCapableMedia']/*"/>	
            <msdn-id>hh404178</msdn-id>	
            <unmanaged>AudioCategory_BackgroundCapableMedia</unmanaged>	
            <unmanaged-short>AudioCategory_BackgroundCapableMedia</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.AudioStreamCategory.Communications">
            <summary>	
            <dd> <p>Alert sounds.</p> </dd>	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='AudioCategory_Communications']/*"/>	
            <msdn-id>hh404178</msdn-id>	
            <unmanaged>AudioCategory_Communications</unmanaged>	
            <unmanaged-short>AudioCategory_Communications</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.AudioStreamCategory.Alerts">
            <summary>	
            <dd> <p>Sound effects.</p> </dd>	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='AudioCategory_Alerts']/*"/>	
            <msdn-id>hh404178</msdn-id>	
            <unmanaged>AudioCategory_Alerts</unmanaged>	
            <unmanaged-short>AudioCategory_Alerts</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.AudioStreamCategory.SoundEffects">
            <summary>	
            <dd> <p>Game sound effects.</p> </dd>	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='AudioCategory_SoundEffects']/*"/>	
            <msdn-id>hh404178</msdn-id>	
            <unmanaged>AudioCategory_SoundEffects</unmanaged>	
            <unmanaged-short>AudioCategory_SoundEffects</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.AudioStreamCategory.GameEffects">
            <summary>	
            <dd> <p>Background audio for games.</p> </dd>	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='AudioCategory_GameEffects']/*"/>	
            <msdn-id>hh404178</msdn-id>	
            <unmanaged>AudioCategory_GameEffects</unmanaged>	
            <unmanaged-short>AudioCategory_GameEffects</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.AudioStreamCategory.GameMedia">
            <summary>	
            <dd> <p>Other audio stream.</p> </dd>	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='AudioCategory_GameMedia']/*"/>	
            <msdn-id>hh404178</msdn-id>	
            <unmanaged>AudioCategory_GameMedia</unmanaged>	
            <unmanaged-short>AudioCategory_GameMedia</unmanaged-short>	
        </member>
        <member name="T:SharpDX.Multimedia.Speakers">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='SPEAKER_FLAGS']/*"/>	
            <unmanaged>SPEAKER_FLAGS</unmanaged>	
            <unmanaged-short>SPEAKER_FLAGS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.Speakers.FrontLeft">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='SPEAKER_FRONT_LEFT']/*"/>	
            <unmanaged>SPEAKER_FRONT_LEFT</unmanaged>	
            <unmanaged-short>SPEAKER_FRONT_LEFT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.Speakers.FrontRight">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='SPEAKER_FRONT_RIGHT']/*"/>	
            <unmanaged>SPEAKER_FRONT_RIGHT</unmanaged>	
            <unmanaged-short>SPEAKER_FRONT_RIGHT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.Speakers.FrontCenter">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='SPEAKER_FRONT_CENTER']/*"/>	
            <unmanaged>SPEAKER_FRONT_CENTER</unmanaged>	
            <unmanaged-short>SPEAKER_FRONT_CENTER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.Speakers.LowFrequency">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='SPEAKER_LOW_FREQUENCY']/*"/>	
            <unmanaged>SPEAKER_LOW_FREQUENCY</unmanaged>	
            <unmanaged-short>SPEAKER_LOW_FREQUENCY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.Speakers.BackLeft">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='SPEAKER_BACK_LEFT']/*"/>	
            <unmanaged>SPEAKER_BACK_LEFT</unmanaged>	
            <unmanaged-short>SPEAKER_BACK_LEFT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.Speakers.BackRight">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='SPEAKER_BACK_RIGHT']/*"/>	
            <unmanaged>SPEAKER_BACK_RIGHT</unmanaged>	
            <unmanaged-short>SPEAKER_BACK_RIGHT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.Speakers.FrontLeftOfCenter">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='SPEAKER_FRONT_LEFT_OF_CENTER']/*"/>	
            <unmanaged>SPEAKER_FRONT_LEFT_OF_CENTER</unmanaged>	
            <unmanaged-short>SPEAKER_FRONT_LEFT_OF_CENTER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.Speakers.FrontRightOfCenter">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='SPEAKER_FRONT_RIGHT_OF_CENTER']/*"/>	
            <unmanaged>SPEAKER_FRONT_RIGHT_OF_CENTER</unmanaged>	
            <unmanaged-short>SPEAKER_FRONT_RIGHT_OF_CENTER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.Speakers.BackCenter">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='SPEAKER_BACK_CENTER']/*"/>	
            <unmanaged>SPEAKER_BACK_CENTER</unmanaged>	
            <unmanaged-short>SPEAKER_BACK_CENTER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.Speakers.SideLeft">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='SPEAKER_SIDE_LEFT']/*"/>	
            <unmanaged>SPEAKER_SIDE_LEFT</unmanaged>	
            <unmanaged-short>SPEAKER_SIDE_LEFT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.Speakers.SideRight">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='SPEAKER_SIDE_RIGHT']/*"/>	
            <unmanaged>SPEAKER_SIDE_RIGHT</unmanaged>	
            <unmanaged-short>SPEAKER_SIDE_RIGHT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.Speakers.TopCenter">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='SPEAKER_TOP_CENTER']/*"/>	
            <unmanaged>SPEAKER_TOP_CENTER</unmanaged>	
            <unmanaged-short>SPEAKER_TOP_CENTER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.Speakers.TopFrontLeft">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='SPEAKER_TOP_FRONT_LEFT']/*"/>	
            <unmanaged>SPEAKER_TOP_FRONT_LEFT</unmanaged>	
            <unmanaged-short>SPEAKER_TOP_FRONT_LEFT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.Speakers.TopFrontCenter">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='SPEAKER_TOP_FRONT_CENTER']/*"/>	
            <unmanaged>SPEAKER_TOP_FRONT_CENTER</unmanaged>	
            <unmanaged-short>SPEAKER_TOP_FRONT_CENTER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.Speakers.TopFrontRight">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='SPEAKER_TOP_FRONT_RIGHT']/*"/>	
            <unmanaged>SPEAKER_TOP_FRONT_RIGHT</unmanaged>	
            <unmanaged-short>SPEAKER_TOP_FRONT_RIGHT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.Speakers.TopBackLeft">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='SPEAKER_TOP_BACK_LEFT']/*"/>	
            <unmanaged>SPEAKER_TOP_BACK_LEFT</unmanaged>	
            <unmanaged-short>SPEAKER_TOP_BACK_LEFT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.Speakers.TopBackCenter">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='SPEAKER_TOP_BACK_CENTER']/*"/>	
            <unmanaged>SPEAKER_TOP_BACK_CENTER</unmanaged>	
            <unmanaged-short>SPEAKER_TOP_BACK_CENTER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.Speakers.TopBackRight">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='SPEAKER_TOP_BACK_RIGHT']/*"/>	
            <unmanaged>SPEAKER_TOP_BACK_RIGHT</unmanaged>	
            <unmanaged-short>SPEAKER_TOP_BACK_RIGHT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.Speakers.Reserved">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='SPEAKER_RESERVED']/*"/>	
            <unmanaged>SPEAKER_RESERVED</unmanaged>	
            <unmanaged-short>SPEAKER_RESERVED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.Speakers.All">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='SPEAKER_ALL']/*"/>	
            <unmanaged>SPEAKER_ALL</unmanaged>	
            <unmanaged-short>SPEAKER_ALL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.Speakers.Mono">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='SPEAKER_MONO']/*"/>	
            <unmanaged>SPEAKER_MONO</unmanaged>	
            <unmanaged-short>SPEAKER_MONO</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.Speakers.Stereo">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='SPEAKER_STEREO']/*"/>	
            <unmanaged>SPEAKER_STEREO</unmanaged>	
            <unmanaged-short>SPEAKER_STEREO</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.Speakers.TwoPointOne">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='SPEAKER_2POINT1']/*"/>	
            <unmanaged>SPEAKER_2POINT1</unmanaged>	
            <unmanaged-short>SPEAKER_2POINT1</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.Speakers.Surround">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='SPEAKER_SURROUND']/*"/>	
            <unmanaged>SPEAKER_SURROUND</unmanaged>	
            <unmanaged-short>SPEAKER_SURROUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.Speakers.Quad">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='SPEAKER_QUAD']/*"/>	
            <unmanaged>SPEAKER_QUAD</unmanaged>	
            <unmanaged-short>SPEAKER_QUAD</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.Speakers.FourPointOne">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='SPEAKER_4POINT1']/*"/>	
            <unmanaged>SPEAKER_4POINT1</unmanaged>	
            <unmanaged-short>SPEAKER_4POINT1</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.Speakers.FivePointOne">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='SPEAKER_5POINT1']/*"/>	
            <unmanaged>SPEAKER_5POINT1</unmanaged>	
            <unmanaged-short>SPEAKER_5POINT1</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.Speakers.SevenPointOne">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='SPEAKER_7POINT1']/*"/>	
            <unmanaged>SPEAKER_7POINT1</unmanaged>	
            <unmanaged-short>SPEAKER_7POINT1</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.Speakers.FivePointOneSurround">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='SPEAKER_5POINT1_SURROUND']/*"/>	
            <unmanaged>SPEAKER_5POINT1_SURROUND</unmanaged>	
            <unmanaged-short>SPEAKER_5POINT1_SURROUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.Speakers.SevenPointOneSurround">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='SPEAKER_7POINT1_SURROUND']/*"/>	
            <unmanaged>SPEAKER_7POINT1_SURROUND</unmanaged>	
            <unmanaged-short>SPEAKER_7POINT1_SURROUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.Speakers.None">
            <summary>	
            None.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='']/*"/>	
            <unmanaged>None</unmanaged>	
            <unmanaged-short>None</unmanaged-short>	
        </member>
        <member name="T:SharpDX.Multimedia.UsageId">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='HID_USAGE_ID']/*"/>	
            <unmanaged>HID_USAGE_ID</unmanaged>	
            <unmanaged-short>HID_USAGE_ID</unmanaged-short>	
        </member>
        <member name="T:SharpDX.Multimedia.UsagePage">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='HID_USAGE_PAGE']/*"/>	
            <unmanaged>HID_USAGE_PAGE</unmanaged>	
            <unmanaged-short>HID_USAGE_PAGE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.UsagePage.Medical">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='HID_USAGE_PAGE_MEDICAL']/*"/>	
            <unmanaged>HID_USAGE_PAGE_MEDICAL</unmanaged>	
            <unmanaged-short>HID_USAGE_PAGE_MEDICAL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.UsagePage.MonitorPage0">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='HID_USAGE_PAGE_MONITOR_PAGE0']/*"/>	
            <unmanaged>HID_USAGE_PAGE_MONITOR_PAGE0</unmanaged>	
            <unmanaged-short>HID_USAGE_PAGE_MONITOR_PAGE0</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.UsagePage.MonitorPage1">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='HID_USAGE_PAGE_MONITOR_PAGE1']/*"/>	
            <unmanaged>HID_USAGE_PAGE_MONITOR_PAGE1</unmanaged>	
            <unmanaged-short>HID_USAGE_PAGE_MONITOR_PAGE1</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.UsagePage.MonitorPage2">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='HID_USAGE_PAGE_MONITOR_PAGE2']/*"/>	
            <unmanaged>HID_USAGE_PAGE_MONITOR_PAGE2</unmanaged>	
            <unmanaged-short>HID_USAGE_PAGE_MONITOR_PAGE2</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.UsagePage.MonitorPage3">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='HID_USAGE_PAGE_MONITOR_PAGE3']/*"/>	
            <unmanaged>HID_USAGE_PAGE_MONITOR_PAGE3</unmanaged>	
            <unmanaged-short>HID_USAGE_PAGE_MONITOR_PAGE3</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.UsagePage.PowerPage0">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='HID_USAGE_PAGE_POWER_PAGE0']/*"/>	
            <unmanaged>HID_USAGE_PAGE_POWER_PAGE0</unmanaged>	
            <unmanaged-short>HID_USAGE_PAGE_POWER_PAGE0</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.UsagePage.PowerPage1">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='HID_USAGE_PAGE_POWER_PAGE1']/*"/>	
            <unmanaged>HID_USAGE_PAGE_POWER_PAGE1</unmanaged>	
            <unmanaged-short>HID_USAGE_PAGE_POWER_PAGE1</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.UsagePage.PowerPage2">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='HID_USAGE_PAGE_POWER_PAGE2']/*"/>	
            <unmanaged>HID_USAGE_PAGE_POWER_PAGE2</unmanaged>	
            <unmanaged-short>HID_USAGE_PAGE_POWER_PAGE2</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.UsagePage.PowerPage3">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='HID_USAGE_PAGE_POWER_PAGE3']/*"/>	
            <unmanaged>HID_USAGE_PAGE_POWER_PAGE3</unmanaged>	
            <unmanaged-short>HID_USAGE_PAGE_POWER_PAGE3</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.UsagePage.Barcode">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='HID_USAGE_PAGE_BARCODE']/*"/>	
            <unmanaged>HID_USAGE_PAGE_BARCODE</unmanaged>	
            <unmanaged-short>HID_USAGE_PAGE_BARCODE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.UsagePage.Scale">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='HID_USAGE_PAGE_SCALE']/*"/>	
            <unmanaged>HID_USAGE_PAGE_SCALE</unmanaged>	
            <unmanaged-short>HID_USAGE_PAGE_SCALE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.UsagePage.Msr">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='HID_USAGE_PAGE_MSR']/*"/>	
            <unmanaged>HID_USAGE_PAGE_MSR</unmanaged>	
            <unmanaged-short>HID_USAGE_PAGE_MSR</unmanaged-short>	
        </member>
        <member name="T:SharpDX.Multimedia.WaveFormatEncoding">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_ENCODING']/*"/>	
            <unmanaged>WAVE_FORMAT_ENCODING</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_ENCODING</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Unknown">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_UNKNOWN']/*"/>	
            <unmanaged>WAVE_FORMAT_UNKNOWN</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_UNKNOWN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Adpcm">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_ADPCM']/*"/>	
            <unmanaged>WAVE_FORMAT_ADPCM</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_ADPCM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.IeeeFloat">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_IEEE_FLOAT']/*"/>	
            <unmanaged>WAVE_FORMAT_IEEE_FLOAT</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_IEEE_FLOAT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Vselp">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_VSELP']/*"/>	
            <unmanaged>WAVE_FORMAT_VSELP</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_VSELP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.IbmCvsd">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_IBM_CVSD']/*"/>	
            <unmanaged>WAVE_FORMAT_IBM_CVSD</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_IBM_CVSD</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Alaw">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_ALAW']/*"/>	
            <unmanaged>WAVE_FORMAT_ALAW</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_ALAW</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Mulaw">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_MULAW']/*"/>	
            <unmanaged>WAVE_FORMAT_MULAW</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_MULAW</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Dts">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_DTS']/*"/>	
            <unmanaged>WAVE_FORMAT_DTS</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_DTS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Drm">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_DRM']/*"/>	
            <unmanaged>WAVE_FORMAT_DRM</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_DRM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Wmavoice9">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_WMAVOICE9']/*"/>	
            <unmanaged>WAVE_FORMAT_WMAVOICE9</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_WMAVOICE9</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Wmavoice10">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_WMAVOICE10']/*"/>	
            <unmanaged>WAVE_FORMAT_WMAVOICE10</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_WMAVOICE10</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.OkiAdpcm">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_OKI_ADPCM']/*"/>	
            <unmanaged>WAVE_FORMAT_OKI_ADPCM</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_OKI_ADPCM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.DviAdpcm">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_DVI_ADPCM']/*"/>	
            <unmanaged>WAVE_FORMAT_DVI_ADPCM</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_DVI_ADPCM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.ImaAdpcm">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_IMA_ADPCM']/*"/>	
            <unmanaged>WAVE_FORMAT_IMA_ADPCM</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_IMA_ADPCM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.MediaspaceAdpcm">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_MEDIASPACE_ADPCM']/*"/>	
            <unmanaged>WAVE_FORMAT_MEDIASPACE_ADPCM</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_MEDIASPACE_ADPCM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.SierraAdpcm">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_SIERRA_ADPCM']/*"/>	
            <unmanaged>WAVE_FORMAT_SIERRA_ADPCM</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_SIERRA_ADPCM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.G723Adpcm">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_G723_ADPCM']/*"/>	
            <unmanaged>WAVE_FORMAT_G723_ADPCM</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_G723_ADPCM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Digistd">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_DIGISTD']/*"/>	
            <unmanaged>WAVE_FORMAT_DIGISTD</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_DIGISTD</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Digifix">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_DIGIFIX']/*"/>	
            <unmanaged>WAVE_FORMAT_DIGIFIX</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_DIGIFIX</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.DialogicOkiAdpcm">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_DIALOGIC_OKI_ADPCM']/*"/>	
            <unmanaged>WAVE_FORMAT_DIALOGIC_OKI_ADPCM</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_DIALOGIC_OKI_ADPCM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.MediavisionAdpcm">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_MEDIAVISION_ADPCM']/*"/>	
            <unmanaged>WAVE_FORMAT_MEDIAVISION_ADPCM</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_MEDIAVISION_ADPCM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.CuCodec">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_CU_CODEC']/*"/>	
            <unmanaged>WAVE_FORMAT_CU_CODEC</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_CU_CODEC</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.HpDynVoice">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_HP_DYN_VOICE']/*"/>	
            <unmanaged>WAVE_FORMAT_HP_DYN_VOICE</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_HP_DYN_VOICE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.YamahaAdpcm">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_YAMAHA_ADPCM']/*"/>	
            <unmanaged>WAVE_FORMAT_YAMAHA_ADPCM</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_YAMAHA_ADPCM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Sonarc">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_SONARC']/*"/>	
            <unmanaged>WAVE_FORMAT_SONARC</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_SONARC</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.DspgroupTruespeech">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_DSPGROUP_TRUESPEECH']/*"/>	
            <unmanaged>WAVE_FORMAT_DSPGROUP_TRUESPEECH</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_DSPGROUP_TRUESPEECH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Echosc1">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_ECHOSC1']/*"/>	
            <unmanaged>WAVE_FORMAT_ECHOSC1</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_ECHOSC1</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.AudiofileAf36">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_AUDIOFILE_AF36']/*"/>	
            <unmanaged>WAVE_FORMAT_AUDIOFILE_AF36</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_AUDIOFILE_AF36</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Aptx">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_APTX']/*"/>	
            <unmanaged>WAVE_FORMAT_APTX</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_APTX</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.AudiofileAf10">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_AUDIOFILE_AF10']/*"/>	
            <unmanaged>WAVE_FORMAT_AUDIOFILE_AF10</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_AUDIOFILE_AF10</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Prosody1612">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_PROSODY_1612']/*"/>	
            <unmanaged>WAVE_FORMAT_PROSODY_1612</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_PROSODY_1612</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Lrc">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_LRC']/*"/>	
            <unmanaged>WAVE_FORMAT_LRC</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_LRC</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.DolbyAc2">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_DOLBY_AC2']/*"/>	
            <unmanaged>WAVE_FORMAT_DOLBY_AC2</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_DOLBY_AC2</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.DefaultGsm610">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_GSM610']/*"/>	
            <unmanaged>WAVE_FORMAT_GSM610</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_GSM610</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Msnaudio">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_MSNAUDIO']/*"/>	
            <unmanaged>WAVE_FORMAT_MSNAUDIO</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_MSNAUDIO</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.AntexAdpcme">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_ANTEX_ADPCME']/*"/>	
            <unmanaged>WAVE_FORMAT_ANTEX_ADPCME</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_ANTEX_ADPCME</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.ControlResVqlpc">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_CONTROL_RES_VQLPC']/*"/>	
            <unmanaged>WAVE_FORMAT_CONTROL_RES_VQLPC</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_CONTROL_RES_VQLPC</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Digireal">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_DIGIREAL']/*"/>	
            <unmanaged>WAVE_FORMAT_DIGIREAL</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_DIGIREAL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Digiadpcm">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_DIGIADPCM']/*"/>	
            <unmanaged>WAVE_FORMAT_DIGIADPCM</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_DIGIADPCM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.ControlResCr10">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_CONTROL_RES_CR10']/*"/>	
            <unmanaged>WAVE_FORMAT_CONTROL_RES_CR10</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_CONTROL_RES_CR10</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.NmsVbxadpcm">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_NMS_VBXADPCM']/*"/>	
            <unmanaged>WAVE_FORMAT_NMS_VBXADPCM</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_NMS_VBXADPCM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.CsImaadpcm">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_CS_IMAADPCM']/*"/>	
            <unmanaged>WAVE_FORMAT_CS_IMAADPCM</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_CS_IMAADPCM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Echosc3">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_ECHOSC3']/*"/>	
            <unmanaged>WAVE_FORMAT_ECHOSC3</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_ECHOSC3</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.RockwellAdpcm">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_ROCKWELL_ADPCM']/*"/>	
            <unmanaged>WAVE_FORMAT_ROCKWELL_ADPCM</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_ROCKWELL_ADPCM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.RockwellDigitalk">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_ROCKWELL_DIGITALK']/*"/>	
            <unmanaged>WAVE_FORMAT_ROCKWELL_DIGITALK</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_ROCKWELL_DIGITALK</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Xebec">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_XEBEC']/*"/>	
            <unmanaged>WAVE_FORMAT_XEBEC</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_XEBEC</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.G721Adpcm">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_G721_ADPCM']/*"/>	
            <unmanaged>WAVE_FORMAT_G721_ADPCM</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_G721_ADPCM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.G728Celp">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_G728_CELP']/*"/>	
            <unmanaged>WAVE_FORMAT_G728_CELP</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_G728_CELP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Msg723">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_MSG723']/*"/>	
            <unmanaged>WAVE_FORMAT_MSG723</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_MSG723</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.IntelG7231">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_INTEL_G723_1']/*"/>	
            <unmanaged>WAVE_FORMAT_INTEL_G723_1</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_INTEL_G723_1</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.IntelG729">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_INTEL_G729']/*"/>	
            <unmanaged>WAVE_FORMAT_INTEL_G729</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_INTEL_G729</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.SharpG726">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_SHARP_G726']/*"/>	
            <unmanaged>WAVE_FORMAT_SHARP_G726</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_SHARP_G726</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Mpeg">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_MPEG']/*"/>	
            <unmanaged>WAVE_FORMAT_MPEG</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_MPEG</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Rt24">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_RT24']/*"/>	
            <unmanaged>WAVE_FORMAT_RT24</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_RT24</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Pac">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_PAC']/*"/>	
            <unmanaged>WAVE_FORMAT_PAC</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_PAC</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Mpeglayer3">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_MPEGLAYER3']/*"/>	
            <unmanaged>WAVE_FORMAT_MPEGLAYER3</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_MPEGLAYER3</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.LucentG723">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_LUCENT_G723']/*"/>	
            <unmanaged>WAVE_FORMAT_LUCENT_G723</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_LUCENT_G723</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Cirrus">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_CIRRUS']/*"/>	
            <unmanaged>WAVE_FORMAT_CIRRUS</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_CIRRUS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Espcm">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_ESPCM']/*"/>	
            <unmanaged>WAVE_FORMAT_ESPCM</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_ESPCM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Voxware">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_VOXWARE']/*"/>	
            <unmanaged>WAVE_FORMAT_VOXWARE</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_VOXWARE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.CanopusAtrac">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_CANOPUS_ATRAC']/*"/>	
            <unmanaged>WAVE_FORMAT_CANOPUS_ATRAC</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_CANOPUS_ATRAC</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.G726Adpcm">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_G726_ADPCM']/*"/>	
            <unmanaged>WAVE_FORMAT_G726_ADPCM</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_G726_ADPCM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.G722Adpcm">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_G722_ADPCM']/*"/>	
            <unmanaged>WAVE_FORMAT_G722_ADPCM</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_G722_ADPCM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Dsat">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_DSAT']/*"/>	
            <unmanaged>WAVE_FORMAT_DSAT</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_DSAT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.DsatDisplay">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_DSAT_DISPLAY']/*"/>	
            <unmanaged>WAVE_FORMAT_DSAT_DISPLAY</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_DSAT_DISPLAY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.VoxwareByteAligned">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_VOXWARE_BYTE_ALIGNED']/*"/>	
            <unmanaged>WAVE_FORMAT_VOXWARE_BYTE_ALIGNED</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_VOXWARE_BYTE_ALIGNED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.VoxwareAc8">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_VOXWARE_AC8']/*"/>	
            <unmanaged>WAVE_FORMAT_VOXWARE_AC8</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_VOXWARE_AC8</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.VoxwareAc10">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_VOXWARE_AC10']/*"/>	
            <unmanaged>WAVE_FORMAT_VOXWARE_AC10</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_VOXWARE_AC10</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.VoxwareAc16">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_VOXWARE_AC16']/*"/>	
            <unmanaged>WAVE_FORMAT_VOXWARE_AC16</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_VOXWARE_AC16</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.VoxwareAc20">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_VOXWARE_AC20']/*"/>	
            <unmanaged>WAVE_FORMAT_VOXWARE_AC20</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_VOXWARE_AC20</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.VoxwareRt24">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_VOXWARE_RT24']/*"/>	
            <unmanaged>WAVE_FORMAT_VOXWARE_RT24</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_VOXWARE_RT24</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.VoxwareRt29">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_VOXWARE_RT29']/*"/>	
            <unmanaged>WAVE_FORMAT_VOXWARE_RT29</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_VOXWARE_RT29</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.VoxwareRt29hw">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_VOXWARE_RT29HW']/*"/>	
            <unmanaged>WAVE_FORMAT_VOXWARE_RT29HW</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_VOXWARE_RT29HW</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.VoxwareVr12">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_VOXWARE_VR12']/*"/>	
            <unmanaged>WAVE_FORMAT_VOXWARE_VR12</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_VOXWARE_VR12</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.VoxwareVr18">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_VOXWARE_VR18']/*"/>	
            <unmanaged>WAVE_FORMAT_VOXWARE_VR18</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_VOXWARE_VR18</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.VoxwareTq40">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_VOXWARE_TQ40']/*"/>	
            <unmanaged>WAVE_FORMAT_VOXWARE_TQ40</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_VOXWARE_TQ40</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.VoxwareSc3">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_VOXWARE_SC3']/*"/>	
            <unmanaged>WAVE_FORMAT_VOXWARE_SC3</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_VOXWARE_SC3</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.VoxwareSc31">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_VOXWARE_SC3_1']/*"/>	
            <unmanaged>WAVE_FORMAT_VOXWARE_SC3_1</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_VOXWARE_SC3_1</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Softsound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_SOFTSOUND']/*"/>	
            <unmanaged>WAVE_FORMAT_SOFTSOUND</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_SOFTSOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.VoxwareTq60">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_VOXWARE_TQ60']/*"/>	
            <unmanaged>WAVE_FORMAT_VOXWARE_TQ60</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_VOXWARE_TQ60</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Msrt24">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_MSRT24']/*"/>	
            <unmanaged>WAVE_FORMAT_MSRT24</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_MSRT24</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.G729A">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_G729A']/*"/>	
            <unmanaged>WAVE_FORMAT_G729A</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_G729A</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.MviMvi2">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_MVI_MVI2']/*"/>	
            <unmanaged>WAVE_FORMAT_MVI_MVI2</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_MVI_MVI2</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.DfG726">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_DF_G726']/*"/>	
            <unmanaged>WAVE_FORMAT_DF_G726</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_DF_G726</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.DfGsm610">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_DF_GSM610']/*"/>	
            <unmanaged>WAVE_FORMAT_DF_GSM610</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_DF_GSM610</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Isiaudio">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_ISIAUDIO']/*"/>	
            <unmanaged>WAVE_FORMAT_ISIAUDIO</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_ISIAUDIO</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Onlive">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_ONLIVE']/*"/>	
            <unmanaged>WAVE_FORMAT_ONLIVE</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_ONLIVE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.MultitudeFtSx20">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_MULTITUDE_FT_SX20']/*"/>	
            <unmanaged>WAVE_FORMAT_MULTITUDE_FT_SX20</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_MULTITUDE_FT_SX20</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.InfocomItsG721Adpcm">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_INFOCOM_ITS_G721_ADPCM']/*"/>	
            <unmanaged>WAVE_FORMAT_INFOCOM_ITS_G721_ADPCM</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_INFOCOM_ITS_G721_ADPCM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.ConvediaG729">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_CONVEDIA_G729']/*"/>	
            <unmanaged>WAVE_FORMAT_CONVEDIA_G729</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_CONVEDIA_G729</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Congruency">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_CONGRUENCY']/*"/>	
            <unmanaged>WAVE_FORMAT_CONGRUENCY</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_CONGRUENCY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Sbc24">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_SBC24']/*"/>	
            <unmanaged>WAVE_FORMAT_SBC24</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_SBC24</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.DolbyAc3Spdif">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_DOLBY_AC3_SPDIF']/*"/>	
            <unmanaged>WAVE_FORMAT_DOLBY_AC3_SPDIF</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_DOLBY_AC3_SPDIF</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.MediasonicG723">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_MEDIASONIC_G723']/*"/>	
            <unmanaged>WAVE_FORMAT_MEDIASONIC_G723</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_MEDIASONIC_G723</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Prosody8kbps">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_PROSODY_8KBPS']/*"/>	
            <unmanaged>WAVE_FORMAT_PROSODY_8KBPS</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_PROSODY_8KBPS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.ZyxelAdpcm">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_ZYXEL_ADPCM']/*"/>	
            <unmanaged>WAVE_FORMAT_ZYXEL_ADPCM</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_ZYXEL_ADPCM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.PhilipsLpcbb">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_PHILIPS_LPCBB']/*"/>	
            <unmanaged>WAVE_FORMAT_PHILIPS_LPCBB</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_PHILIPS_LPCBB</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Packed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_PACKED']/*"/>	
            <unmanaged>WAVE_FORMAT_PACKED</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_PACKED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.MaldenPhonytalk">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_MALDEN_PHONYTALK']/*"/>	
            <unmanaged>WAVE_FORMAT_MALDEN_PHONYTALK</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_MALDEN_PHONYTALK</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.RacalRecorderGsm">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_RACAL_RECORDER_GSM']/*"/>	
            <unmanaged>WAVE_FORMAT_RACAL_RECORDER_GSM</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_RACAL_RECORDER_GSM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.RacalRecorderG720A">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_RACAL_RECORDER_G720_A']/*"/>	
            <unmanaged>WAVE_FORMAT_RACAL_RECORDER_G720_A</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_RACAL_RECORDER_G720_A</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.RacalRecorderG7231">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_RACAL_RECORDER_G723_1']/*"/>	
            <unmanaged>WAVE_FORMAT_RACAL_RECORDER_G723_1</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_RACAL_RECORDER_G723_1</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.RacalRecorderTetraAcelp">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_RACAL_RECORDER_TETRA_ACELP']/*"/>	
            <unmanaged>WAVE_FORMAT_RACAL_RECORDER_TETRA_ACELP</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_RACAL_RECORDER_TETRA_ACELP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.NecAac">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_NEC_AAC']/*"/>	
            <unmanaged>WAVE_FORMAT_NEC_AAC</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_NEC_AAC</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.RawAac1">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_RAW_AAC1']/*"/>	
            <unmanaged>WAVE_FORMAT_RAW_AAC1</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_RAW_AAC1</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.RhetorexAdpcm">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_RHETOREX_ADPCM']/*"/>	
            <unmanaged>WAVE_FORMAT_RHETOREX_ADPCM</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_RHETOREX_ADPCM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Irat">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_IRAT']/*"/>	
            <unmanaged>WAVE_FORMAT_IRAT</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_IRAT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.VivoG723">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_VIVO_G723']/*"/>	
            <unmanaged>WAVE_FORMAT_VIVO_G723</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_VIVO_G723</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.VivoSiren">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_VIVO_SIREN']/*"/>	
            <unmanaged>WAVE_FORMAT_VIVO_SIREN</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_VIVO_SIREN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.PhilipsCelp">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_PHILIPS_CELP']/*"/>	
            <unmanaged>WAVE_FORMAT_PHILIPS_CELP</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_PHILIPS_CELP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.PhilipsGrundig">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_PHILIPS_GRUNDIG']/*"/>	
            <unmanaged>WAVE_FORMAT_PHILIPS_GRUNDIG</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_PHILIPS_GRUNDIG</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.DigitalG723">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_DIGITAL_G723']/*"/>	
            <unmanaged>WAVE_FORMAT_DIGITAL_G723</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_DIGITAL_G723</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.SanyoLdAdpcm">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_SANYO_LD_ADPCM']/*"/>	
            <unmanaged>WAVE_FORMAT_SANYO_LD_ADPCM</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_SANYO_LD_ADPCM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.SiprolabAceplnet">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_SIPROLAB_ACEPLNET']/*"/>	
            <unmanaged>WAVE_FORMAT_SIPROLAB_ACEPLNET</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_SIPROLAB_ACEPLNET</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.SiprolabAcelp4800">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_SIPROLAB_ACELP4800']/*"/>	
            <unmanaged>WAVE_FORMAT_SIPROLAB_ACELP4800</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_SIPROLAB_ACELP4800</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.SiprolabAcelp8v3">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_SIPROLAB_ACELP8V3']/*"/>	
            <unmanaged>WAVE_FORMAT_SIPROLAB_ACELP8V3</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_SIPROLAB_ACELP8V3</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.SiprolabG729">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_SIPROLAB_G729']/*"/>	
            <unmanaged>WAVE_FORMAT_SIPROLAB_G729</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_SIPROLAB_G729</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.SiprolabG729A">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_SIPROLAB_G729A']/*"/>	
            <unmanaged>WAVE_FORMAT_SIPROLAB_G729A</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_SIPROLAB_G729A</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.SiprolabKelvin">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_SIPROLAB_KELVIN']/*"/>	
            <unmanaged>WAVE_FORMAT_SIPROLAB_KELVIN</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_SIPROLAB_KELVIN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.VoiceageAmr">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_VOICEAGE_AMR']/*"/>	
            <unmanaged>WAVE_FORMAT_VOICEAGE_AMR</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_VOICEAGE_AMR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.G726ADPCM">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_G726ADPCM']/*"/>	
            <unmanaged>WAVE_FORMAT_G726ADPCM</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_G726ADPCM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.DictaphoneCelp68">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_DICTAPHONE_CELP68']/*"/>	
            <unmanaged>WAVE_FORMAT_DICTAPHONE_CELP68</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_DICTAPHONE_CELP68</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.DictaphoneCelp54">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_DICTAPHONE_CELP54']/*"/>	
            <unmanaged>WAVE_FORMAT_DICTAPHONE_CELP54</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_DICTAPHONE_CELP54</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.QualcommPurevoice">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_QUALCOMM_PUREVOICE']/*"/>	
            <unmanaged>WAVE_FORMAT_QUALCOMM_PUREVOICE</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_QUALCOMM_PUREVOICE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.QualcommHalfrate">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_QUALCOMM_HALFRATE']/*"/>	
            <unmanaged>WAVE_FORMAT_QUALCOMM_HALFRATE</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_QUALCOMM_HALFRATE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Tubgsm">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_TUBGSM']/*"/>	
            <unmanaged>WAVE_FORMAT_TUBGSM</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_TUBGSM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Msaudio1">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_MSAUDIO1']/*"/>	
            <unmanaged>WAVE_FORMAT_MSAUDIO1</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_MSAUDIO1</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Wmaudio2">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_WMAUDIO2']/*"/>	
            <unmanaged>WAVE_FORMAT_WMAUDIO2</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_WMAUDIO2</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Wmaudio3">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_WMAUDIO3']/*"/>	
            <unmanaged>WAVE_FORMAT_WMAUDIO3</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_WMAUDIO3</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.WmaudioLossless">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_WMAUDIO_LOSSLESS']/*"/>	
            <unmanaged>WAVE_FORMAT_WMAUDIO_LOSSLESS</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_WMAUDIO_LOSSLESS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Wmaspdif">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_WMASPDIF']/*"/>	
            <unmanaged>WAVE_FORMAT_WMASPDIF</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_WMASPDIF</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.UnisysNapAdpcm">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_UNISYS_NAP_ADPCM']/*"/>	
            <unmanaged>WAVE_FORMAT_UNISYS_NAP_ADPCM</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_UNISYS_NAP_ADPCM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.UnisysNapUlaw">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_UNISYS_NAP_ULAW']/*"/>	
            <unmanaged>WAVE_FORMAT_UNISYS_NAP_ULAW</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_UNISYS_NAP_ULAW</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.UnisysNapAlaw">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_UNISYS_NAP_ALAW']/*"/>	
            <unmanaged>WAVE_FORMAT_UNISYS_NAP_ALAW</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_UNISYS_NAP_ALAW</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.UnisysNap16k">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_UNISYS_NAP_16K']/*"/>	
            <unmanaged>WAVE_FORMAT_UNISYS_NAP_16K</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_UNISYS_NAP_16K</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.SycomAcmSyc008">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_SYCOM_ACM_SYC008']/*"/>	
            <unmanaged>WAVE_FORMAT_SYCOM_ACM_SYC008</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_SYCOM_ACM_SYC008</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.SycomAcmSyc701G726L">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_SYCOM_ACM_SYC701_G726L']/*"/>	
            <unmanaged>WAVE_FORMAT_SYCOM_ACM_SYC701_G726L</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_SYCOM_ACM_SYC701_G726L</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.SycomAcmSyc701Celp54">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_SYCOM_ACM_SYC701_CELP54']/*"/>	
            <unmanaged>WAVE_FORMAT_SYCOM_ACM_SYC701_CELP54</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_SYCOM_ACM_SYC701_CELP54</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.SycomAcmSyc701Celp68">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_SYCOM_ACM_SYC701_CELP68']/*"/>	
            <unmanaged>WAVE_FORMAT_SYCOM_ACM_SYC701_CELP68</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_SYCOM_ACM_SYC701_CELP68</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.KnowledgeAdventureAdpcm">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_KNOWLEDGE_ADVENTURE_ADPCM']/*"/>	
            <unmanaged>WAVE_FORMAT_KNOWLEDGE_ADVENTURE_ADPCM</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_KNOWLEDGE_ADVENTURE_ADPCM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.FraunhoferIisMpeg2Aac">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_FRAUNHOFER_IIS_MPEG2_AAC']/*"/>	
            <unmanaged>WAVE_FORMAT_FRAUNHOFER_IIS_MPEG2_AAC</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_FRAUNHOFER_IIS_MPEG2_AAC</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.DtsDs">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_DTS_DS']/*"/>	
            <unmanaged>WAVE_FORMAT_DTS_DS</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_DTS_DS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.CreativeAdpcm">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_CREATIVE_ADPCM']/*"/>	
            <unmanaged>WAVE_FORMAT_CREATIVE_ADPCM</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_CREATIVE_ADPCM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.CreativeFastspeech8">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_CREATIVE_FASTSPEECH8']/*"/>	
            <unmanaged>WAVE_FORMAT_CREATIVE_FASTSPEECH8</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_CREATIVE_FASTSPEECH8</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.CreativeFastspeech10">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_CREATIVE_FASTSPEECH10']/*"/>	
            <unmanaged>WAVE_FORMAT_CREATIVE_FASTSPEECH10</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_CREATIVE_FASTSPEECH10</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.UherAdpcm">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_UHER_ADPCM']/*"/>	
            <unmanaged>WAVE_FORMAT_UHER_ADPCM</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_UHER_ADPCM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.UleadDvAudio">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_ULEAD_DV_AUDIO']/*"/>	
            <unmanaged>WAVE_FORMAT_ULEAD_DV_AUDIO</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_ULEAD_DV_AUDIO</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.UleadDvAudio1">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_ULEAD_DV_AUDIO_1']/*"/>	
            <unmanaged>WAVE_FORMAT_ULEAD_DV_AUDIO_1</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_ULEAD_DV_AUDIO_1</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Quarterdeck">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_QUARTERDECK']/*"/>	
            <unmanaged>WAVE_FORMAT_QUARTERDECK</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_QUARTERDECK</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.IlinkVc">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_ILINK_VC']/*"/>	
            <unmanaged>WAVE_FORMAT_ILINK_VC</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_ILINK_VC</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.RawSport">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_RAW_SPORT']/*"/>	
            <unmanaged>WAVE_FORMAT_RAW_SPORT</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_RAW_SPORT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.EsstAc3">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_ESST_AC3']/*"/>	
            <unmanaged>WAVE_FORMAT_ESST_AC3</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_ESST_AC3</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.GenericPassthru">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_GENERIC_PASSTHRU']/*"/>	
            <unmanaged>WAVE_FORMAT_GENERIC_PASSTHRU</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_GENERIC_PASSTHRU</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.IpiHsx">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_IPI_HSX']/*"/>	
            <unmanaged>WAVE_FORMAT_IPI_HSX</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_IPI_HSX</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.IpiRpelp">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_IPI_RPELP']/*"/>	
            <unmanaged>WAVE_FORMAT_IPI_RPELP</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_IPI_RPELP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Cs2">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_CS2']/*"/>	
            <unmanaged>WAVE_FORMAT_CS2</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_CS2</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.SonyScx">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_SONY_SCX']/*"/>	
            <unmanaged>WAVE_FORMAT_SONY_SCX</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_SONY_SCX</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.SonyScy">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_SONY_SCY']/*"/>	
            <unmanaged>WAVE_FORMAT_SONY_SCY</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_SONY_SCY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.SonyAtrac3">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_SONY_ATRAC3']/*"/>	
            <unmanaged>WAVE_FORMAT_SONY_ATRAC3</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_SONY_ATRAC3</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.SonySpc">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_SONY_SPC']/*"/>	
            <unmanaged>WAVE_FORMAT_SONY_SPC</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_SONY_SPC</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.TelumAudio">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_TELUM_AUDIO']/*"/>	
            <unmanaged>WAVE_FORMAT_TELUM_AUDIO</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_TELUM_AUDIO</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.TelumInputAssemblyAudio">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_TELUM_IA_AUDIO']/*"/>	
            <unmanaged>WAVE_FORMAT_TELUM_IA_AUDIO</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_TELUM_IA_AUDIO</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.NorcomVoiceSystemsAdpcm">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_NORCOM_VOICE_SYSTEMS_ADPCM']/*"/>	
            <unmanaged>WAVE_FORMAT_NORCOM_VOICE_SYSTEMS_ADPCM</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_NORCOM_VOICE_SYSTEMS_ADPCM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.FmTownsSnd">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_FM_TOWNS_SND']/*"/>	
            <unmanaged>WAVE_FORMAT_FM_TOWNS_SND</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_FM_TOWNS_SND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Micronas">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_MICRONAS']/*"/>	
            <unmanaged>WAVE_FORMAT_MICRONAS</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_MICRONAS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.MicronasCelp833">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_MICRONAS_CELP833']/*"/>	
            <unmanaged>WAVE_FORMAT_MICRONAS_CELP833</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_MICRONAS_CELP833</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.BtvDigital">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_BTV_DIGITAL']/*"/>	
            <unmanaged>WAVE_FORMAT_BTV_DIGITAL</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_BTV_DIGITAL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.IntelMusicCoder">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_INTEL_MUSIC_CODER']/*"/>	
            <unmanaged>WAVE_FORMAT_INTEL_MUSIC_CODER</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_INTEL_MUSIC_CODER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.IndeoAudio">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_INDEO_AUDIO']/*"/>	
            <unmanaged>WAVE_FORMAT_INDEO_AUDIO</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_INDEO_AUDIO</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.QdesignMusic">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_QDESIGN_MUSIC']/*"/>	
            <unmanaged>WAVE_FORMAT_QDESIGN_MUSIC</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_QDESIGN_MUSIC</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.On2Vp7Audio">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_ON2_VP7_AUDIO']/*"/>	
            <unmanaged>WAVE_FORMAT_ON2_VP7_AUDIO</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_ON2_VP7_AUDIO</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.On2Vp6Audio">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_ON2_VP6_AUDIO']/*"/>	
            <unmanaged>WAVE_FORMAT_ON2_VP6_AUDIO</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_ON2_VP6_AUDIO</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.VmeVmpcm">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_VME_VMPCM']/*"/>	
            <unmanaged>WAVE_FORMAT_VME_VMPCM</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_VME_VMPCM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Tpc">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_TPC']/*"/>	
            <unmanaged>WAVE_FORMAT_TPC</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_TPC</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.LightwaveLossless">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_LIGHTWAVE_LOSSLESS']/*"/>	
            <unmanaged>WAVE_FORMAT_LIGHTWAVE_LOSSLESS</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_LIGHTWAVE_LOSSLESS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Oligsm">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_OLIGSM']/*"/>	
            <unmanaged>WAVE_FORMAT_OLIGSM</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_OLIGSM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Oliadpcm">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_OLIADPCM']/*"/>	
            <unmanaged>WAVE_FORMAT_OLIADPCM</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_OLIADPCM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Olicelp">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_OLICELP']/*"/>	
            <unmanaged>WAVE_FORMAT_OLICELP</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_OLICELP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Olisbc">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_OLISBC']/*"/>	
            <unmanaged>WAVE_FORMAT_OLISBC</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_OLISBC</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Oliopr">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_OLIOPR']/*"/>	
            <unmanaged>WAVE_FORMAT_OLIOPR</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_OLIOPR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.LhCodec">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_LH_CODEC']/*"/>	
            <unmanaged>WAVE_FORMAT_LH_CODEC</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_LH_CODEC</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.LhCodecCelp">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_LH_CODEC_CELP']/*"/>	
            <unmanaged>WAVE_FORMAT_LH_CODEC_CELP</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_LH_CODEC_CELP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.LhCodecSbc8">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_LH_CODEC_SBC8']/*"/>	
            <unmanaged>WAVE_FORMAT_LH_CODEC_SBC8</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_LH_CODEC_SBC8</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.LhCodecSbc12">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_LH_CODEC_SBC12']/*"/>	
            <unmanaged>WAVE_FORMAT_LH_CODEC_SBC12</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_LH_CODEC_SBC12</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.LhCodecSbc16">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_LH_CODEC_SBC16']/*"/>	
            <unmanaged>WAVE_FORMAT_LH_CODEC_SBC16</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_LH_CODEC_SBC16</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Norris">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_NORRIS']/*"/>	
            <unmanaged>WAVE_FORMAT_NORRIS</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_NORRIS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Isiaudio2">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_ISIAUDIO_2']/*"/>	
            <unmanaged>WAVE_FORMAT_ISIAUDIO_2</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_ISIAUDIO_2</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.SoundspaceMusicompress">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_SOUNDSPACE_MUSICOMPRESS']/*"/>	
            <unmanaged>WAVE_FORMAT_SOUNDSPACE_MUSICOMPRESS</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_SOUNDSPACE_MUSICOMPRESS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.MpegAdtsAac">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_MPEG_ADTS_AAC']/*"/>	
            <unmanaged>WAVE_FORMAT_MPEG_ADTS_AAC</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_MPEG_ADTS_AAC</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.MpegRawAac">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_MPEG_RAW_AAC']/*"/>	
            <unmanaged>WAVE_FORMAT_MPEG_RAW_AAC</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_MPEG_RAW_AAC</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.MpegLoas">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_MPEG_LOAS']/*"/>	
            <unmanaged>WAVE_FORMAT_MPEG_LOAS</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_MPEG_LOAS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.NokiaMpegAdtsAac">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_NOKIA_MPEG_ADTS_AAC']/*"/>	
            <unmanaged>WAVE_FORMAT_NOKIA_MPEG_ADTS_AAC</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_NOKIA_MPEG_ADTS_AAC</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.NokiaMpegRawAac">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_NOKIA_MPEG_RAW_AAC']/*"/>	
            <unmanaged>WAVE_FORMAT_NOKIA_MPEG_RAW_AAC</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_NOKIA_MPEG_RAW_AAC</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.VodafoneMpegAdtsAac">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_VODAFONE_MPEG_ADTS_AAC']/*"/>	
            <unmanaged>WAVE_FORMAT_VODAFONE_MPEG_ADTS_AAC</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_VODAFONE_MPEG_ADTS_AAC</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.VodafoneMpegRawAac">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_VODAFONE_MPEG_RAW_AAC']/*"/>	
            <unmanaged>WAVE_FORMAT_VODAFONE_MPEG_RAW_AAC</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_VODAFONE_MPEG_RAW_AAC</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.MpegHeaac">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_MPEG_HEAAC']/*"/>	
            <unmanaged>WAVE_FORMAT_MPEG_HEAAC</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_MPEG_HEAAC</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.VoxwareRt24Speech">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_VOXWARE_RT24_SPEECH']/*"/>	
            <unmanaged>WAVE_FORMAT_VOXWARE_RT24_SPEECH</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_VOXWARE_RT24_SPEECH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.SonicfoundryLossless">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_SONICFOUNDRY_LOSSLESS']/*"/>	
            <unmanaged>WAVE_FORMAT_SONICFOUNDRY_LOSSLESS</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_SONICFOUNDRY_LOSSLESS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.InningsTelecomAdpcm">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_INNINGS_TELECOM_ADPCM']/*"/>	
            <unmanaged>WAVE_FORMAT_INNINGS_TELECOM_ADPCM</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_INNINGS_TELECOM_ADPCM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.LucentSx8300p">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_LUCENT_SX8300P']/*"/>	
            <unmanaged>WAVE_FORMAT_LUCENT_SX8300P</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_LUCENT_SX8300P</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.LucentSx5363s">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_LUCENT_SX5363S']/*"/>	
            <unmanaged>WAVE_FORMAT_LUCENT_SX5363S</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_LUCENT_SX5363S</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Cuseeme">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_CUSEEME']/*"/>	
            <unmanaged>WAVE_FORMAT_CUSEEME</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_CUSEEME</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.NtcsoftAlf2cmAcm">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_NTCSOFT_ALF2CM_ACM']/*"/>	
            <unmanaged>WAVE_FORMAT_NTCSOFT_ALF2CM_ACM</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_NTCSOFT_ALF2CM_ACM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Dvm">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_DVM']/*"/>	
            <unmanaged>WAVE_FORMAT_DVM</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_DVM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Dts2">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_DTS2']/*"/>	
            <unmanaged>WAVE_FORMAT_DTS2</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_DTS2</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Makeavis">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_MAKEAVIS']/*"/>	
            <unmanaged>WAVE_FORMAT_MAKEAVIS</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_MAKEAVIS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.DivioMpeg4Aac">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_DIVIO_MPEG4_AAC']/*"/>	
            <unmanaged>WAVE_FORMAT_DIVIO_MPEG4_AAC</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_DIVIO_MPEG4_AAC</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.NokiaAdaptiveMultirate">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_NOKIA_ADAPTIVE_MULTIRATE']/*"/>	
            <unmanaged>WAVE_FORMAT_NOKIA_ADAPTIVE_MULTIRATE</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_NOKIA_ADAPTIVE_MULTIRATE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.DivioG726">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_DIVIO_G726']/*"/>	
            <unmanaged>WAVE_FORMAT_DIVIO_G726</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_DIVIO_G726</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.LeadSpeech">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_LEAD_SPEECH']/*"/>	
            <unmanaged>WAVE_FORMAT_LEAD_SPEECH</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_LEAD_SPEECH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.LeadVorbis">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_LEAD_VORBIS']/*"/>	
            <unmanaged>WAVE_FORMAT_LEAD_VORBIS</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_LEAD_VORBIS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.WavpackAudio">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_WAVPACK_AUDIO']/*"/>	
            <unmanaged>WAVE_FORMAT_WAVPACK_AUDIO</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_WAVPACK_AUDIO</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.OggVorbisMode1">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_OGG_VORBIS_MODE_1']/*"/>	
            <unmanaged>WAVE_FORMAT_OGG_VORBIS_MODE_1</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_OGG_VORBIS_MODE_1</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.OggVorbisMode2">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_OGG_VORBIS_MODE_2']/*"/>	
            <unmanaged>WAVE_FORMAT_OGG_VORBIS_MODE_2</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_OGG_VORBIS_MODE_2</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.OggVorbisMode3">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_OGG_VORBIS_MODE_3']/*"/>	
            <unmanaged>WAVE_FORMAT_OGG_VORBIS_MODE_3</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_OGG_VORBIS_MODE_3</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.OggVorbisMode1Plus">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_OGG_VORBIS_MODE_1_PLUS']/*"/>	
            <unmanaged>WAVE_FORMAT_OGG_VORBIS_MODE_1_PLUS</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_OGG_VORBIS_MODE_1_PLUS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.OggVorbisMode2Plus">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_OGG_VORBIS_MODE_2_PLUS']/*"/>	
            <unmanaged>WAVE_FORMAT_OGG_VORBIS_MODE_2_PLUS</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_OGG_VORBIS_MODE_2_PLUS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.OggVorbisMode3Plus">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_OGG_VORBIS_MODE_3_PLUS']/*"/>	
            <unmanaged>WAVE_FORMAT_OGG_VORBIS_MODE_3_PLUS</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_OGG_VORBIS_MODE_3_PLUS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Tag3COMNbx">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_3COM_NBX']/*"/>	
            <unmanaged>WAVE_FORMAT_3COM_NBX</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_3COM_NBX</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.FaadAac">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_FAAD_AAC']/*"/>	
            <unmanaged>WAVE_FORMAT_FAAD_AAC</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_FAAD_AAC</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.GsmAmrCbr">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_GSM_AMR_CBR']/*"/>	
            <unmanaged>WAVE_FORMAT_GSM_AMR_CBR</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_GSM_AMR_CBR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.GsmAmrVbrSid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_GSM_AMR_VBR_SID']/*"/>	
            <unmanaged>WAVE_FORMAT_GSM_AMR_VBR_SID</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_GSM_AMR_VBR_SID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.ComverseInfosysG7231">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_COMVERSE_INFOSYS_G723_1']/*"/>	
            <unmanaged>WAVE_FORMAT_COMVERSE_INFOSYS_G723_1</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_COMVERSE_INFOSYS_G723_1</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.ComverseInfosysAvqsbc">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_COMVERSE_INFOSYS_AVQSBC']/*"/>	
            <unmanaged>WAVE_FORMAT_COMVERSE_INFOSYS_AVQSBC</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_COMVERSE_INFOSYS_AVQSBC</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.ComverseInfosysSbc">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_COMVERSE_INFOSYS_SBC']/*"/>	
            <unmanaged>WAVE_FORMAT_COMVERSE_INFOSYS_SBC</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_COMVERSE_INFOSYS_SBC</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.SymbolG729A">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_SYMBOL_G729_A']/*"/>	
            <unmanaged>WAVE_FORMAT_SYMBOL_G729_A</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_SYMBOL_G729_A</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.VoiceageAmrWb">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_VOICEAGE_AMR_WB']/*"/>	
            <unmanaged>WAVE_FORMAT_VOICEAGE_AMR_WB</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_VOICEAGE_AMR_WB</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.IngenientG726">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_INGENIENT_G726']/*"/>	
            <unmanaged>WAVE_FORMAT_INGENIENT_G726</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_INGENIENT_G726</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Mpeg4Aac">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_MPEG4_AAC']/*"/>	
            <unmanaged>WAVE_FORMAT_MPEG4_AAC</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_MPEG4_AAC</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.EncoreG726">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_ENCORE_G726']/*"/>	
            <unmanaged>WAVE_FORMAT_ENCORE_G726</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_ENCORE_G726</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.ZollAsao">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_ZOLL_ASAO']/*"/>	
            <unmanaged>WAVE_FORMAT_ZOLL_ASAO</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_ZOLL_ASAO</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.SpeexVoice">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_SPEEX_VOICE']/*"/>	
            <unmanaged>WAVE_FORMAT_SPEEX_VOICE</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_SPEEX_VOICE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.VianixMasc">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_VIANIX_MASC']/*"/>	
            <unmanaged>WAVE_FORMAT_VIANIX_MASC</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_VIANIX_MASC</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Wm9SpectrumAnalyzer">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_WM9_SPECTRUM_ANALYZER']/*"/>	
            <unmanaged>WAVE_FORMAT_WM9_SPECTRUM_ANALYZER</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_WM9_SPECTRUM_ANALYZER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.WmfSpectrumAnayzer">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_WMF_SPECTRUM_ANAYZER']/*"/>	
            <unmanaged>WAVE_FORMAT_WMF_SPECTRUM_ANAYZER</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_WMF_SPECTRUM_ANAYZER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Gsm610">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_GSM_610']/*"/>	
            <unmanaged>WAVE_FORMAT_GSM_610</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_GSM_610</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Gsm620">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_GSM_620']/*"/>	
            <unmanaged>WAVE_FORMAT_GSM_620</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_GSM_620</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Gsm660">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_GSM_660']/*"/>	
            <unmanaged>WAVE_FORMAT_GSM_660</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_GSM_660</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Gsm690">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_GSM_690']/*"/>	
            <unmanaged>WAVE_FORMAT_GSM_690</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_GSM_690</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.GsmAdaptiveMultirateWb">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_GSM_ADAPTIVE_MULTIRATE_WB']/*"/>	
            <unmanaged>WAVE_FORMAT_GSM_ADAPTIVE_MULTIRATE_WB</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_GSM_ADAPTIVE_MULTIRATE_WB</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.PolycomG722">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_POLYCOM_G722']/*"/>	
            <unmanaged>WAVE_FORMAT_POLYCOM_G722</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_POLYCOM_G722</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.PolycomG728">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_POLYCOM_G728']/*"/>	
            <unmanaged>WAVE_FORMAT_POLYCOM_G728</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_POLYCOM_G728</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.PolycomG729A">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_POLYCOM_G729_A']/*"/>	
            <unmanaged>WAVE_FORMAT_POLYCOM_G729_A</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_POLYCOM_G729_A</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.PolycomSiren">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_POLYCOM_SIREN']/*"/>	
            <unmanaged>WAVE_FORMAT_POLYCOM_SIREN</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_POLYCOM_SIREN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.GlobalIpIlbc">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_GLOBAL_IP_ILBC']/*"/>	
            <unmanaged>WAVE_FORMAT_GLOBAL_IP_ILBC</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_GLOBAL_IP_ILBC</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.RadiotimeTimeShiftRadio">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_RADIOTIME_TIME_SHIFT_RADIO']/*"/>	
            <unmanaged>WAVE_FORMAT_RADIOTIME_TIME_SHIFT_RADIO</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_RADIOTIME_TIME_SHIFT_RADIO</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.NiceAca">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_NICE_ACA']/*"/>	
            <unmanaged>WAVE_FORMAT_NICE_ACA</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_NICE_ACA</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.NiceAdpcm">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_NICE_ADPCM']/*"/>	
            <unmanaged>WAVE_FORMAT_NICE_ADPCM</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_NICE_ADPCM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.VocordG721">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_VOCORD_G721']/*"/>	
            <unmanaged>WAVE_FORMAT_VOCORD_G721</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_VOCORD_G721</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.VocordG726">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_VOCORD_G726']/*"/>	
            <unmanaged>WAVE_FORMAT_VOCORD_G726</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_VOCORD_G726</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.VocordG7221">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_VOCORD_G722_1']/*"/>	
            <unmanaged>WAVE_FORMAT_VOCORD_G722_1</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_VOCORD_G722_1</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.VocordG728">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_VOCORD_G728']/*"/>	
            <unmanaged>WAVE_FORMAT_VOCORD_G728</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_VOCORD_G728</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.VocordG729">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_VOCORD_G729']/*"/>	
            <unmanaged>WAVE_FORMAT_VOCORD_G729</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_VOCORD_G729</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.VocordG729A">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_VOCORD_G729_A']/*"/>	
            <unmanaged>WAVE_FORMAT_VOCORD_G729_A</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_VOCORD_G729_A</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.VocordG7231">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_VOCORD_G723_1']/*"/>	
            <unmanaged>WAVE_FORMAT_VOCORD_G723_1</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_VOCORD_G723_1</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.VocordLbc">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_VOCORD_LBC']/*"/>	
            <unmanaged>WAVE_FORMAT_VOCORD_LBC</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_VOCORD_LBC</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.NiceG728">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_NICE_G728']/*"/>	
            <unmanaged>WAVE_FORMAT_NICE_G728</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_NICE_G728</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.FraceTelecomG729">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_FRACE_TELECOM_G729']/*"/>	
            <unmanaged>WAVE_FORMAT_FRACE_TELECOM_G729</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_FRACE_TELECOM_G729</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Codian">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_CODIAN']/*"/>	
            <unmanaged>WAVE_FORMAT_CODIAN</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_CODIAN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Flac">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_FLAC']/*"/>	
            <unmanaged>WAVE_FORMAT_FLAC</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_FLAC</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Extensible">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_EXTENSIBLE']/*"/>	
            <unmanaged>WAVE_FORMAT_EXTENSIBLE</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_EXTENSIBLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Development">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_DEVELOPMENT']/*"/>	
            <unmanaged>WAVE_FORMAT_DEVELOPMENT</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_DEVELOPMENT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatEncoding.Pcm">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='WAVE_FORMAT_PCM']/*"/>	
            <unmanaged>WAVE_FORMAT_PCM</unmanaged>	
            <unmanaged-short>WAVE_FORMAT_PCM</unmanaged-short>	
        </member>
        <member name="T:SharpDX.Win32.CommitFlags">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='STGC']/*"/>	
            <unmanaged>STGC</unmanaged>	
            <unmanaged-short>STGC</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.CommitFlags.Default">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='STGC_DEFAULT']/*"/>	
            <unmanaged>STGC_DEFAULT</unmanaged>	
            <unmanaged-short>STGC_DEFAULT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.CommitFlags.Overwrite">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='STGC_OVERWRITE']/*"/>	
            <unmanaged>STGC_OVERWRITE</unmanaged>	
            <unmanaged-short>STGC_OVERWRITE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.CommitFlags.OnlyCurrent">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='STGC_ONLYIFCURRENT']/*"/>	
            <unmanaged>STGC_ONLYIFCURRENT</unmanaged>	
            <unmanaged-short>STGC_ONLYIFCURRENT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.CommitFlags.DangerouslyCommitMerelyToDiskCache">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='STGC_DANGEROUSLYCOMMITMERELYTODISKCACHE']/*"/>	
            <unmanaged>STGC_DANGEROUSLYCOMMITMERELYTODISKCACHE</unmanaged>	
            <unmanaged-short>STGC_DANGEROUSLYCOMMITMERELYTODISKCACHE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.CommitFlags.Consolidate">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='STGC_CONSOLIDATE']/*"/>	
            <unmanaged>STGC_CONSOLIDATE</unmanaged>	
            <unmanaged-short>STGC_CONSOLIDATE</unmanaged-short>	
        </member>
        <member name="T:SharpDX.Win32.ErrorCode">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='SHARPDX_ERRORCODE']/*"/>	
            <unmanaged>SHARPDX_ERRORCODE</unmanaged>	
            <unmanaged-short>SHARPDX_ERRORCODE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.Success">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SUCCESS']/*"/>	
            <unmanaged>ERROR_SUCCESS</unmanaged>	
            <unmanaged-short>ERROR_SUCCESS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidFunction">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_FUNCTION']/*"/>	
            <unmanaged>ERROR_INVALID_FUNCTION</unmanaged>	
            <unmanaged-short>ERROR_INVALID_FUNCTION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FileNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FILE_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_FILE_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_FILE_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PathNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PATH_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_PATH_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_PATH_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TooManyOpenFiles">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TOO_MANY_OPEN_FILES']/*"/>	
            <unmanaged>ERROR_TOO_MANY_OPEN_FILES</unmanaged>	
            <unmanaged-short>ERROR_TOO_MANY_OPEN_FILES</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.AccessDenied">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_ACCESS_DENIED']/*"/>	
            <unmanaged>ERROR_ACCESS_DENIED</unmanaged>	
            <unmanaged-short>ERROR_ACCESS_DENIED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidHandle">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_HANDLE']/*"/>	
            <unmanaged>ERROR_INVALID_HANDLE</unmanaged>	
            <unmanaged-short>ERROR_INVALID_HANDLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ArenaTrashed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_ARENA_TRASHED']/*"/>	
            <unmanaged>ERROR_ARENA_TRASHED</unmanaged>	
            <unmanaged-short>ERROR_ARENA_TRASHED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NotEnoughMemory">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NOT_ENOUGH_MEMORY']/*"/>	
            <unmanaged>ERROR_NOT_ENOUGH_MEMORY</unmanaged>	
            <unmanaged-short>ERROR_NOT_ENOUGH_MEMORY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidBlock">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_BLOCK']/*"/>	
            <unmanaged>ERROR_INVALID_BLOCK</unmanaged>	
            <unmanaged-short>ERROR_INVALID_BLOCK</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.BadEnvironment">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_BAD_ENVIRONMENT']/*"/>	
            <unmanaged>ERROR_BAD_ENVIRONMENT</unmanaged>	
            <unmanaged-short>ERROR_BAD_ENVIRONMENT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.BadFormat">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_BAD_FORMAT']/*"/>	
            <unmanaged>ERROR_BAD_FORMAT</unmanaged>	
            <unmanaged-short>ERROR_BAD_FORMAT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidAccess">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_ACCESS']/*"/>	
            <unmanaged>ERROR_INVALID_ACCESS</unmanaged>	
            <unmanaged-short>ERROR_INVALID_ACCESS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidData">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_DATA']/*"/>	
            <unmanaged>ERROR_INVALID_DATA</unmanaged>	
            <unmanaged-short>ERROR_INVALID_DATA</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.Outofmemory">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_OUTOFMEMORY']/*"/>	
            <unmanaged>ERROR_OUTOFMEMORY</unmanaged>	
            <unmanaged-short>ERROR_OUTOFMEMORY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidDrive">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_DRIVE']/*"/>	
            <unmanaged>ERROR_INVALID_DRIVE</unmanaged>	
            <unmanaged-short>ERROR_INVALID_DRIVE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CurrentDirectory">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CURRENT_DIRECTORY']/*"/>	
            <unmanaged>ERROR_CURRENT_DIRECTORY</unmanaged>	
            <unmanaged-short>ERROR_CURRENT_DIRECTORY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NotSameDevice">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NOT_SAME_DEVICE']/*"/>	
            <unmanaged>ERROR_NOT_SAME_DEVICE</unmanaged>	
            <unmanaged-short>ERROR_NOT_SAME_DEVICE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoMoreFiles">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_MORE_FILES']/*"/>	
            <unmanaged>ERROR_NO_MORE_FILES</unmanaged>	
            <unmanaged-short>ERROR_NO_MORE_FILES</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.WriteProtect">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_WRITE_PROTECT']/*"/>	
            <unmanaged>ERROR_WRITE_PROTECT</unmanaged>	
            <unmanaged-short>ERROR_WRITE_PROTECT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.BadUnit">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_BAD_UNIT']/*"/>	
            <unmanaged>ERROR_BAD_UNIT</unmanaged>	
            <unmanaged-short>ERROR_BAD_UNIT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NotReady">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NOT_READY']/*"/>	
            <unmanaged>ERROR_NOT_READY</unmanaged>	
            <unmanaged-short>ERROR_NOT_READY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.BadCommand">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_BAD_COMMAND']/*"/>	
            <unmanaged>ERROR_BAD_COMMAND</unmanaged>	
            <unmanaged-short>ERROR_BAD_COMMAND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.Crc">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CRC']/*"/>	
            <unmanaged>ERROR_CRC</unmanaged>	
            <unmanaged-short>ERROR_CRC</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.BadLength">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_BAD_LENGTH']/*"/>	
            <unmanaged>ERROR_BAD_LENGTH</unmanaged>	
            <unmanaged-short>ERROR_BAD_LENGTH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.Seek">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SEEK']/*"/>	
            <unmanaged>ERROR_SEEK</unmanaged>	
            <unmanaged-short>ERROR_SEEK</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NotDosDisk">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NOT_DOS_DISK']/*"/>	
            <unmanaged>ERROR_NOT_DOS_DISK</unmanaged>	
            <unmanaged-short>ERROR_NOT_DOS_DISK</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SectorNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SECTOR_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_SECTOR_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_SECTOR_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.OutOfPaper">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_OUT_OF_PAPER']/*"/>	
            <unmanaged>ERROR_OUT_OF_PAPER</unmanaged>	
            <unmanaged-short>ERROR_OUT_OF_PAPER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.WriteFault">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_WRITE_FAULT']/*"/>	
            <unmanaged>ERROR_WRITE_FAULT</unmanaged>	
            <unmanaged-short>ERROR_WRITE_FAULT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ReadFault">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_READ_FAULT']/*"/>	
            <unmanaged>ERROR_READ_FAULT</unmanaged>	
            <unmanaged-short>ERROR_READ_FAULT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GenFailure">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GEN_FAILURE']/*"/>	
            <unmanaged>ERROR_GEN_FAILURE</unmanaged>	
            <unmanaged-short>ERROR_GEN_FAILURE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SharingViolation">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SHARING_VIOLATION']/*"/>	
            <unmanaged>ERROR_SHARING_VIOLATION</unmanaged>	
            <unmanaged-short>ERROR_SHARING_VIOLATION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LockViolation">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOCK_VIOLATION']/*"/>	
            <unmanaged>ERROR_LOCK_VIOLATION</unmanaged>	
            <unmanaged-short>ERROR_LOCK_VIOLATION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.WrongDisk">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_WRONG_DISK']/*"/>	
            <unmanaged>ERROR_WRONG_DISK</unmanaged>	
            <unmanaged-short>ERROR_WRONG_DISK</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SharingBufferExceeded">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SHARING_BUFFER_EXCEEDED']/*"/>	
            <unmanaged>ERROR_SHARING_BUFFER_EXCEEDED</unmanaged>	
            <unmanaged-short>ERROR_SHARING_BUFFER_EXCEEDED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.HandleEof">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_HANDLE_EOF']/*"/>	
            <unmanaged>ERROR_HANDLE_EOF</unmanaged>	
            <unmanaged-short>ERROR_HANDLE_EOF</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.HandleDiskFull">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_HANDLE_DISK_FULL']/*"/>	
            <unmanaged>ERROR_HANDLE_DISK_FULL</unmanaged>	
            <unmanaged-short>ERROR_HANDLE_DISK_FULL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NotSupported">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NOT_SUPPORTED']/*"/>	
            <unmanaged>ERROR_NOT_SUPPORTED</unmanaged>	
            <unmanaged-short>ERROR_NOT_SUPPORTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.RemNotList">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_REM_NOT_LIST']/*"/>	
            <unmanaged>ERROR_REM_NOT_LIST</unmanaged>	
            <unmanaged-short>ERROR_REM_NOT_LIST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DupName">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DUP_NAME']/*"/>	
            <unmanaged>ERROR_DUP_NAME</unmanaged>	
            <unmanaged-short>ERROR_DUP_NAME</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.BadNetpath">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_BAD_NETPATH']/*"/>	
            <unmanaged>ERROR_BAD_NETPATH</unmanaged>	
            <unmanaged-short>ERROR_BAD_NETPATH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NetworkBusy">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NETWORK_BUSY']/*"/>	
            <unmanaged>ERROR_NETWORK_BUSY</unmanaged>	
            <unmanaged-short>ERROR_NETWORK_BUSY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DevNotExist">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DEV_NOT_EXIST']/*"/>	
            <unmanaged>ERROR_DEV_NOT_EXIST</unmanaged>	
            <unmanaged-short>ERROR_DEV_NOT_EXIST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TooManyCmds">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TOO_MANY_CMDS']/*"/>	
            <unmanaged>ERROR_TOO_MANY_CMDS</unmanaged>	
            <unmanaged-short>ERROR_TOO_MANY_CMDS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.AdapHdwErr">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_ADAP_HDW_ERR']/*"/>	
            <unmanaged>ERROR_ADAP_HDW_ERR</unmanaged>	
            <unmanaged-short>ERROR_ADAP_HDW_ERR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.BadNetResp">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_BAD_NET_RESP']/*"/>	
            <unmanaged>ERROR_BAD_NET_RESP</unmanaged>	
            <unmanaged-short>ERROR_BAD_NET_RESP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.UnexpNetErr">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_UNEXP_NET_ERR']/*"/>	
            <unmanaged>ERROR_UNEXP_NET_ERR</unmanaged>	
            <unmanaged-short>ERROR_UNEXP_NET_ERR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.BadRemAdap">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_BAD_REM_ADAP']/*"/>	
            <unmanaged>ERROR_BAD_REM_ADAP</unmanaged>	
            <unmanaged-short>ERROR_BAD_REM_ADAP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PrintqFull">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PRINTQ_FULL']/*"/>	
            <unmanaged>ERROR_PRINTQ_FULL</unmanaged>	
            <unmanaged-short>ERROR_PRINTQ_FULL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoSpoolSpace">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_SPOOL_SPACE']/*"/>	
            <unmanaged>ERROR_NO_SPOOL_SPACE</unmanaged>	
            <unmanaged-short>ERROR_NO_SPOOL_SPACE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PrintCancelled">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PRINT_CANCELLED']/*"/>	
            <unmanaged>ERROR_PRINT_CANCELLED</unmanaged>	
            <unmanaged-short>ERROR_PRINT_CANCELLED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NetnameDeleted">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NETNAME_DELETED']/*"/>	
            <unmanaged>ERROR_NETNAME_DELETED</unmanaged>	
            <unmanaged-short>ERROR_NETNAME_DELETED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NetworkAccessDenied">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NETWORK_ACCESS_DENIED']/*"/>	
            <unmanaged>ERROR_NETWORK_ACCESS_DENIED</unmanaged>	
            <unmanaged-short>ERROR_NETWORK_ACCESS_DENIED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.BadDevType">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_BAD_DEV_TYPE']/*"/>	
            <unmanaged>ERROR_BAD_DEV_TYPE</unmanaged>	
            <unmanaged-short>ERROR_BAD_DEV_TYPE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.BadNetName">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_BAD_NET_NAME']/*"/>	
            <unmanaged>ERROR_BAD_NET_NAME</unmanaged>	
            <unmanaged-short>ERROR_BAD_NET_NAME</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TooManyNames">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TOO_MANY_NAMES']/*"/>	
            <unmanaged>ERROR_TOO_MANY_NAMES</unmanaged>	
            <unmanaged-short>ERROR_TOO_MANY_NAMES</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TooManySess">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TOO_MANY_SESS']/*"/>	
            <unmanaged>ERROR_TOO_MANY_SESS</unmanaged>	
            <unmanaged-short>ERROR_TOO_MANY_SESS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SharingPaused">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SHARING_PAUSED']/*"/>	
            <unmanaged>ERROR_SHARING_PAUSED</unmanaged>	
            <unmanaged-short>ERROR_SHARING_PAUSED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ReqNotAccep">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_REQ_NOT_ACCEP']/*"/>	
            <unmanaged>ERROR_REQ_NOT_ACCEP</unmanaged>	
            <unmanaged-short>ERROR_REQ_NOT_ACCEP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.RedirPaused">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_REDIR_PAUSED']/*"/>	
            <unmanaged>ERROR_REDIR_PAUSED</unmanaged>	
            <unmanaged-short>ERROR_REDIR_PAUSED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FileExists">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FILE_EXISTS']/*"/>	
            <unmanaged>ERROR_FILE_EXISTS</unmanaged>	
            <unmanaged-short>ERROR_FILE_EXISTS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CannotMake">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CANNOT_MAKE']/*"/>	
            <unmanaged>ERROR_CANNOT_MAKE</unmanaged>	
            <unmanaged-short>ERROR_CANNOT_MAKE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FailI24">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FAIL_I24']/*"/>	
            <unmanaged>ERROR_FAIL_I24</unmanaged>	
            <unmanaged-short>ERROR_FAIL_I24</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.OutOfStructures">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_OUT_OF_STRUCTURES']/*"/>	
            <unmanaged>ERROR_OUT_OF_STRUCTURES</unmanaged>	
            <unmanaged-short>ERROR_OUT_OF_STRUCTURES</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.AlreadyAssigned">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_ALREADY_ASSIGNED']/*"/>	
            <unmanaged>ERROR_ALREADY_ASSIGNED</unmanaged>	
            <unmanaged-short>ERROR_ALREADY_ASSIGNED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidPassword">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_PASSWORD']/*"/>	
            <unmanaged>ERROR_INVALID_PASSWORD</unmanaged>	
            <unmanaged-short>ERROR_INVALID_PASSWORD</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidParameter">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_PARAMETER']/*"/>	
            <unmanaged>ERROR_INVALID_PARAMETER</unmanaged>	
            <unmanaged-short>ERROR_INVALID_PARAMETER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NetWriteFault">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NET_WRITE_FAULT']/*"/>	
            <unmanaged>ERROR_NET_WRITE_FAULT</unmanaged>	
            <unmanaged-short>ERROR_NET_WRITE_FAULT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoProcSlots">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_PROC_SLOTS']/*"/>	
            <unmanaged>ERROR_NO_PROC_SLOTS</unmanaged>	
            <unmanaged-short>ERROR_NO_PROC_SLOTS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TooManySemaphores">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TOO_MANY_SEMAPHORES']/*"/>	
            <unmanaged>ERROR_TOO_MANY_SEMAPHORES</unmanaged>	
            <unmanaged-short>ERROR_TOO_MANY_SEMAPHORES</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ExclSemAlreadyOwned">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EXCL_SEM_ALREADY_OWNED']/*"/>	
            <unmanaged>ERROR_EXCL_SEM_ALREADY_OWNED</unmanaged>	
            <unmanaged-short>ERROR_EXCL_SEM_ALREADY_OWNED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SemIsSet">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SEM_IS_SET']/*"/>	
            <unmanaged>ERROR_SEM_IS_SET</unmanaged>	
            <unmanaged-short>ERROR_SEM_IS_SET</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TooManySemRequests">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TOO_MANY_SEM_REQUESTS']/*"/>	
            <unmanaged>ERROR_TOO_MANY_SEM_REQUESTS</unmanaged>	
            <unmanaged-short>ERROR_TOO_MANY_SEM_REQUESTS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidAtInterruptTime">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_AT_INTERRUPT_TIME']/*"/>	
            <unmanaged>ERROR_INVALID_AT_INTERRUPT_TIME</unmanaged>	
            <unmanaged-short>ERROR_INVALID_AT_INTERRUPT_TIME</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SemOwnerDied">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SEM_OWNER_DIED']/*"/>	
            <unmanaged>ERROR_SEM_OWNER_DIED</unmanaged>	
            <unmanaged-short>ERROR_SEM_OWNER_DIED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SemUserLimit">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SEM_USER_LIMIT']/*"/>	
            <unmanaged>ERROR_SEM_USER_LIMIT</unmanaged>	
            <unmanaged-short>ERROR_SEM_USER_LIMIT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DiskChange">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DISK_CHANGE']/*"/>	
            <unmanaged>ERROR_DISK_CHANGE</unmanaged>	
            <unmanaged-short>ERROR_DISK_CHANGE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DriveLocked">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DRIVE_LOCKED']/*"/>	
            <unmanaged>ERROR_DRIVE_LOCKED</unmanaged>	
            <unmanaged-short>ERROR_DRIVE_LOCKED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.BrokenPipe">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_BROKEN_PIPE']/*"/>	
            <unmanaged>ERROR_BROKEN_PIPE</unmanaged>	
            <unmanaged-short>ERROR_BROKEN_PIPE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.OpenFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_OPEN_FAILED']/*"/>	
            <unmanaged>ERROR_OPEN_FAILED</unmanaged>	
            <unmanaged-short>ERROR_OPEN_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.BufferOverflow">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_BUFFER_OVERFLOW']/*"/>	
            <unmanaged>ERROR_BUFFER_OVERFLOW</unmanaged>	
            <unmanaged-short>ERROR_BUFFER_OVERFLOW</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DiskFull">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DISK_FULL']/*"/>	
            <unmanaged>ERROR_DISK_FULL</unmanaged>	
            <unmanaged-short>ERROR_DISK_FULL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoMoreSearchHandles">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_MORE_SEARCH_HANDLES']/*"/>	
            <unmanaged>ERROR_NO_MORE_SEARCH_HANDLES</unmanaged>	
            <unmanaged-short>ERROR_NO_MORE_SEARCH_HANDLES</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidTargetHandle">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_TARGET_HANDLE']/*"/>	
            <unmanaged>ERROR_INVALID_TARGET_HANDLE</unmanaged>	
            <unmanaged-short>ERROR_INVALID_TARGET_HANDLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidCategory">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_CATEGORY']/*"/>	
            <unmanaged>ERROR_INVALID_CATEGORY</unmanaged>	
            <unmanaged-short>ERROR_INVALID_CATEGORY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidVerifySwitch">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_VERIFY_SWITCH']/*"/>	
            <unmanaged>ERROR_INVALID_VERIFY_SWITCH</unmanaged>	
            <unmanaged-short>ERROR_INVALID_VERIFY_SWITCH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.BadDriverLevel">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_BAD_DRIVER_LEVEL']/*"/>	
            <unmanaged>ERROR_BAD_DRIVER_LEVEL</unmanaged>	
            <unmanaged-short>ERROR_BAD_DRIVER_LEVEL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CallNotImplemented">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CALL_NOT_IMPLEMENTED']/*"/>	
            <unmanaged>ERROR_CALL_NOT_IMPLEMENTED</unmanaged>	
            <unmanaged-short>ERROR_CALL_NOT_IMPLEMENTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SemTimeout">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SEM_TIMEOUT']/*"/>	
            <unmanaged>ERROR_SEM_TIMEOUT</unmanaged>	
            <unmanaged-short>ERROR_SEM_TIMEOUT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InsufficientBuffer">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INSUFFICIENT_BUFFER']/*"/>	
            <unmanaged>ERROR_INSUFFICIENT_BUFFER</unmanaged>	
            <unmanaged-short>ERROR_INSUFFICIENT_BUFFER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidName">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_NAME']/*"/>	
            <unmanaged>ERROR_INVALID_NAME</unmanaged>	
            <unmanaged-short>ERROR_INVALID_NAME</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidLevel">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_LEVEL']/*"/>	
            <unmanaged>ERROR_INVALID_LEVEL</unmanaged>	
            <unmanaged-short>ERROR_INVALID_LEVEL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoVolumeLabel">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_VOLUME_LABEL']/*"/>	
            <unmanaged>ERROR_NO_VOLUME_LABEL</unmanaged>	
            <unmanaged-short>ERROR_NO_VOLUME_LABEL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ModNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MOD_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_MOD_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_MOD_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ProcNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PROC_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_PROC_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_PROC_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.WaitNoChildren">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_WAIT_NO_CHILDREN']/*"/>	
            <unmanaged>ERROR_WAIT_NO_CHILDREN</unmanaged>	
            <unmanaged-short>ERROR_WAIT_NO_CHILDREN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ChildNotComplete">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CHILD_NOT_COMPLETE']/*"/>	
            <unmanaged>ERROR_CHILD_NOT_COMPLETE</unmanaged>	
            <unmanaged-short>ERROR_CHILD_NOT_COMPLETE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DirectAccessHandle">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DIRECT_ACCESS_HANDLE']/*"/>	
            <unmanaged>ERROR_DIRECT_ACCESS_HANDLE</unmanaged>	
            <unmanaged-short>ERROR_DIRECT_ACCESS_HANDLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NegativeSeek">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NEGATIVE_SEEK']/*"/>	
            <unmanaged>ERROR_NEGATIVE_SEEK</unmanaged>	
            <unmanaged-short>ERROR_NEGATIVE_SEEK</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SeekOnDevice">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SEEK_ON_DEVICE']/*"/>	
            <unmanaged>ERROR_SEEK_ON_DEVICE</unmanaged>	
            <unmanaged-short>ERROR_SEEK_ON_DEVICE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IsJoinTarget">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IS_JOIN_TARGET']/*"/>	
            <unmanaged>ERROR_IS_JOIN_TARGET</unmanaged>	
            <unmanaged-short>ERROR_IS_JOIN_TARGET</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IsJoined">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IS_JOINED']/*"/>	
            <unmanaged>ERROR_IS_JOINED</unmanaged>	
            <unmanaged-short>ERROR_IS_JOINED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IsSubsted">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IS_SUBSTED']/*"/>	
            <unmanaged>ERROR_IS_SUBSTED</unmanaged>	
            <unmanaged-short>ERROR_IS_SUBSTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NotJoined">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NOT_JOINED']/*"/>	
            <unmanaged>ERROR_NOT_JOINED</unmanaged>	
            <unmanaged-short>ERROR_NOT_JOINED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NotSubsted">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NOT_SUBSTED']/*"/>	
            <unmanaged>ERROR_NOT_SUBSTED</unmanaged>	
            <unmanaged-short>ERROR_NOT_SUBSTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.JoinToJoin">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_JOIN_TO_JOIN']/*"/>	
            <unmanaged>ERROR_JOIN_TO_JOIN</unmanaged>	
            <unmanaged-short>ERROR_JOIN_TO_JOIN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SubstToSubst">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SUBST_TO_SUBST']/*"/>	
            <unmanaged>ERROR_SUBST_TO_SUBST</unmanaged>	
            <unmanaged-short>ERROR_SUBST_TO_SUBST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.JoinToSubst">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_JOIN_TO_SUBST']/*"/>	
            <unmanaged>ERROR_JOIN_TO_SUBST</unmanaged>	
            <unmanaged-short>ERROR_JOIN_TO_SUBST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SubstToJoin">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SUBST_TO_JOIN']/*"/>	
            <unmanaged>ERROR_SUBST_TO_JOIN</unmanaged>	
            <unmanaged-short>ERROR_SUBST_TO_JOIN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.BusyDrive">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_BUSY_DRIVE']/*"/>	
            <unmanaged>ERROR_BUSY_DRIVE</unmanaged>	
            <unmanaged-short>ERROR_BUSY_DRIVE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SameDrive">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SAME_DRIVE']/*"/>	
            <unmanaged>ERROR_SAME_DRIVE</unmanaged>	
            <unmanaged-short>ERROR_SAME_DRIVE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DirNotRoot">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DIR_NOT_ROOT']/*"/>	
            <unmanaged>ERROR_DIR_NOT_ROOT</unmanaged>	
            <unmanaged-short>ERROR_DIR_NOT_ROOT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DirNotEmpty">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DIR_NOT_EMPTY']/*"/>	
            <unmanaged>ERROR_DIR_NOT_EMPTY</unmanaged>	
            <unmanaged-short>ERROR_DIR_NOT_EMPTY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IsSubstPath">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IS_SUBST_PATH']/*"/>	
            <unmanaged>ERROR_IS_SUBST_PATH</unmanaged>	
            <unmanaged-short>ERROR_IS_SUBST_PATH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IsJoinPath">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IS_JOIN_PATH']/*"/>	
            <unmanaged>ERROR_IS_JOIN_PATH</unmanaged>	
            <unmanaged-short>ERROR_IS_JOIN_PATH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PathBusy">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PATH_BUSY']/*"/>	
            <unmanaged>ERROR_PATH_BUSY</unmanaged>	
            <unmanaged-short>ERROR_PATH_BUSY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IsSubstTarget">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IS_SUBST_TARGET']/*"/>	
            <unmanaged>ERROR_IS_SUBST_TARGET</unmanaged>	
            <unmanaged-short>ERROR_IS_SUBST_TARGET</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SystemTrace">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SYSTEM_TRACE']/*"/>	
            <unmanaged>ERROR_SYSTEM_TRACE</unmanaged>	
            <unmanaged-short>ERROR_SYSTEM_TRACE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidEventCount">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_EVENT_COUNT']/*"/>	
            <unmanaged>ERROR_INVALID_EVENT_COUNT</unmanaged>	
            <unmanaged-short>ERROR_INVALID_EVENT_COUNT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TooManyMuxwaiters">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TOO_MANY_MUXWAITERS']/*"/>	
            <unmanaged>ERROR_TOO_MANY_MUXWAITERS</unmanaged>	
            <unmanaged-short>ERROR_TOO_MANY_MUXWAITERS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidListFormat">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_LIST_FORMAT']/*"/>	
            <unmanaged>ERROR_INVALID_LIST_FORMAT</unmanaged>	
            <unmanaged-short>ERROR_INVALID_LIST_FORMAT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LabelTooLong">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LABEL_TOO_LONG']/*"/>	
            <unmanaged>ERROR_LABEL_TOO_LONG</unmanaged>	
            <unmanaged-short>ERROR_LABEL_TOO_LONG</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TooManyTcbs">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TOO_MANY_TCBS']/*"/>	
            <unmanaged>ERROR_TOO_MANY_TCBS</unmanaged>	
            <unmanaged-short>ERROR_TOO_MANY_TCBS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SignalRefused">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SIGNAL_REFUSED']/*"/>	
            <unmanaged>ERROR_SIGNAL_REFUSED</unmanaged>	
            <unmanaged-short>ERROR_SIGNAL_REFUSED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.Discarded">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DISCARDED']/*"/>	
            <unmanaged>ERROR_DISCARDED</unmanaged>	
            <unmanaged-short>ERROR_DISCARDED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NotLocked">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NOT_LOCKED']/*"/>	
            <unmanaged>ERROR_NOT_LOCKED</unmanaged>	
            <unmanaged-short>ERROR_NOT_LOCKED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.BadThreadidAddr">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_BAD_THREADID_ADDR']/*"/>	
            <unmanaged>ERROR_BAD_THREADID_ADDR</unmanaged>	
            <unmanaged-short>ERROR_BAD_THREADID_ADDR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.BadArguments">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_BAD_ARGUMENTS']/*"/>	
            <unmanaged>ERROR_BAD_ARGUMENTS</unmanaged>	
            <unmanaged-short>ERROR_BAD_ARGUMENTS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.BadPathname">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_BAD_PATHNAME']/*"/>	
            <unmanaged>ERROR_BAD_PATHNAME</unmanaged>	
            <unmanaged-short>ERROR_BAD_PATHNAME</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SignalPending">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SIGNAL_PENDING']/*"/>	
            <unmanaged>ERROR_SIGNAL_PENDING</unmanaged>	
            <unmanaged-short>ERROR_SIGNAL_PENDING</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MaximumThrdsReached">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MAX_THRDS_REACHED']/*"/>	
            <unmanaged>ERROR_MAX_THRDS_REACHED</unmanaged>	
            <unmanaged-short>ERROR_MAX_THRDS_REACHED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LockFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOCK_FAILED']/*"/>	
            <unmanaged>ERROR_LOCK_FAILED</unmanaged>	
            <unmanaged-short>ERROR_LOCK_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.Busy">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_BUSY']/*"/>	
            <unmanaged>ERROR_BUSY</unmanaged>	
            <unmanaged-short>ERROR_BUSY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DeviceSupportInProgress">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DEVICE_SUPPORT_IN_PROGRESS']/*"/>	
            <unmanaged>ERROR_DEVICE_SUPPORT_IN_PROGRESS</unmanaged>	
            <unmanaged-short>ERROR_DEVICE_SUPPORT_IN_PROGRESS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CancelViolation">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CANCEL_VIOLATION']/*"/>	
            <unmanaged>ERROR_CANCEL_VIOLATION</unmanaged>	
            <unmanaged-short>ERROR_CANCEL_VIOLATION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.AtomicLocksNotSupported">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_ATOMIC_LOCKS_NOT_SUPPORTED']/*"/>	
            <unmanaged>ERROR_ATOMIC_LOCKS_NOT_SUPPORTED</unmanaged>	
            <unmanaged-short>ERROR_ATOMIC_LOCKS_NOT_SUPPORTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidSegmentNumber">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_SEGMENT_NUMBER']/*"/>	
            <unmanaged>ERROR_INVALID_SEGMENT_NUMBER</unmanaged>	
            <unmanaged-short>ERROR_INVALID_SEGMENT_NUMBER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidOrdinal">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_ORDINAL']/*"/>	
            <unmanaged>ERROR_INVALID_ORDINAL</unmanaged>	
            <unmanaged-short>ERROR_INVALID_ORDINAL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.AlreadyExists">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_ALREADY_EXISTS']/*"/>	
            <unmanaged>ERROR_ALREADY_EXISTS</unmanaged>	
            <unmanaged-short>ERROR_ALREADY_EXISTS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidFlagsNumber">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_FLAG_NUMBER']/*"/>	
            <unmanaged>ERROR_INVALID_FLAG_NUMBER</unmanaged>	
            <unmanaged-short>ERROR_INVALID_FLAG_NUMBER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SemNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SEM_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_SEM_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_SEM_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidStartingCodeseg">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_STARTING_CODESEG']/*"/>	
            <unmanaged>ERROR_INVALID_STARTING_CODESEG</unmanaged>	
            <unmanaged-short>ERROR_INVALID_STARTING_CODESEG</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidStackseg">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_STACKSEG']/*"/>	
            <unmanaged>ERROR_INVALID_STACKSEG</unmanaged>	
            <unmanaged-short>ERROR_INVALID_STACKSEG</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidModuletype">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_MODULETYPE']/*"/>	
            <unmanaged>ERROR_INVALID_MODULETYPE</unmanaged>	
            <unmanaged-short>ERROR_INVALID_MODULETYPE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidExeSignature">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_EXE_SIGNATURE']/*"/>	
            <unmanaged>ERROR_INVALID_EXE_SIGNATURE</unmanaged>	
            <unmanaged-short>ERROR_INVALID_EXE_SIGNATURE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ExeMarkedInvalid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EXE_MARKED_INVALID']/*"/>	
            <unmanaged>ERROR_EXE_MARKED_INVALID</unmanaged>	
            <unmanaged-short>ERROR_EXE_MARKED_INVALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.BadExeFormat">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_BAD_EXE_FORMAT']/*"/>	
            <unmanaged>ERROR_BAD_EXE_FORMAT</unmanaged>	
            <unmanaged-short>ERROR_BAD_EXE_FORMAT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IteratedDataExceeds64k">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_ITERATED_DATA_EXCEEDS_64k']/*"/>	
            <unmanaged>ERROR_ITERATED_DATA_EXCEEDS_64k</unmanaged>	
            <unmanaged-short>ERROR_ITERATED_DATA_EXCEEDS_64k</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidMinallocsize">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_MINALLOCSIZE']/*"/>	
            <unmanaged>ERROR_INVALID_MINALLOCSIZE</unmanaged>	
            <unmanaged-short>ERROR_INVALID_MINALLOCSIZE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DynlinkFromInvalidRing">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DYNLINK_FROM_INVALID_RING']/*"/>	
            <unmanaged>ERROR_DYNLINK_FROM_INVALID_RING</unmanaged>	
            <unmanaged-short>ERROR_DYNLINK_FROM_INVALID_RING</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IoplNotEnabled">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IOPL_NOT_ENABLED']/*"/>	
            <unmanaged>ERROR_IOPL_NOT_ENABLED</unmanaged>	
            <unmanaged-short>ERROR_IOPL_NOT_ENABLED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidSegdpl">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_SEGDPL']/*"/>	
            <unmanaged>ERROR_INVALID_SEGDPL</unmanaged>	
            <unmanaged-short>ERROR_INVALID_SEGDPL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.AutodatasegExceeds64k">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_AUTODATASEG_EXCEEDS_64k']/*"/>	
            <unmanaged>ERROR_AUTODATASEG_EXCEEDS_64k</unmanaged>	
            <unmanaged-short>ERROR_AUTODATASEG_EXCEEDS_64k</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.Ring2segMustBeMovable">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_RING2SEG_MUST_BE_MOVABLE']/*"/>	
            <unmanaged>ERROR_RING2SEG_MUST_BE_MOVABLE</unmanaged>	
            <unmanaged-short>ERROR_RING2SEG_MUST_BE_MOVABLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.RelocChainXeedsSeglim">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_RELOC_CHAIN_XEEDS_SEGLIM']/*"/>	
            <unmanaged>ERROR_RELOC_CHAIN_XEEDS_SEGLIM</unmanaged>	
            <unmanaged-short>ERROR_RELOC_CHAIN_XEEDS_SEGLIM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InfloopInRelocChain">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INFLOOP_IN_RELOC_CHAIN']/*"/>	
            <unmanaged>ERROR_INFLOOP_IN_RELOC_CHAIN</unmanaged>	
            <unmanaged-short>ERROR_INFLOOP_IN_RELOC_CHAIN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EnvvarNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_ENVVAR_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_ENVVAR_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_ENVVAR_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoSignalSent">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_SIGNAL_SENT']/*"/>	
            <unmanaged>ERROR_NO_SIGNAL_SENT</unmanaged>	
            <unmanaged-short>ERROR_NO_SIGNAL_SENT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FilenameExcedRange">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FILENAME_EXCED_RANGE']/*"/>	
            <unmanaged>ERROR_FILENAME_EXCED_RANGE</unmanaged>	
            <unmanaged-short>ERROR_FILENAME_EXCED_RANGE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.Ring2StackInUse">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_RING2_STACK_IN_USE']/*"/>	
            <unmanaged>ERROR_RING2_STACK_IN_USE</unmanaged>	
            <unmanaged-short>ERROR_RING2_STACK_IN_USE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MetaExpansionTooLong">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_META_EXPANSION_TOO_LONG']/*"/>	
            <unmanaged>ERROR_META_EXPANSION_TOO_LONG</unmanaged>	
            <unmanaged-short>ERROR_META_EXPANSION_TOO_LONG</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidSignalNumber">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_SIGNAL_NUMBER']/*"/>	
            <unmanaged>ERROR_INVALID_SIGNAL_NUMBER</unmanaged>	
            <unmanaged-short>ERROR_INVALID_SIGNAL_NUMBER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.Thread1Inactive">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_THREAD_1_INACTIVE']/*"/>	
            <unmanaged>ERROR_THREAD_1_INACTIVE</unmanaged>	
            <unmanaged-short>ERROR_THREAD_1_INACTIVE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.Locked">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOCKED']/*"/>	
            <unmanaged>ERROR_LOCKED</unmanaged>	
            <unmanaged-short>ERROR_LOCKED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TooManyModules">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TOO_MANY_MODULES']/*"/>	
            <unmanaged>ERROR_TOO_MANY_MODULES</unmanaged>	
            <unmanaged-short>ERROR_TOO_MANY_MODULES</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NestingNotAllowed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NESTING_NOT_ALLOWED']/*"/>	
            <unmanaged>ERROR_NESTING_NOT_ALLOWED</unmanaged>	
            <unmanaged-short>ERROR_NESTING_NOT_ALLOWED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ExeMachineTypeMismatch">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EXE_MACHINE_TYPE_MISMATCH']/*"/>	
            <unmanaged>ERROR_EXE_MACHINE_TYPE_MISMATCH</unmanaged>	
            <unmanaged-short>ERROR_EXE_MACHINE_TYPE_MISMATCH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ExeCannotModifySignedBinary">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EXE_CANNOT_MODIFY_SIGNED_BINARY']/*"/>	
            <unmanaged>ERROR_EXE_CANNOT_MODIFY_SIGNED_BINARY</unmanaged>	
            <unmanaged-short>ERROR_EXE_CANNOT_MODIFY_SIGNED_BINARY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ExeCannotModifyStrongSignedBinary">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY']/*"/>	
            <unmanaged>ERROR_EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY</unmanaged>	
            <unmanaged-short>ERROR_EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FileCheckedOut">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FILE_CHECKED_OUT']/*"/>	
            <unmanaged>ERROR_FILE_CHECKED_OUT</unmanaged>	
            <unmanaged-short>ERROR_FILE_CHECKED_OUT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CheckoutRequired">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CHECKOUT_REQUIRED']/*"/>	
            <unmanaged>ERROR_CHECKOUT_REQUIRED</unmanaged>	
            <unmanaged-short>ERROR_CHECKOUT_REQUIRED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.BadFileType">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_BAD_FILE_TYPE']/*"/>	
            <unmanaged>ERROR_BAD_FILE_TYPE</unmanaged>	
            <unmanaged-short>ERROR_BAD_FILE_TYPE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FileTooLarge">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FILE_TOO_LARGE']/*"/>	
            <unmanaged>ERROR_FILE_TOO_LARGE</unmanaged>	
            <unmanaged-short>ERROR_FILE_TOO_LARGE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FormsAuthRequired">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FORMS_AUTH_REQUIRED']/*"/>	
            <unmanaged>ERROR_FORMS_AUTH_REQUIRED</unmanaged>	
            <unmanaged-short>ERROR_FORMS_AUTH_REQUIRED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VirusInfected">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VIRUS_INFECTED']/*"/>	
            <unmanaged>ERROR_VIRUS_INFECTED</unmanaged>	
            <unmanaged-short>ERROR_VIRUS_INFECTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VirusDeleted">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VIRUS_DELETED']/*"/>	
            <unmanaged>ERROR_VIRUS_DELETED</unmanaged>	
            <unmanaged-short>ERROR_VIRUS_DELETED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PipeLocal">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PIPE_LOCAL']/*"/>	
            <unmanaged>ERROR_PIPE_LOCAL</unmanaged>	
            <unmanaged-short>ERROR_PIPE_LOCAL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.BadPipe">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_BAD_PIPE']/*"/>	
            <unmanaged>ERROR_BAD_PIPE</unmanaged>	
            <unmanaged-short>ERROR_BAD_PIPE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PipeBusy">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PIPE_BUSY']/*"/>	
            <unmanaged>ERROR_PIPE_BUSY</unmanaged>	
            <unmanaged-short>ERROR_PIPE_BUSY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoData">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_DATA']/*"/>	
            <unmanaged>ERROR_NO_DATA</unmanaged>	
            <unmanaged-short>ERROR_NO_DATA</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PipeNotConnected">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PIPE_NOT_CONNECTED']/*"/>	
            <unmanaged>ERROR_PIPE_NOT_CONNECTED</unmanaged>	
            <unmanaged-short>ERROR_PIPE_NOT_CONNECTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MoreData">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MORE_DATA']/*"/>	
            <unmanaged>ERROR_MORE_DATA</unmanaged>	
            <unmanaged-short>ERROR_MORE_DATA</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VcDisconnected">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VC_DISCONNECTED']/*"/>	
            <unmanaged>ERROR_VC_DISCONNECTED</unmanaged>	
            <unmanaged-short>ERROR_VC_DISCONNECTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidEaName">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_EA_NAME']/*"/>	
            <unmanaged>ERROR_INVALID_EA_NAME</unmanaged>	
            <unmanaged-short>ERROR_INVALID_EA_NAME</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EaListInconsistent">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EA_LIST_INCONSISTENT']/*"/>	
            <unmanaged>ERROR_EA_LIST_INCONSISTENT</unmanaged>	
            <unmanaged-short>ERROR_EA_LIST_INCONSISTENT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoMoreItems">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_MORE_ITEMS']/*"/>	
            <unmanaged>ERROR_NO_MORE_ITEMS</unmanaged>	
            <unmanaged-short>ERROR_NO_MORE_ITEMS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CannotCopy">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CANNOT_COPY']/*"/>	
            <unmanaged>ERROR_CANNOT_COPY</unmanaged>	
            <unmanaged-short>ERROR_CANNOT_COPY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.Directory">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DIRECTORY']/*"/>	
            <unmanaged>ERROR_DIRECTORY</unmanaged>	
            <unmanaged-short>ERROR_DIRECTORY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EasDidntFit">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EAS_DIDNT_FIT']/*"/>	
            <unmanaged>ERROR_EAS_DIDNT_FIT</unmanaged>	
            <unmanaged-short>ERROR_EAS_DIDNT_FIT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EaFileCorrupt">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EA_FILE_CORRUPT']/*"/>	
            <unmanaged>ERROR_EA_FILE_CORRUPT</unmanaged>	
            <unmanaged-short>ERROR_EA_FILE_CORRUPT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EaTableFull">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EA_TABLE_FULL']/*"/>	
            <unmanaged>ERROR_EA_TABLE_FULL</unmanaged>	
            <unmanaged-short>ERROR_EA_TABLE_FULL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidEaHandle">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_EA_HANDLE']/*"/>	
            <unmanaged>ERROR_INVALID_EA_HANDLE</unmanaged>	
            <unmanaged-short>ERROR_INVALID_EA_HANDLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EasNotSupported">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EAS_NOT_SUPPORTED']/*"/>	
            <unmanaged>ERROR_EAS_NOT_SUPPORTED</unmanaged>	
            <unmanaged-short>ERROR_EAS_NOT_SUPPORTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NotOwner">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NOT_OWNER']/*"/>	
            <unmanaged>ERROR_NOT_OWNER</unmanaged>	
            <unmanaged-short>ERROR_NOT_OWNER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TooManyPosts">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TOO_MANY_POSTS']/*"/>	
            <unmanaged>ERROR_TOO_MANY_POSTS</unmanaged>	
            <unmanaged-short>ERROR_TOO_MANY_POSTS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PartialCopy">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PARTIAL_COPY']/*"/>	
            <unmanaged>ERROR_PARTIAL_COPY</unmanaged>	
            <unmanaged-short>ERROR_PARTIAL_COPY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.OplockNotGranted">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_OPLOCK_NOT_GRANTED']/*"/>	
            <unmanaged>ERROR_OPLOCK_NOT_GRANTED</unmanaged>	
            <unmanaged-short>ERROR_OPLOCK_NOT_GRANTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidOplockProtocol">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_OPLOCK_PROTOCOL']/*"/>	
            <unmanaged>ERROR_INVALID_OPLOCK_PROTOCOL</unmanaged>	
            <unmanaged-short>ERROR_INVALID_OPLOCK_PROTOCOL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DiskTooFragmented">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DISK_TOO_FRAGMENTED']/*"/>	
            <unmanaged>ERROR_DISK_TOO_FRAGMENTED</unmanaged>	
            <unmanaged-short>ERROR_DISK_TOO_FRAGMENTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DeletePending">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DELETE_PENDING']/*"/>	
            <unmanaged>ERROR_DELETE_PENDING</unmanaged>	
            <unmanaged-short>ERROR_DELETE_PENDING</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IncompatibleWithGlobalShortNameRegistrySetting">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INCOMPATIBLE_WITH_GLOBAL_SHORT_NAME_REGISTRY_SETTING']/*"/>	
            <unmanaged>ERROR_INCOMPATIBLE_WITH_GLOBAL_SHORT_NAME_REGISTRY_SETTING</unmanaged>	
            <unmanaged-short>ERROR_INCOMPATIBLE_WITH_GLOBAL_SHORT_NAME_REGISTRY_SETTING</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ShortNamesNotEnabledOnVolume">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SHORT_NAMES_NOT_ENABLED_ON_VOLUME']/*"/>	
            <unmanaged>ERROR_SHORT_NAMES_NOT_ENABLED_ON_VOLUME</unmanaged>	
            <unmanaged-short>ERROR_SHORT_NAMES_NOT_ENABLED_ON_VOLUME</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SecurityStreamIsInconsistent">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SECURITY_STREAM_IS_INCONSISTENT']/*"/>	
            <unmanaged>ERROR_SECURITY_STREAM_IS_INCONSISTENT</unmanaged>	
            <unmanaged-short>ERROR_SECURITY_STREAM_IS_INCONSISTENT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidLockRange">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_LOCK_RANGE']/*"/>	
            <unmanaged>ERROR_INVALID_LOCK_RANGE</unmanaged>	
            <unmanaged-short>ERROR_INVALID_LOCK_RANGE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ImageSubsystemNotPresent">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IMAGE_SUBSYSTEM_NOT_PRESENT']/*"/>	
            <unmanaged>ERROR_IMAGE_SUBSYSTEM_NOT_PRESENT</unmanaged>	
            <unmanaged-short>ERROR_IMAGE_SUBSYSTEM_NOT_PRESENT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NotificationGuidAlreadyDefined">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NOTIFICATION_GUID_ALREADY_DEFINED']/*"/>	
            <unmanaged>ERROR_NOTIFICATION_GUID_ALREADY_DEFINED</unmanaged>	
            <unmanaged-short>ERROR_NOTIFICATION_GUID_ALREADY_DEFINED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidExceptionHandler">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_EXCEPTION_HANDLER']/*"/>	
            <unmanaged>ERROR_INVALID_EXCEPTION_HANDLER</unmanaged>	
            <unmanaged-short>ERROR_INVALID_EXCEPTION_HANDLER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DuplicatePrivileges">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DUPLICATE_PRIVILEGES']/*"/>	
            <unmanaged>ERROR_DUPLICATE_PRIVILEGES</unmanaged>	
            <unmanaged-short>ERROR_DUPLICATE_PRIVILEGES</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoRangesProcessed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_RANGES_PROCESSED']/*"/>	
            <unmanaged>ERROR_NO_RANGES_PROCESSED</unmanaged>	
            <unmanaged-short>ERROR_NO_RANGES_PROCESSED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NotAllowedOnSystemFile">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NOT_ALLOWED_ON_SYSTEM_FILE']/*"/>	
            <unmanaged>ERROR_NOT_ALLOWED_ON_SYSTEM_FILE</unmanaged>	
            <unmanaged-short>ERROR_NOT_ALLOWED_ON_SYSTEM_FILE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DiskResourcesExhausted">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DISK_RESOURCES_EXHAUSTED']/*"/>	
            <unmanaged>ERROR_DISK_RESOURCES_EXHAUSTED</unmanaged>	
            <unmanaged-short>ERROR_DISK_RESOURCES_EXHAUSTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidToken">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_TOKEN']/*"/>	
            <unmanaged>ERROR_INVALID_TOKEN</unmanaged>	
            <unmanaged-short>ERROR_INVALID_TOKEN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DeviceFeatureNotSupported">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DEVICE_FEATURE_NOT_SUPPORTED']/*"/>	
            <unmanaged>ERROR_DEVICE_FEATURE_NOT_SUPPORTED</unmanaged>	
            <unmanaged-short>ERROR_DEVICE_FEATURE_NOT_SUPPORTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MrMidNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MR_MID_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_MR_MID_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_MR_MID_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ScopeNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SCOPE_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_SCOPE_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_SCOPE_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.UndefinedScope">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_UNDEFINED_SCOPE']/*"/>	
            <unmanaged>ERROR_UNDEFINED_SCOPE</unmanaged>	
            <unmanaged-short>ERROR_UNDEFINED_SCOPE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidCap">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_CAP']/*"/>	
            <unmanaged>ERROR_INVALID_CAP</unmanaged>	
            <unmanaged-short>ERROR_INVALID_CAP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DeviceUnreachable">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DEVICE_UNREACHABLE']/*"/>	
            <unmanaged>ERROR_DEVICE_UNREACHABLE</unmanaged>	
            <unmanaged-short>ERROR_DEVICE_UNREACHABLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DeviceNoResources">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DEVICE_NO_RESOURCES']/*"/>	
            <unmanaged>ERROR_DEVICE_NO_RESOURCES</unmanaged>	
            <unmanaged-short>ERROR_DEVICE_NO_RESOURCES</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DataChecksumError">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DATA_CHECKSUM_ERROR']/*"/>	
            <unmanaged>ERROR_DATA_CHECKSUM_ERROR</unmanaged>	
            <unmanaged-short>ERROR_DATA_CHECKSUM_ERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IntermixedKernelEaOperation">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INTERMIXED_KERNEL_EA_OPERATION']/*"/>	
            <unmanaged>ERROR_INTERMIXED_KERNEL_EA_OPERATION</unmanaged>	
            <unmanaged-short>ERROR_INTERMIXED_KERNEL_EA_OPERATION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FileLevelTrimNotSupported">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FILE_LEVEL_TRIM_NOT_SUPPORTED']/*"/>	
            <unmanaged>ERROR_FILE_LEVEL_TRIM_NOT_SUPPORTED</unmanaged>	
            <unmanaged-short>ERROR_FILE_LEVEL_TRIM_NOT_SUPPORTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.OffsetAlignmentViolation">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_OFFSET_ALIGNMENT_VIOLATION']/*"/>	
            <unmanaged>ERROR_OFFSET_ALIGNMENT_VIOLATION</unmanaged>	
            <unmanaged-short>ERROR_OFFSET_ALIGNMENT_VIOLATION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidFieldInParameterList">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_FIELD_IN_PARAMETER_LIST']/*"/>	
            <unmanaged>ERROR_INVALID_FIELD_IN_PARAMETER_LIST</unmanaged>	
            <unmanaged-short>ERROR_INVALID_FIELD_IN_PARAMETER_LIST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.OperationInProgress">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_OPERATION_IN_PROGRESS']/*"/>	
            <unmanaged>ERROR_OPERATION_IN_PROGRESS</unmanaged>	
            <unmanaged-short>ERROR_OPERATION_IN_PROGRESS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.BadDevicePath">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_BAD_DEVICE_PATH']/*"/>	
            <unmanaged>ERROR_BAD_DEVICE_PATH</unmanaged>	
            <unmanaged-short>ERROR_BAD_DEVICE_PATH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TooManyDescriptors">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TOO_MANY_DESCRIPTORS']/*"/>	
            <unmanaged>ERROR_TOO_MANY_DESCRIPTORS</unmanaged>	
            <unmanaged-short>ERROR_TOO_MANY_DESCRIPTORS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ScrubDataDisabled">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SCRUB_DATA_DISABLED']/*"/>	
            <unmanaged>ERROR_SCRUB_DATA_DISABLED</unmanaged>	
            <unmanaged-short>ERROR_SCRUB_DATA_DISABLED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NotRedundantStorage">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NOT_REDUNDANT_STORAGE']/*"/>	
            <unmanaged>ERROR_NOT_REDUNDANT_STORAGE</unmanaged>	
            <unmanaged-short>ERROR_NOT_REDUNDANT_STORAGE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ResidentFileNotSupported">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_RESIDENT_FILE_NOT_SUPPORTED']/*"/>	
            <unmanaged>ERROR_RESIDENT_FILE_NOT_SUPPORTED</unmanaged>	
            <unmanaged-short>ERROR_RESIDENT_FILE_NOT_SUPPORTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CompressedFileNotSupported">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_COMPRESSED_FILE_NOT_SUPPORTED']/*"/>	
            <unmanaged>ERROR_COMPRESSED_FILE_NOT_SUPPORTED</unmanaged>	
            <unmanaged-short>ERROR_COMPRESSED_FILE_NOT_SUPPORTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DirectoryNotSupported">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DIRECTORY_NOT_SUPPORTED']/*"/>	
            <unmanaged>ERROR_DIRECTORY_NOT_SUPPORTED</unmanaged>	
            <unmanaged-short>ERROR_DIRECTORY_NOT_SUPPORTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NotReadFromCopy">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NOT_READ_FROM_COPY']/*"/>	
            <unmanaged>ERROR_NOT_READ_FROM_COPY</unmanaged>	
            <unmanaged-short>ERROR_NOT_READ_FROM_COPY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FailNoactionReboot">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FAIL_NOACTION_REBOOT']/*"/>	
            <unmanaged>ERROR_FAIL_NOACTION_REBOOT</unmanaged>	
            <unmanaged-short>ERROR_FAIL_NOACTION_REBOOT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FailShutdown">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FAIL_SHUTDOWN']/*"/>	
            <unmanaged>ERROR_FAIL_SHUTDOWN</unmanaged>	
            <unmanaged-short>ERROR_FAIL_SHUTDOWN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FailRestart">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FAIL_RESTART']/*"/>	
            <unmanaged>ERROR_FAIL_RESTART</unmanaged>	
            <unmanaged-short>ERROR_FAIL_RESTART</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MaximumSessionsReached">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MAX_SESSIONS_REACHED']/*"/>	
            <unmanaged>ERROR_MAX_SESSIONS_REACHED</unmanaged>	
            <unmanaged-short>ERROR_MAX_SESSIONS_REACHED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ThreadModeAlreadyBackground">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_THREAD_MODE_ALREADY_BACKGROUND']/*"/>	
            <unmanaged>ERROR_THREAD_MODE_ALREADY_BACKGROUND</unmanaged>	
            <unmanaged-short>ERROR_THREAD_MODE_ALREADY_BACKGROUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ThreadModeNotBackground">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_THREAD_MODE_NOT_BACKGROUND']/*"/>	
            <unmanaged>ERROR_THREAD_MODE_NOT_BACKGROUND</unmanaged>	
            <unmanaged-short>ERROR_THREAD_MODE_NOT_BACKGROUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ProcessModeAlreadyBackground">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PROCESS_MODE_ALREADY_BACKGROUND']/*"/>	
            <unmanaged>ERROR_PROCESS_MODE_ALREADY_BACKGROUND</unmanaged>	
            <unmanaged-short>ERROR_PROCESS_MODE_ALREADY_BACKGROUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ProcessModeNotBackground">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PROCESS_MODE_NOT_BACKGROUND']/*"/>	
            <unmanaged>ERROR_PROCESS_MODE_NOT_BACKGROUND</unmanaged>	
            <unmanaged-short>ERROR_PROCESS_MODE_NOT_BACKGROUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidAddress">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_ADDRESS']/*"/>	
            <unmanaged>ERROR_INVALID_ADDRESS</unmanaged>	
            <unmanaged-short>ERROR_INVALID_ADDRESS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.UserProfileLoad">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_USER_PROFILE_LOAD']/*"/>	
            <unmanaged>ERROR_USER_PROFILE_LOAD</unmanaged>	
            <unmanaged-short>ERROR_USER_PROFILE_LOAD</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ArithmeticOverflow">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_ARITHMETIC_OVERFLOW']/*"/>	
            <unmanaged>ERROR_ARITHMETIC_OVERFLOW</unmanaged>	
            <unmanaged-short>ERROR_ARITHMETIC_OVERFLOW</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PipeConnected">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PIPE_CONNECTED']/*"/>	
            <unmanaged>ERROR_PIPE_CONNECTED</unmanaged>	
            <unmanaged-short>ERROR_PIPE_CONNECTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PipeListening">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PIPE_LISTENING']/*"/>	
            <unmanaged>ERROR_PIPE_LISTENING</unmanaged>	
            <unmanaged-short>ERROR_PIPE_LISTENING</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VerifierStop">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VERIFIER_STOP']/*"/>	
            <unmanaged>ERROR_VERIFIER_STOP</unmanaged>	
            <unmanaged-short>ERROR_VERIFIER_STOP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.AbiosError">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_ABIOS_ERROR']/*"/>	
            <unmanaged>ERROR_ABIOS_ERROR</unmanaged>	
            <unmanaged-short>ERROR_ABIOS_ERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.Wx86Warning">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_WX86_WARNING']/*"/>	
            <unmanaged>ERROR_WX86_WARNING</unmanaged>	
            <unmanaged-short>ERROR_WX86_WARNING</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.Wx86Error">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_WX86_ERROR']/*"/>	
            <unmanaged>ERROR_WX86_ERROR</unmanaged>	
            <unmanaged-short>ERROR_WX86_ERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TimerNotCanceled">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TIMER_NOT_CANCELED']/*"/>	
            <unmanaged>ERROR_TIMER_NOT_CANCELED</unmanaged>	
            <unmanaged-short>ERROR_TIMER_NOT_CANCELED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.Unwind">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_UNWIND']/*"/>	
            <unmanaged>ERROR_UNWIND</unmanaged>	
            <unmanaged-short>ERROR_UNWIND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.BadStack">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_BAD_STACK']/*"/>	
            <unmanaged>ERROR_BAD_STACK</unmanaged>	
            <unmanaged-short>ERROR_BAD_STACK</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidUnwindTarget">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_UNWIND_TARGET']/*"/>	
            <unmanaged>ERROR_INVALID_UNWIND_TARGET</unmanaged>	
            <unmanaged-short>ERROR_INVALID_UNWIND_TARGET</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidPortAttributes">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_PORT_ATTRIBUTES']/*"/>	
            <unmanaged>ERROR_INVALID_PORT_ATTRIBUTES</unmanaged>	
            <unmanaged-short>ERROR_INVALID_PORT_ATTRIBUTES</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PortMessageTooLong">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PORT_MESSAGE_TOO_LONG']/*"/>	
            <unmanaged>ERROR_PORT_MESSAGE_TOO_LONG</unmanaged>	
            <unmanaged-short>ERROR_PORT_MESSAGE_TOO_LONG</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidQuotaLower">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_QUOTA_LOWER']/*"/>	
            <unmanaged>ERROR_INVALID_QUOTA_LOWER</unmanaged>	
            <unmanaged-short>ERROR_INVALID_QUOTA_LOWER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DeviceAlreadyAttached">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DEVICE_ALREADY_ATTACHED']/*"/>	
            <unmanaged>ERROR_DEVICE_ALREADY_ATTACHED</unmanaged>	
            <unmanaged-short>ERROR_DEVICE_ALREADY_ATTACHED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InstructionMisalignment">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INSTRUCTION_MISALIGNMENT']/*"/>	
            <unmanaged>ERROR_INSTRUCTION_MISALIGNMENT</unmanaged>	
            <unmanaged-short>ERROR_INSTRUCTION_MISALIGNMENT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ProfilingNotStarted">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PROFILING_NOT_STARTED']/*"/>	
            <unmanaged>ERROR_PROFILING_NOT_STARTED</unmanaged>	
            <unmanaged-short>ERROR_PROFILING_NOT_STARTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ProfilingNotStopped">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PROFILING_NOT_STOPPED']/*"/>	
            <unmanaged>ERROR_PROFILING_NOT_STOPPED</unmanaged>	
            <unmanaged-short>ERROR_PROFILING_NOT_STOPPED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CouldNotInterpret">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_COULD_NOT_INTERPRET']/*"/>	
            <unmanaged>ERROR_COULD_NOT_INTERPRET</unmanaged>	
            <unmanaged-short>ERROR_COULD_NOT_INTERPRET</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ProfilingAtLimit">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PROFILING_AT_LIMIT']/*"/>	
            <unmanaged>ERROR_PROFILING_AT_LIMIT</unmanaged>	
            <unmanaged-short>ERROR_PROFILING_AT_LIMIT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CantWait">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CANT_WAIT']/*"/>	
            <unmanaged>ERROR_CANT_WAIT</unmanaged>	
            <unmanaged-short>ERROR_CANT_WAIT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CantTerminateSelf">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CANT_TERMINATE_SELF']/*"/>	
            <unmanaged>ERROR_CANT_TERMINATE_SELF</unmanaged>	
            <unmanaged-short>ERROR_CANT_TERMINATE_SELF</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.UnexpectedMmCreateErr">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_UNEXPECTED_MM_CREATE_ERR']/*"/>	
            <unmanaged>ERROR_UNEXPECTED_MM_CREATE_ERR</unmanaged>	
            <unmanaged-short>ERROR_UNEXPECTED_MM_CREATE_ERR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.UnexpectedMmMapError">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_UNEXPECTED_MM_MAP_ERROR']/*"/>	
            <unmanaged>ERROR_UNEXPECTED_MM_MAP_ERROR</unmanaged>	
            <unmanaged-short>ERROR_UNEXPECTED_MM_MAP_ERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.UnexpectedMmExtendErr">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_UNEXPECTED_MM_EXTEND_ERR']/*"/>	
            <unmanaged>ERROR_UNEXPECTED_MM_EXTEND_ERR</unmanaged>	
            <unmanaged-short>ERROR_UNEXPECTED_MM_EXTEND_ERR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.BadFunctionTable">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_BAD_FUNCTION_TABLE']/*"/>	
            <unmanaged>ERROR_BAD_FUNCTION_TABLE</unmanaged>	
            <unmanaged-short>ERROR_BAD_FUNCTION_TABLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoGuidTranslation">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_GUID_TRANSLATION']/*"/>	
            <unmanaged>ERROR_NO_GUID_TRANSLATION</unmanaged>	
            <unmanaged-short>ERROR_NO_GUID_TRANSLATION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidLdtSize">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_LDT_SIZE']/*"/>	
            <unmanaged>ERROR_INVALID_LDT_SIZE</unmanaged>	
            <unmanaged-short>ERROR_INVALID_LDT_SIZE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidLdtOffset">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_LDT_OFFSET']/*"/>	
            <unmanaged>ERROR_INVALID_LDT_OFFSET</unmanaged>	
            <unmanaged-short>ERROR_INVALID_LDT_OFFSET</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidLdtDescriptor">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_LDT_DESCRIPTOR']/*"/>	
            <unmanaged>ERROR_INVALID_LDT_DESCRIPTOR</unmanaged>	
            <unmanaged-short>ERROR_INVALID_LDT_DESCRIPTOR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TooManyThreads">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TOO_MANY_THREADS']/*"/>	
            <unmanaged>ERROR_TOO_MANY_THREADS</unmanaged>	
            <unmanaged-short>ERROR_TOO_MANY_THREADS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ThreadNotInProcess">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_THREAD_NOT_IN_PROCESS']/*"/>	
            <unmanaged>ERROR_THREAD_NOT_IN_PROCESS</unmanaged>	
            <unmanaged-short>ERROR_THREAD_NOT_IN_PROCESS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PagefileQuotaExceeded">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PAGEFILE_QUOTA_EXCEEDED']/*"/>	
            <unmanaged>ERROR_PAGEFILE_QUOTA_EXCEEDED</unmanaged>	
            <unmanaged-short>ERROR_PAGEFILE_QUOTA_EXCEEDED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LogonServerConflict">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOGON_SERVER_CONFLICT']/*"/>	
            <unmanaged>ERROR_LOGON_SERVER_CONFLICT</unmanaged>	
            <unmanaged-short>ERROR_LOGON_SERVER_CONFLICT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SynchronizationRequired">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SYNCHRONIZATION_REQUIRED']/*"/>	
            <unmanaged>ERROR_SYNCHRONIZATION_REQUIRED</unmanaged>	
            <unmanaged-short>ERROR_SYNCHRONIZATION_REQUIRED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NetOpenFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NET_OPEN_FAILED']/*"/>	
            <unmanaged>ERROR_NET_OPEN_FAILED</unmanaged>	
            <unmanaged-short>ERROR_NET_OPEN_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IoPrivilegeFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IO_PRIVILEGE_FAILED']/*"/>	
            <unmanaged>ERROR_IO_PRIVILEGE_FAILED</unmanaged>	
            <unmanaged-short>ERROR_IO_PRIVILEGE_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ControlCExit">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CONTROL_C_EXIT']/*"/>	
            <unmanaged>ERROR_CONTROL_C_EXIT</unmanaged>	
            <unmanaged-short>ERROR_CONTROL_C_EXIT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MissingSystemfile">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MISSING_SYSTEMFILE']/*"/>	
            <unmanaged>ERROR_MISSING_SYSTEMFILE</unmanaged>	
            <unmanaged-short>ERROR_MISSING_SYSTEMFILE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.UnhandledException">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_UNHANDLED_EXCEPTION']/*"/>	
            <unmanaged>ERROR_UNHANDLED_EXCEPTION</unmanaged>	
            <unmanaged-short>ERROR_UNHANDLED_EXCEPTION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.AppInitFailure">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_APP_INIT_FAILURE']/*"/>	
            <unmanaged>ERROR_APP_INIT_FAILURE</unmanaged>	
            <unmanaged-short>ERROR_APP_INIT_FAILURE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PagefileCreateFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PAGEFILE_CREATE_FAILED']/*"/>	
            <unmanaged>ERROR_PAGEFILE_CREATE_FAILED</unmanaged>	
            <unmanaged-short>ERROR_PAGEFILE_CREATE_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidImageHash">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_IMAGE_HASH']/*"/>	
            <unmanaged>ERROR_INVALID_IMAGE_HASH</unmanaged>	
            <unmanaged-short>ERROR_INVALID_IMAGE_HASH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoPagefile">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_PAGEFILE']/*"/>	
            <unmanaged>ERROR_NO_PAGEFILE</unmanaged>	
            <unmanaged-short>ERROR_NO_PAGEFILE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IllegalFloatContext">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_ILLEGAL_FLOAT_CONTEXT']/*"/>	
            <unmanaged>ERROR_ILLEGAL_FLOAT_CONTEXT</unmanaged>	
            <unmanaged-short>ERROR_ILLEGAL_FLOAT_CONTEXT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoEventPair">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_EVENT_PAIR']/*"/>	
            <unmanaged>ERROR_NO_EVENT_PAIR</unmanaged>	
            <unmanaged-short>ERROR_NO_EVENT_PAIR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DomainCtrlrConfigError">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DOMAIN_CTRLR_CONFIG_ERROR']/*"/>	
            <unmanaged>ERROR_DOMAIN_CTRLR_CONFIG_ERROR</unmanaged>	
            <unmanaged-short>ERROR_DOMAIN_CTRLR_CONFIG_ERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IllegalCharacter">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_ILLEGAL_CHARACTER']/*"/>	
            <unmanaged>ERROR_ILLEGAL_CHARACTER</unmanaged>	
            <unmanaged-short>ERROR_ILLEGAL_CHARACTER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.UndefinedCharacter">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_UNDEFINED_CHARACTER']/*"/>	
            <unmanaged>ERROR_UNDEFINED_CHARACTER</unmanaged>	
            <unmanaged-short>ERROR_UNDEFINED_CHARACTER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FloppyVolume">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FLOPPY_VOLUME']/*"/>	
            <unmanaged>ERROR_FLOPPY_VOLUME</unmanaged>	
            <unmanaged-short>ERROR_FLOPPY_VOLUME</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.BiosFailedToConnectInterrupt">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_BIOS_FAILED_TO_CONNECT_INTERRUPT']/*"/>	
            <unmanaged>ERROR_BIOS_FAILED_TO_CONNECT_INTERRUPT</unmanaged>	
            <unmanaged-short>ERROR_BIOS_FAILED_TO_CONNECT_INTERRUPT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.BackupController">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_BACKUP_CONTROLLER']/*"/>	
            <unmanaged>ERROR_BACKUP_CONTROLLER</unmanaged>	
            <unmanaged-short>ERROR_BACKUP_CONTROLLER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MutantLimitExceeded">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MUTANT_LIMIT_EXCEEDED']/*"/>	
            <unmanaged>ERROR_MUTANT_LIMIT_EXCEEDED</unmanaged>	
            <unmanaged-short>ERROR_MUTANT_LIMIT_EXCEEDED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FsDriverRequired">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FS_DRIVER_REQUIRED']/*"/>	
            <unmanaged>ERROR_FS_DRIVER_REQUIRED</unmanaged>	
            <unmanaged-short>ERROR_FS_DRIVER_REQUIRED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CannotLoadRegistryFile">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CANNOT_LOAD_REGISTRY_FILE']/*"/>	
            <unmanaged>ERROR_CANNOT_LOAD_REGISTRY_FILE</unmanaged>	
            <unmanaged-short>ERROR_CANNOT_LOAD_REGISTRY_FILE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DebugAttachFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DEBUG_ATTACH_FAILED']/*"/>	
            <unmanaged>ERROR_DEBUG_ATTACH_FAILED</unmanaged>	
            <unmanaged-short>ERROR_DEBUG_ATTACH_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SystemProcessTerminated">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SYSTEM_PROCESS_TERMINATED']/*"/>	
            <unmanaged>ERROR_SYSTEM_PROCESS_TERMINATED</unmanaged>	
            <unmanaged-short>ERROR_SYSTEM_PROCESS_TERMINATED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DataNotAccepted">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DATA_NOT_ACCEPTED']/*"/>	
            <unmanaged>ERROR_DATA_NOT_ACCEPTED</unmanaged>	
            <unmanaged-short>ERROR_DATA_NOT_ACCEPTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VdmHardError">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VDM_HARD_ERROR']/*"/>	
            <unmanaged>ERROR_VDM_HARD_ERROR</unmanaged>	
            <unmanaged-short>ERROR_VDM_HARD_ERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DriverCancelTimeout">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DRIVER_CANCEL_TIMEOUT']/*"/>	
            <unmanaged>ERROR_DRIVER_CANCEL_TIMEOUT</unmanaged>	
            <unmanaged-short>ERROR_DRIVER_CANCEL_TIMEOUT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ReplyMessageMismatch">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_REPLY_MESSAGE_MISMATCH']/*"/>	
            <unmanaged>ERROR_REPLY_MESSAGE_MISMATCH</unmanaged>	
            <unmanaged-short>ERROR_REPLY_MESSAGE_MISMATCH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LostWritebehindData">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOST_WRITEBEHIND_DATA']/*"/>	
            <unmanaged>ERROR_LOST_WRITEBEHIND_DATA</unmanaged>	
            <unmanaged-short>ERROR_LOST_WRITEBEHIND_DATA</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClientServerParametersInvalid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLIENT_SERVER_PARAMETERS_INVALID']/*"/>	
            <unmanaged>ERROR_CLIENT_SERVER_PARAMETERS_INVALID</unmanaged>	
            <unmanaged-short>ERROR_CLIENT_SERVER_PARAMETERS_INVALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NotTinyStream">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NOT_TINY_STREAM']/*"/>	
            <unmanaged>ERROR_NOT_TINY_STREAM</unmanaged>	
            <unmanaged-short>ERROR_NOT_TINY_STREAM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.StackOverflowRead">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_STACK_OVERFLOW_READ']/*"/>	
            <unmanaged>ERROR_STACK_OVERFLOW_READ</unmanaged>	
            <unmanaged-short>ERROR_STACK_OVERFLOW_READ</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ConvertToLarge">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CONVERT_TO_LARGE']/*"/>	
            <unmanaged>ERROR_CONVERT_TO_LARGE</unmanaged>	
            <unmanaged-short>ERROR_CONVERT_TO_LARGE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FoundOutOfScope">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FOUND_OUT_OF_SCOPE']/*"/>	
            <unmanaged>ERROR_FOUND_OUT_OF_SCOPE</unmanaged>	
            <unmanaged-short>ERROR_FOUND_OUT_OF_SCOPE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.AllocateBucket">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_ALLOCATE_BUCKET']/*"/>	
            <unmanaged>ERROR_ALLOCATE_BUCKET</unmanaged>	
            <unmanaged-short>ERROR_ALLOCATE_BUCKET</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MarshallOverflow">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MARSHALL_OVERFLOW']/*"/>	
            <unmanaged>ERROR_MARSHALL_OVERFLOW</unmanaged>	
            <unmanaged-short>ERROR_MARSHALL_OVERFLOW</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidVariant">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_VARIANT']/*"/>	
            <unmanaged>ERROR_INVALID_VARIANT</unmanaged>	
            <unmanaged-short>ERROR_INVALID_VARIANT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.BadCompressionBuffer">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_BAD_COMPRESSION_BUFFER']/*"/>	
            <unmanaged>ERROR_BAD_COMPRESSION_BUFFER</unmanaged>	
            <unmanaged-short>ERROR_BAD_COMPRESSION_BUFFER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.AuditFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_AUDIT_FAILED']/*"/>	
            <unmanaged>ERROR_AUDIT_FAILED</unmanaged>	
            <unmanaged-short>ERROR_AUDIT_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TimerResolutionNotSet">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TIMER_RESOLUTION_NOT_SET']/*"/>	
            <unmanaged>ERROR_TIMER_RESOLUTION_NOT_SET</unmanaged>	
            <unmanaged-short>ERROR_TIMER_RESOLUTION_NOT_SET</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InsufficientLogonInformation">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INSUFFICIENT_LOGON_INFO']/*"/>	
            <unmanaged>ERROR_INSUFFICIENT_LOGON_INFO</unmanaged>	
            <unmanaged-short>ERROR_INSUFFICIENT_LOGON_INFO</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.BadDllEntrypoint">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_BAD_DLL_ENTRYPOINT']/*"/>	
            <unmanaged>ERROR_BAD_DLL_ENTRYPOINT</unmanaged>	
            <unmanaged-short>ERROR_BAD_DLL_ENTRYPOINT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.BadServiceEntrypoint">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_BAD_SERVICE_ENTRYPOINT']/*"/>	
            <unmanaged>ERROR_BAD_SERVICE_ENTRYPOINT</unmanaged>	
            <unmanaged-short>ERROR_BAD_SERVICE_ENTRYPOINT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpAddressConflict1">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IP_ADDRESS_CONFLICT1']/*"/>	
            <unmanaged>ERROR_IP_ADDRESS_CONFLICT1</unmanaged>	
            <unmanaged-short>ERROR_IP_ADDRESS_CONFLICT1</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpAddressConflict2">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IP_ADDRESS_CONFLICT2']/*"/>	
            <unmanaged>ERROR_IP_ADDRESS_CONFLICT2</unmanaged>	
            <unmanaged-short>ERROR_IP_ADDRESS_CONFLICT2</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.RegistryQuotaLimit">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_REGISTRY_QUOTA_LIMIT']/*"/>	
            <unmanaged>ERROR_REGISTRY_QUOTA_LIMIT</unmanaged>	
            <unmanaged-short>ERROR_REGISTRY_QUOTA_LIMIT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoCallbackActive">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_CALLBACK_ACTIVE']/*"/>	
            <unmanaged>ERROR_NO_CALLBACK_ACTIVE</unmanaged>	
            <unmanaged-short>ERROR_NO_CALLBACK_ACTIVE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PwdTooShort">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PWD_TOO_SHORT']/*"/>	
            <unmanaged>ERROR_PWD_TOO_SHORT</unmanaged>	
            <unmanaged-short>ERROR_PWD_TOO_SHORT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PwdTooRecent">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PWD_TOO_RECENT']/*"/>	
            <unmanaged>ERROR_PWD_TOO_RECENT</unmanaged>	
            <unmanaged-short>ERROR_PWD_TOO_RECENT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PwdHistoryConflict">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PWD_HISTORY_CONFLICT']/*"/>	
            <unmanaged>ERROR_PWD_HISTORY_CONFLICT</unmanaged>	
            <unmanaged-short>ERROR_PWD_HISTORY_CONFLICT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.UnsupportedCompression">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_UNSUPPORTED_COMPRESSION']/*"/>	
            <unmanaged>ERROR_UNSUPPORTED_COMPRESSION</unmanaged>	
            <unmanaged-short>ERROR_UNSUPPORTED_COMPRESSION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidHwProfile">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_HW_PROFILE']/*"/>	
            <unmanaged>ERROR_INVALID_HW_PROFILE</unmanaged>	
            <unmanaged-short>ERROR_INVALID_HW_PROFILE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidPlugplayDevicePath">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_PLUGPLAY_DEVICE_PATH']/*"/>	
            <unmanaged>ERROR_INVALID_PLUGPLAY_DEVICE_PATH</unmanaged>	
            <unmanaged-short>ERROR_INVALID_PLUGPLAY_DEVICE_PATH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.QuotaListInconsistent">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_QUOTA_LIST_INCONSISTENT']/*"/>	
            <unmanaged>ERROR_QUOTA_LIST_INCONSISTENT</unmanaged>	
            <unmanaged-short>ERROR_QUOTA_LIST_INCONSISTENT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EvaluationExpiration">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EVALUATION_EXPIRATION']/*"/>	
            <unmanaged>ERROR_EVALUATION_EXPIRATION</unmanaged>	
            <unmanaged-short>ERROR_EVALUATION_EXPIRATION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IllegalDllRelocation">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_ILLEGAL_DLL_RELOCATION']/*"/>	
            <unmanaged>ERROR_ILLEGAL_DLL_RELOCATION</unmanaged>	
            <unmanaged-short>ERROR_ILLEGAL_DLL_RELOCATION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DllInitFailedLogoff">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DLL_INIT_FAILED_LOGOFF']/*"/>	
            <unmanaged>ERROR_DLL_INIT_FAILED_LOGOFF</unmanaged>	
            <unmanaged-short>ERROR_DLL_INIT_FAILED_LOGOFF</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ValidateContinue">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VALIDATE_CONTINUE']/*"/>	
            <unmanaged>ERROR_VALIDATE_CONTINUE</unmanaged>	
            <unmanaged-short>ERROR_VALIDATE_CONTINUE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoMoreMatches">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_MORE_MATCHES']/*"/>	
            <unmanaged>ERROR_NO_MORE_MATCHES</unmanaged>	
            <unmanaged-short>ERROR_NO_MORE_MATCHES</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.RangeListConflict">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_RANGE_LIST_CONFLICT']/*"/>	
            <unmanaged>ERROR_RANGE_LIST_CONFLICT</unmanaged>	
            <unmanaged-short>ERROR_RANGE_LIST_CONFLICT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ServerSidMismatch">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SERVER_SID_MISMATCH']/*"/>	
            <unmanaged>ERROR_SERVER_SID_MISMATCH</unmanaged>	
            <unmanaged-short>ERROR_SERVER_SID_MISMATCH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CantEnableDenyOnly">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CANT_ENABLE_DENY_ONLY']/*"/>	
            <unmanaged>ERROR_CANT_ENABLE_DENY_ONLY</unmanaged>	
            <unmanaged-short>ERROR_CANT_ENABLE_DENY_ONLY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FloatMultipleFaults">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FLOAT_MULTIPLE_FAULTS']/*"/>	
            <unmanaged>ERROR_FLOAT_MULTIPLE_FAULTS</unmanaged>	
            <unmanaged-short>ERROR_FLOAT_MULTIPLE_FAULTS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FloatMultipleTraps">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FLOAT_MULTIPLE_TRAPS']/*"/>	
            <unmanaged>ERROR_FLOAT_MULTIPLE_TRAPS</unmanaged>	
            <unmanaged-short>ERROR_FLOAT_MULTIPLE_TRAPS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.Nointerface">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NOINTERFACE']/*"/>	
            <unmanaged>ERROR_NOINTERFACE</unmanaged>	
            <unmanaged-short>ERROR_NOINTERFACE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DriverFailedSleep">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DRIVER_FAILED_SLEEP']/*"/>	
            <unmanaged>ERROR_DRIVER_FAILED_SLEEP</unmanaged>	
            <unmanaged-short>ERROR_DRIVER_FAILED_SLEEP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CorruptSystemFile">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CORRUPT_SYSTEM_FILE']/*"/>	
            <unmanaged>ERROR_CORRUPT_SYSTEM_FILE</unmanaged>	
            <unmanaged-short>ERROR_CORRUPT_SYSTEM_FILE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CommitmentMinimum">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_COMMITMENT_MINIMUM']/*"/>	
            <unmanaged>ERROR_COMMITMENT_MINIMUM</unmanaged>	
            <unmanaged-short>ERROR_COMMITMENT_MINIMUM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PnpRestartEnumeration">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PNP_RESTART_ENUMERATION']/*"/>	
            <unmanaged>ERROR_PNP_RESTART_ENUMERATION</unmanaged>	
            <unmanaged-short>ERROR_PNP_RESTART_ENUMERATION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SystemImageBadSignature">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SYSTEM_IMAGE_BAD_SIGNATURE']/*"/>	
            <unmanaged>ERROR_SYSTEM_IMAGE_BAD_SIGNATURE</unmanaged>	
            <unmanaged-short>ERROR_SYSTEM_IMAGE_BAD_SIGNATURE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PnpRebootRequired">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PNP_REBOOT_REQUIRED']/*"/>	
            <unmanaged>ERROR_PNP_REBOOT_REQUIRED</unmanaged>	
            <unmanaged-short>ERROR_PNP_REBOOT_REQUIRED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InsufficientPower">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INSUFFICIENT_POWER']/*"/>	
            <unmanaged>ERROR_INSUFFICIENT_POWER</unmanaged>	
            <unmanaged-short>ERROR_INSUFFICIENT_POWER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MultipleFaultViolation">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MULTIPLE_FAULT_VIOLATION']/*"/>	
            <unmanaged>ERROR_MULTIPLE_FAULT_VIOLATION</unmanaged>	
            <unmanaged-short>ERROR_MULTIPLE_FAULT_VIOLATION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SystemShutdown">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SYSTEM_SHUTDOWN']/*"/>	
            <unmanaged>ERROR_SYSTEM_SHUTDOWN</unmanaged>	
            <unmanaged-short>ERROR_SYSTEM_SHUTDOWN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PortNotSet">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PORT_NOT_SET']/*"/>	
            <unmanaged>ERROR_PORT_NOT_SET</unmanaged>	
            <unmanaged-short>ERROR_PORT_NOT_SET</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsVersionCheckFailure">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_VERSION_CHECK_FAILURE']/*"/>	
            <unmanaged>ERROR_DS_VERSION_CHECK_FAILURE</unmanaged>	
            <unmanaged-short>ERROR_DS_VERSION_CHECK_FAILURE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.RangeNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_RANGE_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_RANGE_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_RANGE_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NotSafeModeDriver">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NOT_SAFE_MODE_DRIVER']/*"/>	
            <unmanaged>ERROR_NOT_SAFE_MODE_DRIVER</unmanaged>	
            <unmanaged-short>ERROR_NOT_SAFE_MODE_DRIVER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FailedDriverEntry">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FAILED_DRIVER_ENTRY']/*"/>	
            <unmanaged>ERROR_FAILED_DRIVER_ENTRY</unmanaged>	
            <unmanaged-short>ERROR_FAILED_DRIVER_ENTRY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DeviceEnumerationError">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DEVICE_ENUMERATION_ERROR']/*"/>	
            <unmanaged>ERROR_DEVICE_ENUMERATION_ERROR</unmanaged>	
            <unmanaged-short>ERROR_DEVICE_ENUMERATION_ERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MountPointNotResolved">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MOUNT_POINT_NOT_RESOLVED']/*"/>	
            <unmanaged>ERROR_MOUNT_POINT_NOT_RESOLVED</unmanaged>	
            <unmanaged-short>ERROR_MOUNT_POINT_NOT_RESOLVED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidDeviceObjectParameter">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_DEVICE_OBJECT_PARAMETER']/*"/>	
            <unmanaged>ERROR_INVALID_DEVICE_OBJECT_PARAMETER</unmanaged>	
            <unmanaged-short>ERROR_INVALID_DEVICE_OBJECT_PARAMETER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.McaOccured">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MCA_OCCURED']/*"/>	
            <unmanaged>ERROR_MCA_OCCURED</unmanaged>	
            <unmanaged-short>ERROR_MCA_OCCURED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DriverDatabaseError">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DRIVER_DATABASE_ERROR']/*"/>	
            <unmanaged>ERROR_DRIVER_DATABASE_ERROR</unmanaged>	
            <unmanaged-short>ERROR_DRIVER_DATABASE_ERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SystemHiveTooLarge">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SYSTEM_HIVE_TOO_LARGE']/*"/>	
            <unmanaged>ERROR_SYSTEM_HIVE_TOO_LARGE</unmanaged>	
            <unmanaged-short>ERROR_SYSTEM_HIVE_TOO_LARGE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DriverFailedPriorUnload">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DRIVER_FAILED_PRIOR_UNLOAD']/*"/>	
            <unmanaged>ERROR_DRIVER_FAILED_PRIOR_UNLOAD</unmanaged>	
            <unmanaged-short>ERROR_DRIVER_FAILED_PRIOR_UNLOAD</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolsnapPrepareHibernate">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLSNAP_PREPARE_HIBERNATE']/*"/>	
            <unmanaged>ERROR_VOLSNAP_PREPARE_HIBERNATE</unmanaged>	
            <unmanaged-short>ERROR_VOLSNAP_PREPARE_HIBERNATE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.HibernationFailure">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_HIBERNATION_FAILURE']/*"/>	
            <unmanaged>ERROR_HIBERNATION_FAILURE</unmanaged>	
            <unmanaged-short>ERROR_HIBERNATION_FAILURE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PwdTooLong">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PWD_TOO_LONG']/*"/>	
            <unmanaged>ERROR_PWD_TOO_LONG</unmanaged>	
            <unmanaged-short>ERROR_PWD_TOO_LONG</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FileSystemLimitation">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FILE_SYSTEM_LIMITATION']/*"/>	
            <unmanaged>ERROR_FILE_SYSTEM_LIMITATION</unmanaged>	
            <unmanaged-short>ERROR_FILE_SYSTEM_LIMITATION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.AssertionFailure">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_ASSERTION_FAILURE']/*"/>	
            <unmanaged>ERROR_ASSERTION_FAILURE</unmanaged>	
            <unmanaged-short>ERROR_ASSERTION_FAILURE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.AcpiError">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_ACPI_ERROR']/*"/>	
            <unmanaged>ERROR_ACPI_ERROR</unmanaged>	
            <unmanaged-short>ERROR_ACPI_ERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.WowAssertion">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_WOW_ASSERTION']/*"/>	
            <unmanaged>ERROR_WOW_ASSERTION</unmanaged>	
            <unmanaged-short>ERROR_WOW_ASSERTION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PnpBadMpsTable">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PNP_BAD_MPS_TABLE']/*"/>	
            <unmanaged>ERROR_PNP_BAD_MPS_TABLE</unmanaged>	
            <unmanaged-short>ERROR_PNP_BAD_MPS_TABLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PnpTranslationFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PNP_TRANSLATION_FAILED']/*"/>	
            <unmanaged>ERROR_PNP_TRANSLATION_FAILED</unmanaged>	
            <unmanaged-short>ERROR_PNP_TRANSLATION_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PnpIrqTranslationFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PNP_IRQ_TRANSLATION_FAILED']/*"/>	
            <unmanaged>ERROR_PNP_IRQ_TRANSLATION_FAILED</unmanaged>	
            <unmanaged-short>ERROR_PNP_IRQ_TRANSLATION_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PnpInvalidId">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PNP_INVALID_ID']/*"/>	
            <unmanaged>ERROR_PNP_INVALID_ID</unmanaged>	
            <unmanaged-short>ERROR_PNP_INVALID_ID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.WakeSystemDebugger">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_WAKE_SYSTEM_DEBUGGER']/*"/>	
            <unmanaged>ERROR_WAKE_SYSTEM_DEBUGGER</unmanaged>	
            <unmanaged-short>ERROR_WAKE_SYSTEM_DEBUGGER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.HandlesClosed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_HANDLES_CLOSED']/*"/>	
            <unmanaged>ERROR_HANDLES_CLOSED</unmanaged>	
            <unmanaged-short>ERROR_HANDLES_CLOSED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ExtraneousInformation">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EXTRANEOUS_INFORMATION']/*"/>	
            <unmanaged>ERROR_EXTRANEOUS_INFORMATION</unmanaged>	
            <unmanaged-short>ERROR_EXTRANEOUS_INFORMATION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.RxactCommitNecessary">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_RXACT_COMMIT_NECESSARY']/*"/>	
            <unmanaged>ERROR_RXACT_COMMIT_NECESSARY</unmanaged>	
            <unmanaged-short>ERROR_RXACT_COMMIT_NECESSARY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MediaCheck">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MEDIA_CHECK']/*"/>	
            <unmanaged>ERROR_MEDIA_CHECK</unmanaged>	
            <unmanaged-short>ERROR_MEDIA_CHECK</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GuidSubstitutionMade">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GUID_SUBSTITUTION_MADE']/*"/>	
            <unmanaged>ERROR_GUID_SUBSTITUTION_MADE</unmanaged>	
            <unmanaged-short>ERROR_GUID_SUBSTITUTION_MADE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.StoppedOnSymlink">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_STOPPED_ON_SYMLINK']/*"/>	
            <unmanaged>ERROR_STOPPED_ON_SYMLINK</unmanaged>	
            <unmanaged-short>ERROR_STOPPED_ON_SYMLINK</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.Longjump">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LONGJUMP']/*"/>	
            <unmanaged>ERROR_LONGJUMP</unmanaged>	
            <unmanaged-short>ERROR_LONGJUMP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PlugplayQueryVetoed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PLUGPLAY_QUERY_VETOED']/*"/>	
            <unmanaged>ERROR_PLUGPLAY_QUERY_VETOED</unmanaged>	
            <unmanaged-short>ERROR_PLUGPLAY_QUERY_VETOED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.UnwindConsolidate">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_UNWIND_CONSOLIDATE']/*"/>	
            <unmanaged>ERROR_UNWIND_CONSOLIDATE</unmanaged>	
            <unmanaged-short>ERROR_UNWIND_CONSOLIDATE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.RegistryHiveRecovered">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_REGISTRY_HIVE_RECOVERED']/*"/>	
            <unmanaged>ERROR_REGISTRY_HIVE_RECOVERED</unmanaged>	
            <unmanaged-short>ERROR_REGISTRY_HIVE_RECOVERED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DllMightBeInsecure">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DLL_MIGHT_BE_INSECURE']/*"/>	
            <unmanaged>ERROR_DLL_MIGHT_BE_INSECURE</unmanaged>	
            <unmanaged-short>ERROR_DLL_MIGHT_BE_INSECURE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DllMightBeIncompatible">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DLL_MIGHT_BE_INCOMPATIBLE']/*"/>	
            <unmanaged>ERROR_DLL_MIGHT_BE_INCOMPATIBLE</unmanaged>	
            <unmanaged-short>ERROR_DLL_MIGHT_BE_INCOMPATIBLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DbgExceptionNotHandled">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DBG_EXCEPTION_NOT_HANDLED']/*"/>	
            <unmanaged>ERROR_DBG_EXCEPTION_NOT_HANDLED</unmanaged>	
            <unmanaged-short>ERROR_DBG_EXCEPTION_NOT_HANDLED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DbgReplyLater">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DBG_REPLY_LATER']/*"/>	
            <unmanaged>ERROR_DBG_REPLY_LATER</unmanaged>	
            <unmanaged-short>ERROR_DBG_REPLY_LATER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DbgUnableToProvideHandle">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DBG_UNABLE_TO_PROVIDE_HANDLE']/*"/>	
            <unmanaged>ERROR_DBG_UNABLE_TO_PROVIDE_HANDLE</unmanaged>	
            <unmanaged-short>ERROR_DBG_UNABLE_TO_PROVIDE_HANDLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DbgTerminateThread">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DBG_TERMINATE_THREAD']/*"/>	
            <unmanaged>ERROR_DBG_TERMINATE_THREAD</unmanaged>	
            <unmanaged-short>ERROR_DBG_TERMINATE_THREAD</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DbgTerminateProcess">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DBG_TERMINATE_PROCESS']/*"/>	
            <unmanaged>ERROR_DBG_TERMINATE_PROCESS</unmanaged>	
            <unmanaged-short>ERROR_DBG_TERMINATE_PROCESS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DbgControlC">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DBG_CONTROL_C']/*"/>	
            <unmanaged>ERROR_DBG_CONTROL_C</unmanaged>	
            <unmanaged-short>ERROR_DBG_CONTROL_C</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DbgPrintexceptionC">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DBG_PRINTEXCEPTION_C']/*"/>	
            <unmanaged>ERROR_DBG_PRINTEXCEPTION_C</unmanaged>	
            <unmanaged-short>ERROR_DBG_PRINTEXCEPTION_C</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DbgRipexception">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DBG_RIPEXCEPTION']/*"/>	
            <unmanaged>ERROR_DBG_RIPEXCEPTION</unmanaged>	
            <unmanaged-short>ERROR_DBG_RIPEXCEPTION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DbgControlBreak">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DBG_CONTROL_BREAK']/*"/>	
            <unmanaged>ERROR_DBG_CONTROL_BREAK</unmanaged>	
            <unmanaged-short>ERROR_DBG_CONTROL_BREAK</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DbgCommandException">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DBG_COMMAND_EXCEPTION']/*"/>	
            <unmanaged>ERROR_DBG_COMMAND_EXCEPTION</unmanaged>	
            <unmanaged-short>ERROR_DBG_COMMAND_EXCEPTION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ObjectNameExists">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_OBJECT_NAME_EXISTS']/*"/>	
            <unmanaged>ERROR_OBJECT_NAME_EXISTS</unmanaged>	
            <unmanaged-short>ERROR_OBJECT_NAME_EXISTS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ThreadWasSuspended">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_THREAD_WAS_SUSPENDED']/*"/>	
            <unmanaged>ERROR_THREAD_WAS_SUSPENDED</unmanaged>	
            <unmanaged-short>ERROR_THREAD_WAS_SUSPENDED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ImageNotAtBase">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IMAGE_NOT_AT_BASE']/*"/>	
            <unmanaged>ERROR_IMAGE_NOT_AT_BASE</unmanaged>	
            <unmanaged-short>ERROR_IMAGE_NOT_AT_BASE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.RxactStateCreated">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_RXACT_STATE_CREATED']/*"/>	
            <unmanaged>ERROR_RXACT_STATE_CREATED</unmanaged>	
            <unmanaged-short>ERROR_RXACT_STATE_CREATED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SegmentNotification">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SEGMENT_NOTIFICATION']/*"/>	
            <unmanaged>ERROR_SEGMENT_NOTIFICATION</unmanaged>	
            <unmanaged-short>ERROR_SEGMENT_NOTIFICATION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.BadCurrentDirectory">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_BAD_CURRENT_DIRECTORY']/*"/>	
            <unmanaged>ERROR_BAD_CURRENT_DIRECTORY</unmanaged>	
            <unmanaged-short>ERROR_BAD_CURRENT_DIRECTORY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FtReadRecoveryFromBackup">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FT_READ_RECOVERY_FROM_BACKUP']/*"/>	
            <unmanaged>ERROR_FT_READ_RECOVERY_FROM_BACKUP</unmanaged>	
            <unmanaged-short>ERROR_FT_READ_RECOVERY_FROM_BACKUP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FtWriteRecovery">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FT_WRITE_RECOVERY']/*"/>	
            <unmanaged>ERROR_FT_WRITE_RECOVERY</unmanaged>	
            <unmanaged-short>ERROR_FT_WRITE_RECOVERY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ImageMachineTypeMismatch">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IMAGE_MACHINE_TYPE_MISMATCH']/*"/>	
            <unmanaged>ERROR_IMAGE_MACHINE_TYPE_MISMATCH</unmanaged>	
            <unmanaged-short>ERROR_IMAGE_MACHINE_TYPE_MISMATCH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ReceivePartial">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_RECEIVE_PARTIAL']/*"/>	
            <unmanaged>ERROR_RECEIVE_PARTIAL</unmanaged>	
            <unmanaged-short>ERROR_RECEIVE_PARTIAL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ReceiveExpedited">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_RECEIVE_EXPEDITED']/*"/>	
            <unmanaged>ERROR_RECEIVE_EXPEDITED</unmanaged>	
            <unmanaged-short>ERROR_RECEIVE_EXPEDITED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ReceivePartialExpedited">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_RECEIVE_PARTIAL_EXPEDITED']/*"/>	
            <unmanaged>ERROR_RECEIVE_PARTIAL_EXPEDITED</unmanaged>	
            <unmanaged-short>ERROR_RECEIVE_PARTIAL_EXPEDITED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EventDone">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EVENT_DONE']/*"/>	
            <unmanaged>ERROR_EVENT_DONE</unmanaged>	
            <unmanaged-short>ERROR_EVENT_DONE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EventPending">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EVENT_PENDING']/*"/>	
            <unmanaged>ERROR_EVENT_PENDING</unmanaged>	
            <unmanaged-short>ERROR_EVENT_PENDING</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CheckingFileSystem">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CHECKING_FILE_SYSTEM']/*"/>	
            <unmanaged>ERROR_CHECKING_FILE_SYSTEM</unmanaged>	
            <unmanaged-short>ERROR_CHECKING_FILE_SYSTEM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FatalAppExit">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FATAL_APP_EXIT']/*"/>	
            <unmanaged>ERROR_FATAL_APP_EXIT</unmanaged>	
            <unmanaged-short>ERROR_FATAL_APP_EXIT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PredefinedHandle">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PREDEFINED_HANDLE']/*"/>	
            <unmanaged>ERROR_PREDEFINED_HANDLE</unmanaged>	
            <unmanaged-short>ERROR_PREDEFINED_HANDLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.WasUnlocked">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_WAS_UNLOCKED']/*"/>	
            <unmanaged>ERROR_WAS_UNLOCKED</unmanaged>	
            <unmanaged-short>ERROR_WAS_UNLOCKED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ServiceNotification">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SERVICE_NOTIFICATION']/*"/>	
            <unmanaged>ERROR_SERVICE_NOTIFICATION</unmanaged>	
            <unmanaged-short>ERROR_SERVICE_NOTIFICATION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.WasLocked">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_WAS_LOCKED']/*"/>	
            <unmanaged>ERROR_WAS_LOCKED</unmanaged>	
            <unmanaged-short>ERROR_WAS_LOCKED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LogHardError">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOG_HARD_ERROR']/*"/>	
            <unmanaged>ERROR_LOG_HARD_ERROR</unmanaged>	
            <unmanaged-short>ERROR_LOG_HARD_ERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.AlreadyWin32">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_ALREADY_WIN32']/*"/>	
            <unmanaged>ERROR_ALREADY_WIN32</unmanaged>	
            <unmanaged-short>ERROR_ALREADY_WIN32</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ImageMachineTypeMismatchExe">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IMAGE_MACHINE_TYPE_MISMATCH_EXE']/*"/>	
            <unmanaged>ERROR_IMAGE_MACHINE_TYPE_MISMATCH_EXE</unmanaged>	
            <unmanaged-short>ERROR_IMAGE_MACHINE_TYPE_MISMATCH_EXE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoYieldPerformed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_YIELD_PERFORMED']/*"/>	
            <unmanaged>ERROR_NO_YIELD_PERFORMED</unmanaged>	
            <unmanaged-short>ERROR_NO_YIELD_PERFORMED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TimerResumeIgnored">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TIMER_RESUME_IGNORED']/*"/>	
            <unmanaged>ERROR_TIMER_RESUME_IGNORED</unmanaged>	
            <unmanaged-short>ERROR_TIMER_RESUME_IGNORED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ArbitrationUnhandled">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_ARBITRATION_UNHANDLED']/*"/>	
            <unmanaged>ERROR_ARBITRATION_UNHANDLED</unmanaged>	
            <unmanaged-short>ERROR_ARBITRATION_UNHANDLED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CardbusNotSupported">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CARDBUS_NOT_SUPPORTED']/*"/>	
            <unmanaged>ERROR_CARDBUS_NOT_SUPPORTED</unmanaged>	
            <unmanaged-short>ERROR_CARDBUS_NOT_SUPPORTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MpProcessorMismatch">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MP_PROCESSOR_MISMATCH']/*"/>	
            <unmanaged>ERROR_MP_PROCESSOR_MISMATCH</unmanaged>	
            <unmanaged-short>ERROR_MP_PROCESSOR_MISMATCH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.Hibernated">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_HIBERNATED']/*"/>	
            <unmanaged>ERROR_HIBERNATED</unmanaged>	
            <unmanaged-short>ERROR_HIBERNATED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ResumeHibernation">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_RESUME_HIBERNATION']/*"/>	
            <unmanaged>ERROR_RESUME_HIBERNATION</unmanaged>	
            <unmanaged-short>ERROR_RESUME_HIBERNATION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FirmwareUpdated">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FIRMWARE_UPDATED']/*"/>	
            <unmanaged>ERROR_FIRMWARE_UPDATED</unmanaged>	
            <unmanaged-short>ERROR_FIRMWARE_UPDATED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DriversLeakingLockedPages">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DRIVERS_LEAKING_LOCKED_PAGES']/*"/>	
            <unmanaged>ERROR_DRIVERS_LEAKING_LOCKED_PAGES</unmanaged>	
            <unmanaged-short>ERROR_DRIVERS_LEAKING_LOCKED_PAGES</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.WakeSystem">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_WAKE_SYSTEM']/*"/>	
            <unmanaged>ERROR_WAKE_SYSTEM</unmanaged>	
            <unmanaged-short>ERROR_WAKE_SYSTEM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.Wait1">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_WAIT_1']/*"/>	
            <unmanaged>ERROR_WAIT_1</unmanaged>	
            <unmanaged-short>ERROR_WAIT_1</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.Wait2">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_WAIT_2']/*"/>	
            <unmanaged>ERROR_WAIT_2</unmanaged>	
            <unmanaged-short>ERROR_WAIT_2</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.Wait3">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_WAIT_3']/*"/>	
            <unmanaged>ERROR_WAIT_3</unmanaged>	
            <unmanaged-short>ERROR_WAIT_3</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.Wait63">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_WAIT_63']/*"/>	
            <unmanaged>ERROR_WAIT_63</unmanaged>	
            <unmanaged-short>ERROR_WAIT_63</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.AbandonedWait0">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_ABANDONED_WAIT_0']/*"/>	
            <unmanaged>ERROR_ABANDONED_WAIT_0</unmanaged>	
            <unmanaged-short>ERROR_ABANDONED_WAIT_0</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.AbandonedWait63">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_ABANDONED_WAIT_63']/*"/>	
            <unmanaged>ERROR_ABANDONED_WAIT_63</unmanaged>	
            <unmanaged-short>ERROR_ABANDONED_WAIT_63</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.UserApc">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_USER_APC']/*"/>	
            <unmanaged>ERROR_USER_APC</unmanaged>	
            <unmanaged-short>ERROR_USER_APC</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.KernelApc">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_KERNEL_APC']/*"/>	
            <unmanaged>ERROR_KERNEL_APC</unmanaged>	
            <unmanaged-short>ERROR_KERNEL_APC</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.Alerted">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_ALERTED']/*"/>	
            <unmanaged>ERROR_ALERTED</unmanaged>	
            <unmanaged-short>ERROR_ALERTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ElevationRequired">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_ELEVATION_REQUIRED']/*"/>	
            <unmanaged>ERROR_ELEVATION_REQUIRED</unmanaged>	
            <unmanaged-short>ERROR_ELEVATION_REQUIRED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.Reparse">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_REPARSE']/*"/>	
            <unmanaged>ERROR_REPARSE</unmanaged>	
            <unmanaged-short>ERROR_REPARSE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.OplockBreakInProgress">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_OPLOCK_BREAK_IN_PROGRESS']/*"/>	
            <unmanaged>ERROR_OPLOCK_BREAK_IN_PROGRESS</unmanaged>	
            <unmanaged-short>ERROR_OPLOCK_BREAK_IN_PROGRESS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolumeMounted">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLUME_MOUNTED']/*"/>	
            <unmanaged>ERROR_VOLUME_MOUNTED</unmanaged>	
            <unmanaged-short>ERROR_VOLUME_MOUNTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.RxactCommitted">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_RXACT_COMMITTED']/*"/>	
            <unmanaged>ERROR_RXACT_COMMITTED</unmanaged>	
            <unmanaged-short>ERROR_RXACT_COMMITTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NotifyCleanup">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NOTIFY_CLEANUP']/*"/>	
            <unmanaged>ERROR_NOTIFY_CLEANUP</unmanaged>	
            <unmanaged-short>ERROR_NOTIFY_CLEANUP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PrimaryTransportConnectFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PRIMARY_TRANSPORT_CONNECT_FAILED']/*"/>	
            <unmanaged>ERROR_PRIMARY_TRANSPORT_CONNECT_FAILED</unmanaged>	
            <unmanaged-short>ERROR_PRIMARY_TRANSPORT_CONNECT_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PageFaultTransition">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PAGE_FAULT_TRANSITION']/*"/>	
            <unmanaged>ERROR_PAGE_FAULT_TRANSITION</unmanaged>	
            <unmanaged-short>ERROR_PAGE_FAULT_TRANSITION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PageFaultDemandZero">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PAGE_FAULT_DEMAND_ZERO']/*"/>	
            <unmanaged>ERROR_PAGE_FAULT_DEMAND_ZERO</unmanaged>	
            <unmanaged-short>ERROR_PAGE_FAULT_DEMAND_ZERO</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PageFaultCopyOnWrite">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PAGE_FAULT_COPY_ON_WRITE']/*"/>	
            <unmanaged>ERROR_PAGE_FAULT_COPY_ON_WRITE</unmanaged>	
            <unmanaged-short>ERROR_PAGE_FAULT_COPY_ON_WRITE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PageFaultGuardPage">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PAGE_FAULT_GUARD_PAGE']/*"/>	
            <unmanaged>ERROR_PAGE_FAULT_GUARD_PAGE</unmanaged>	
            <unmanaged-short>ERROR_PAGE_FAULT_GUARD_PAGE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PageFaultPagingFile">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PAGE_FAULT_PAGING_FILE']/*"/>	
            <unmanaged>ERROR_PAGE_FAULT_PAGING_FILE</unmanaged>	
            <unmanaged-short>ERROR_PAGE_FAULT_PAGING_FILE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CachePageLocked">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CACHE_PAGE_LOCKED']/*"/>	
            <unmanaged>ERROR_CACHE_PAGE_LOCKED</unmanaged>	
            <unmanaged-short>ERROR_CACHE_PAGE_LOCKED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CrashDump">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CRASH_DUMP']/*"/>	
            <unmanaged>ERROR_CRASH_DUMP</unmanaged>	
            <unmanaged-short>ERROR_CRASH_DUMP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.BufferAllZeros">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_BUFFER_ALL_ZEROS']/*"/>	
            <unmanaged>ERROR_BUFFER_ALL_ZEROS</unmanaged>	
            <unmanaged-short>ERROR_BUFFER_ALL_ZEROS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ReparseObject">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_REPARSE_OBJECT']/*"/>	
            <unmanaged>ERROR_REPARSE_OBJECT</unmanaged>	
            <unmanaged-short>ERROR_REPARSE_OBJECT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ResourceRequirementsChanged">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_RESOURCE_REQUIREMENTS_CHANGED']/*"/>	
            <unmanaged>ERROR_RESOURCE_REQUIREMENTS_CHANGED</unmanaged>	
            <unmanaged-short>ERROR_RESOURCE_REQUIREMENTS_CHANGED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TranslationComplete">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TRANSLATION_COMPLETE']/*"/>	
            <unmanaged>ERROR_TRANSLATION_COMPLETE</unmanaged>	
            <unmanaged-short>ERROR_TRANSLATION_COMPLETE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NothingToTerminate">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NOTHING_TO_TERMINATE']/*"/>	
            <unmanaged>ERROR_NOTHING_TO_TERMINATE</unmanaged>	
            <unmanaged-short>ERROR_NOTHING_TO_TERMINATE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ProcessNotInJob">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PROCESS_NOT_IN_JOB']/*"/>	
            <unmanaged>ERROR_PROCESS_NOT_IN_JOB</unmanaged>	
            <unmanaged-short>ERROR_PROCESS_NOT_IN_JOB</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ProcessInJob">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PROCESS_IN_JOB']/*"/>	
            <unmanaged>ERROR_PROCESS_IN_JOB</unmanaged>	
            <unmanaged-short>ERROR_PROCESS_IN_JOB</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolsnapHibernateReady">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLSNAP_HIBERNATE_READY']/*"/>	
            <unmanaged>ERROR_VOLSNAP_HIBERNATE_READY</unmanaged>	
            <unmanaged-short>ERROR_VOLSNAP_HIBERNATE_READY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FsfilterOperationCompletedSuccessfully">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FSFILTER_OP_COMPLETED_SUCCESSFULLY']/*"/>	
            <unmanaged>ERROR_FSFILTER_OP_COMPLETED_SUCCESSFULLY</unmanaged>	
            <unmanaged-short>ERROR_FSFILTER_OP_COMPLETED_SUCCESSFULLY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InterruptVectorAlreadyConnected">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INTERRUPT_VECTOR_ALREADY_CONNECTED']/*"/>	
            <unmanaged>ERROR_INTERRUPT_VECTOR_ALREADY_CONNECTED</unmanaged>	
            <unmanaged-short>ERROR_INTERRUPT_VECTOR_ALREADY_CONNECTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InterruptStillConnected">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INTERRUPT_STILL_CONNECTED']/*"/>	
            <unmanaged>ERROR_INTERRUPT_STILL_CONNECTED</unmanaged>	
            <unmanaged-short>ERROR_INTERRUPT_STILL_CONNECTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.WaitForOplock">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_WAIT_FOR_OPLOCK']/*"/>	
            <unmanaged>ERROR_WAIT_FOR_OPLOCK</unmanaged>	
            <unmanaged-short>ERROR_WAIT_FOR_OPLOCK</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DbgExceptionHandled">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DBG_EXCEPTION_HANDLED']/*"/>	
            <unmanaged>ERROR_DBG_EXCEPTION_HANDLED</unmanaged>	
            <unmanaged-short>ERROR_DBG_EXCEPTION_HANDLED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DbgContinue">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DBG_CONTINUE']/*"/>	
            <unmanaged>ERROR_DBG_CONTINUE</unmanaged>	
            <unmanaged-short>ERROR_DBG_CONTINUE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CallbackPopStack">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CALLBACK_POP_STACK']/*"/>	
            <unmanaged>ERROR_CALLBACK_POP_STACK</unmanaged>	
            <unmanaged-short>ERROR_CALLBACK_POP_STACK</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CompressionDisabled">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_COMPRESSION_DISABLED']/*"/>	
            <unmanaged>ERROR_COMPRESSION_DISABLED</unmanaged>	
            <unmanaged-short>ERROR_COMPRESSION_DISABLED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.Cantfetchbackwards">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CANTFETCHBACKWARDS']/*"/>	
            <unmanaged>ERROR_CANTFETCHBACKWARDS</unmanaged>	
            <unmanaged-short>ERROR_CANTFETCHBACKWARDS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.Cantscrollbackwards">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CANTSCROLLBACKWARDS']/*"/>	
            <unmanaged>ERROR_CANTSCROLLBACKWARDS</unmanaged>	
            <unmanaged-short>ERROR_CANTSCROLLBACKWARDS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.Rowsnotreleased">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_ROWSNOTRELEASED']/*"/>	
            <unmanaged>ERROR_ROWSNOTRELEASED</unmanaged>	
            <unmanaged-short>ERROR_ROWSNOTRELEASED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.BadAccessorFlags">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_BAD_ACCESSOR_FLAGS']/*"/>	
            <unmanaged>ERROR_BAD_ACCESSOR_FLAGS</unmanaged>	
            <unmanaged-short>ERROR_BAD_ACCESSOR_FLAGS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ErrorsEncountered">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_ERRORS_ENCOUNTERED']/*"/>	
            <unmanaged>ERROR_ERRORS_ENCOUNTERED</unmanaged>	
            <unmanaged-short>ERROR_ERRORS_ENCOUNTERED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NotCapable">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NOT_CAPABLE']/*"/>	
            <unmanaged>ERROR_NOT_CAPABLE</unmanaged>	
            <unmanaged-short>ERROR_NOT_CAPABLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.RequestOutOfSequence">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_REQUEST_OUT_OF_SEQUENCE']/*"/>	
            <unmanaged>ERROR_REQUEST_OUT_OF_SEQUENCE</unmanaged>	
            <unmanaged-short>ERROR_REQUEST_OUT_OF_SEQUENCE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VersionParseError">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VERSION_PARSE_ERROR']/*"/>	
            <unmanaged>ERROR_VERSION_PARSE_ERROR</unmanaged>	
            <unmanaged-short>ERROR_VERSION_PARSE_ERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.Badstartposition">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_BADSTARTPOSITION']/*"/>	
            <unmanaged>ERROR_BADSTARTPOSITION</unmanaged>	
            <unmanaged-short>ERROR_BADSTARTPOSITION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MemoryHardware">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MEMORY_HARDWARE']/*"/>	
            <unmanaged>ERROR_MEMORY_HARDWARE</unmanaged>	
            <unmanaged-short>ERROR_MEMORY_HARDWARE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DiskRepairDisabled">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DISK_REPAIR_DISABLED']/*"/>	
            <unmanaged>ERROR_DISK_REPAIR_DISABLED</unmanaged>	
            <unmanaged-short>ERROR_DISK_REPAIR_DISABLED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InsufficientResourceForSpecifiedSharedSectionSize">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INSUFFICIENT_RESOURCE_FOR_SPECIFIED_SHARED_SECTION_SIZE']/*"/>	
            <unmanaged>ERROR_INSUFFICIENT_RESOURCE_FOR_SPECIFIED_SHARED_SECTION_SIZE</unmanaged>	
            <unmanaged-short>ERROR_INSUFFICIENT_RESOURCE_FOR_SPECIFIED_SHARED_SECTION_SIZE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SystemPowerstateTransition">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SYSTEM_POWERSTATE_TRANSITION']/*"/>	
            <unmanaged>ERROR_SYSTEM_POWERSTATE_TRANSITION</unmanaged>	
            <unmanaged-short>ERROR_SYSTEM_POWERSTATE_TRANSITION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SystemPowerstateComplexTransition">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SYSTEM_POWERSTATE_COMPLEX_TRANSITION']/*"/>	
            <unmanaged>ERROR_SYSTEM_POWERSTATE_COMPLEX_TRANSITION</unmanaged>	
            <unmanaged-short>ERROR_SYSTEM_POWERSTATE_COMPLEX_TRANSITION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.McaException">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MCA_EXCEPTION']/*"/>	
            <unmanaged>ERROR_MCA_EXCEPTION</unmanaged>	
            <unmanaged-short>ERROR_MCA_EXCEPTION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.AccessAuditByPolicy">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_ACCESS_AUDIT_BY_POLICY']/*"/>	
            <unmanaged>ERROR_ACCESS_AUDIT_BY_POLICY</unmanaged>	
            <unmanaged-short>ERROR_ACCESS_AUDIT_BY_POLICY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.AccessDisabledNoSaferUiByPolicy">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_ACCESS_DISABLED_NO_SAFER_UI_BY_POLICY']/*"/>	
            <unmanaged>ERROR_ACCESS_DISABLED_NO_SAFER_UI_BY_POLICY</unmanaged>	
            <unmanaged-short>ERROR_ACCESS_DISABLED_NO_SAFER_UI_BY_POLICY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.AbandonHiberfile">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_ABANDON_HIBERFILE']/*"/>	
            <unmanaged>ERROR_ABANDON_HIBERFILE</unmanaged>	
            <unmanaged-short>ERROR_ABANDON_HIBERFILE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LostWritebehindDataNetworkDisconnected">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOST_WRITEBEHIND_DATA_NETWORK_DISCONNECTED']/*"/>	
            <unmanaged>ERROR_LOST_WRITEBEHIND_DATA_NETWORK_DISCONNECTED</unmanaged>	
            <unmanaged-short>ERROR_LOST_WRITEBEHIND_DATA_NETWORK_DISCONNECTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LostWritebehindDataNetworkServerError">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOST_WRITEBEHIND_DATA_NETWORK_SERVER_ERROR']/*"/>	
            <unmanaged>ERROR_LOST_WRITEBEHIND_DATA_NETWORK_SERVER_ERROR</unmanaged>	
            <unmanaged-short>ERROR_LOST_WRITEBEHIND_DATA_NETWORK_SERVER_ERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LostWritebehindDataLocalDiskError">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOST_WRITEBEHIND_DATA_LOCAL_DISK_ERROR']/*"/>	
            <unmanaged>ERROR_LOST_WRITEBEHIND_DATA_LOCAL_DISK_ERROR</unmanaged>	
            <unmanaged-short>ERROR_LOST_WRITEBEHIND_DATA_LOCAL_DISK_ERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.BadMcfgTable">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_BAD_MCFG_TABLE']/*"/>	
            <unmanaged>ERROR_BAD_MCFG_TABLE</unmanaged>	
            <unmanaged-short>ERROR_BAD_MCFG_TABLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DiskRepairRedirected">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DISK_REPAIR_REDIRECTED']/*"/>	
            <unmanaged>ERROR_DISK_REPAIR_REDIRECTED</unmanaged>	
            <unmanaged-short>ERROR_DISK_REPAIR_REDIRECTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DiskRepairUnsuccessful">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DISK_REPAIR_UNSUCCESSFUL']/*"/>	
            <unmanaged>ERROR_DISK_REPAIR_UNSUCCESSFUL</unmanaged>	
            <unmanaged-short>ERROR_DISK_REPAIR_UNSUCCESSFUL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CorruptLogOverfull">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CORRUPT_LOG_OVERFULL']/*"/>	
            <unmanaged>ERROR_CORRUPT_LOG_OVERFULL</unmanaged>	
            <unmanaged-short>ERROR_CORRUPT_LOG_OVERFULL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CorruptLogCorrupted">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CORRUPT_LOG_CORRUPTED']/*"/>	
            <unmanaged>ERROR_CORRUPT_LOG_CORRUPTED</unmanaged>	
            <unmanaged-short>ERROR_CORRUPT_LOG_CORRUPTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CorruptLogUnavailable">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CORRUPT_LOG_UNAVAILABLE']/*"/>	
            <unmanaged>ERROR_CORRUPT_LOG_UNAVAILABLE</unmanaged>	
            <unmanaged-short>ERROR_CORRUPT_LOG_UNAVAILABLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CorruptLogDeletedFull">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CORRUPT_LOG_DELETED_FULL']/*"/>	
            <unmanaged>ERROR_CORRUPT_LOG_DELETED_FULL</unmanaged>	
            <unmanaged-short>ERROR_CORRUPT_LOG_DELETED_FULL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CorruptLogCleared">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CORRUPT_LOG_CLEARED']/*"/>	
            <unmanaged>ERROR_CORRUPT_LOG_CLEARED</unmanaged>	
            <unmanaged-short>ERROR_CORRUPT_LOG_CLEARED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.OrphanNameExhausted">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_ORPHAN_NAME_EXHAUSTED']/*"/>	
            <unmanaged>ERROR_ORPHAN_NAME_EXHAUSTED</unmanaged>	
            <unmanaged-short>ERROR_ORPHAN_NAME_EXHAUSTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.OplockSwitchedToNewHandle">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_OPLOCK_SWITCHED_TO_NEW_HANDLE']/*"/>	
            <unmanaged>ERROR_OPLOCK_SWITCHED_TO_NEW_HANDLE</unmanaged>	
            <unmanaged-short>ERROR_OPLOCK_SWITCHED_TO_NEW_HANDLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CannotGrantRequestedOplock">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CANNOT_GRANT_REQUESTED_OPLOCK']/*"/>	
            <unmanaged>ERROR_CANNOT_GRANT_REQUESTED_OPLOCK</unmanaged>	
            <unmanaged-short>ERROR_CANNOT_GRANT_REQUESTED_OPLOCK</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CannotBreakOplock">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CANNOT_BREAK_OPLOCK']/*"/>	
            <unmanaged>ERROR_CANNOT_BREAK_OPLOCK</unmanaged>	
            <unmanaged-short>ERROR_CANNOT_BREAK_OPLOCK</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.OplockHandleClosed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_OPLOCK_HANDLE_CLOSED']/*"/>	
            <unmanaged>ERROR_OPLOCK_HANDLE_CLOSED</unmanaged>	
            <unmanaged-short>ERROR_OPLOCK_HANDLE_CLOSED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoAceCondition">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_ACE_CONDITION']/*"/>	
            <unmanaged>ERROR_NO_ACE_CONDITION</unmanaged>	
            <unmanaged-short>ERROR_NO_ACE_CONDITION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidAceCondition">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_ACE_CONDITION']/*"/>	
            <unmanaged>ERROR_INVALID_ACE_CONDITION</unmanaged>	
            <unmanaged-short>ERROR_INVALID_ACE_CONDITION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FileHandleRevoked">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FILE_HANDLE_REVOKED']/*"/>	
            <unmanaged>ERROR_FILE_HANDLE_REVOKED</unmanaged>	
            <unmanaged-short>ERROR_FILE_HANDLE_REVOKED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ImageAtDifferentBase">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IMAGE_AT_DIFFERENT_BASE']/*"/>	
            <unmanaged>ERROR_IMAGE_AT_DIFFERENT_BASE</unmanaged>	
            <unmanaged-short>ERROR_IMAGE_AT_DIFFERENT_BASE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EaAccessDenied">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EA_ACCESS_DENIED']/*"/>	
            <unmanaged>ERROR_EA_ACCESS_DENIED</unmanaged>	
            <unmanaged-short>ERROR_EA_ACCESS_DENIED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.OperationAborted">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_OPERATION_ABORTED']/*"/>	
            <unmanaged>ERROR_OPERATION_ABORTED</unmanaged>	
            <unmanaged-short>ERROR_OPERATION_ABORTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IoIncomplete">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IO_INCOMPLETE']/*"/>	
            <unmanaged>ERROR_IO_INCOMPLETE</unmanaged>	
            <unmanaged-short>ERROR_IO_INCOMPLETE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IoPending">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IO_PENDING']/*"/>	
            <unmanaged>ERROR_IO_PENDING</unmanaged>	
            <unmanaged-short>ERROR_IO_PENDING</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.Noaccess">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NOACCESS']/*"/>	
            <unmanaged>ERROR_NOACCESS</unmanaged>	
            <unmanaged-short>ERROR_NOACCESS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.Swaperror">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SWAPERROR']/*"/>	
            <unmanaged>ERROR_SWAPERROR</unmanaged>	
            <unmanaged-short>ERROR_SWAPERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.StackOverflow">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_STACK_OVERFLOW']/*"/>	
            <unmanaged>ERROR_STACK_OVERFLOW</unmanaged>	
            <unmanaged-short>ERROR_STACK_OVERFLOW</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidMessage">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_MESSAGE']/*"/>	
            <unmanaged>ERROR_INVALID_MESSAGE</unmanaged>	
            <unmanaged-short>ERROR_INVALID_MESSAGE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CanNotComplete">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CAN_NOT_COMPLETE']/*"/>	
            <unmanaged>ERROR_CAN_NOT_COMPLETE</unmanaged>	
            <unmanaged-short>ERROR_CAN_NOT_COMPLETE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidFlags">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_FLAGS']/*"/>	
            <unmanaged>ERROR_INVALID_FLAGS</unmanaged>	
            <unmanaged-short>ERROR_INVALID_FLAGS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.UnrecognizedVolume">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_UNRECOGNIZED_VOLUME']/*"/>	
            <unmanaged>ERROR_UNRECOGNIZED_VOLUME</unmanaged>	
            <unmanaged-short>ERROR_UNRECOGNIZED_VOLUME</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FileInvalid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FILE_INVALID']/*"/>	
            <unmanaged>ERROR_FILE_INVALID</unmanaged>	
            <unmanaged-short>ERROR_FILE_INVALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FullscreenMode">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FULLSCREEN_MODE']/*"/>	
            <unmanaged>ERROR_FULLSCREEN_MODE</unmanaged>	
            <unmanaged-short>ERROR_FULLSCREEN_MODE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoToken">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_TOKEN']/*"/>	
            <unmanaged>ERROR_NO_TOKEN</unmanaged>	
            <unmanaged-short>ERROR_NO_TOKEN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.Baddb">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_BADDB']/*"/>	
            <unmanaged>ERROR_BADDB</unmanaged>	
            <unmanaged-short>ERROR_BADDB</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.Badkey">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_BADKEY']/*"/>	
            <unmanaged>ERROR_BADKEY</unmanaged>	
            <unmanaged-short>ERROR_BADKEY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.Cantopen">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CANTOPEN']/*"/>	
            <unmanaged>ERROR_CANTOPEN</unmanaged>	
            <unmanaged-short>ERROR_CANTOPEN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.Cantread">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CANTREAD']/*"/>	
            <unmanaged>ERROR_CANTREAD</unmanaged>	
            <unmanaged-short>ERROR_CANTREAD</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.Cantwrite">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CANTWRITE']/*"/>	
            <unmanaged>ERROR_CANTWRITE</unmanaged>	
            <unmanaged-short>ERROR_CANTWRITE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.RegistryRecovered">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_REGISTRY_RECOVERED']/*"/>	
            <unmanaged>ERROR_REGISTRY_RECOVERED</unmanaged>	
            <unmanaged-short>ERROR_REGISTRY_RECOVERED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.RegistryCorrupt">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_REGISTRY_CORRUPT']/*"/>	
            <unmanaged>ERROR_REGISTRY_CORRUPT</unmanaged>	
            <unmanaged-short>ERROR_REGISTRY_CORRUPT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.RegistryIoFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_REGISTRY_IO_FAILED']/*"/>	
            <unmanaged>ERROR_REGISTRY_IO_FAILED</unmanaged>	
            <unmanaged-short>ERROR_REGISTRY_IO_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NotRegistryFile">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NOT_REGISTRY_FILE']/*"/>	
            <unmanaged>ERROR_NOT_REGISTRY_FILE</unmanaged>	
            <unmanaged-short>ERROR_NOT_REGISTRY_FILE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.KeyDeleted">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_KEY_DELETED']/*"/>	
            <unmanaged>ERROR_KEY_DELETED</unmanaged>	
            <unmanaged-short>ERROR_KEY_DELETED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoLogSpace">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_LOG_SPACE']/*"/>	
            <unmanaged>ERROR_NO_LOG_SPACE</unmanaged>	
            <unmanaged-short>ERROR_NO_LOG_SPACE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.KeyHasChildren">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_KEY_HAS_CHILDREN']/*"/>	
            <unmanaged>ERROR_KEY_HAS_CHILDREN</unmanaged>	
            <unmanaged-short>ERROR_KEY_HAS_CHILDREN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ChildMustBeVolatile">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CHILD_MUST_BE_VOLATILE']/*"/>	
            <unmanaged>ERROR_CHILD_MUST_BE_VOLATILE</unmanaged>	
            <unmanaged-short>ERROR_CHILD_MUST_BE_VOLATILE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NotifyEnumDir">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NOTIFY_ENUM_DIR']/*"/>	
            <unmanaged>ERROR_NOTIFY_ENUM_DIR</unmanaged>	
            <unmanaged-short>ERROR_NOTIFY_ENUM_DIR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DependentServicesRunning">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DEPENDENT_SERVICES_RUNNING']/*"/>	
            <unmanaged>ERROR_DEPENDENT_SERVICES_RUNNING</unmanaged>	
            <unmanaged-short>ERROR_DEPENDENT_SERVICES_RUNNING</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidServiceControl">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_SERVICE_CONTROL']/*"/>	
            <unmanaged>ERROR_INVALID_SERVICE_CONTROL</unmanaged>	
            <unmanaged-short>ERROR_INVALID_SERVICE_CONTROL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ServiceRequestTimeout">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SERVICE_REQUEST_TIMEOUT']/*"/>	
            <unmanaged>ERROR_SERVICE_REQUEST_TIMEOUT</unmanaged>	
            <unmanaged-short>ERROR_SERVICE_REQUEST_TIMEOUT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ServiceNoThread">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SERVICE_NO_THREAD']/*"/>	
            <unmanaged>ERROR_SERVICE_NO_THREAD</unmanaged>	
            <unmanaged-short>ERROR_SERVICE_NO_THREAD</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ServiceDatabaseLocked">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SERVICE_DATABASE_LOCKED']/*"/>	
            <unmanaged>ERROR_SERVICE_DATABASE_LOCKED</unmanaged>	
            <unmanaged-short>ERROR_SERVICE_DATABASE_LOCKED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ServiceAlreadyRunning">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SERVICE_ALREADY_RUNNING']/*"/>	
            <unmanaged>ERROR_SERVICE_ALREADY_RUNNING</unmanaged>	
            <unmanaged-short>ERROR_SERVICE_ALREADY_RUNNING</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidServiceAccount">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_SERVICE_ACCOUNT']/*"/>	
            <unmanaged>ERROR_INVALID_SERVICE_ACCOUNT</unmanaged>	
            <unmanaged-short>ERROR_INVALID_SERVICE_ACCOUNT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ServiceDisabled">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SERVICE_DISABLED']/*"/>	
            <unmanaged>ERROR_SERVICE_DISABLED</unmanaged>	
            <unmanaged-short>ERROR_SERVICE_DISABLED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CircularDependency">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CIRCULAR_DEPENDENCY']/*"/>	
            <unmanaged>ERROR_CIRCULAR_DEPENDENCY</unmanaged>	
            <unmanaged-short>ERROR_CIRCULAR_DEPENDENCY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ServiceDoesNotExist">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SERVICE_DOES_NOT_EXIST']/*"/>	
            <unmanaged>ERROR_SERVICE_DOES_NOT_EXIST</unmanaged>	
            <unmanaged-short>ERROR_SERVICE_DOES_NOT_EXIST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ServiceCannotAcceptCtrl">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SERVICE_CANNOT_ACCEPT_CTRL']/*"/>	
            <unmanaged>ERROR_SERVICE_CANNOT_ACCEPT_CTRL</unmanaged>	
            <unmanaged-short>ERROR_SERVICE_CANNOT_ACCEPT_CTRL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ServiceNotActive">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SERVICE_NOT_ACTIVE']/*"/>	
            <unmanaged>ERROR_SERVICE_NOT_ACTIVE</unmanaged>	
            <unmanaged-short>ERROR_SERVICE_NOT_ACTIVE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FailedServiceControllerConnect">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FAILED_SERVICE_CONTROLLER_CONNECT']/*"/>	
            <unmanaged>ERROR_FAILED_SERVICE_CONTROLLER_CONNECT</unmanaged>	
            <unmanaged-short>ERROR_FAILED_SERVICE_CONTROLLER_CONNECT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ExceptionInService">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EXCEPTION_IN_SERVICE']/*"/>	
            <unmanaged>ERROR_EXCEPTION_IN_SERVICE</unmanaged>	
            <unmanaged-short>ERROR_EXCEPTION_IN_SERVICE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DatabaseDoesNotExist">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DATABASE_DOES_NOT_EXIST']/*"/>	
            <unmanaged>ERROR_DATABASE_DOES_NOT_EXIST</unmanaged>	
            <unmanaged-short>ERROR_DATABASE_DOES_NOT_EXIST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ServiceSpecificError">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SERVICE_SPECIFIC_ERROR']/*"/>	
            <unmanaged>ERROR_SERVICE_SPECIFIC_ERROR</unmanaged>	
            <unmanaged-short>ERROR_SERVICE_SPECIFIC_ERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ProcessAborted">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PROCESS_ABORTED']/*"/>	
            <unmanaged>ERROR_PROCESS_ABORTED</unmanaged>	
            <unmanaged-short>ERROR_PROCESS_ABORTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ServiceDependencyFail">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SERVICE_DEPENDENCY_FAIL']/*"/>	
            <unmanaged>ERROR_SERVICE_DEPENDENCY_FAIL</unmanaged>	
            <unmanaged-short>ERROR_SERVICE_DEPENDENCY_FAIL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ServiceLogonFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SERVICE_LOGON_FAILED']/*"/>	
            <unmanaged>ERROR_SERVICE_LOGON_FAILED</unmanaged>	
            <unmanaged-short>ERROR_SERVICE_LOGON_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ServiceStartHang">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SERVICE_START_HANG']/*"/>	
            <unmanaged>ERROR_SERVICE_START_HANG</unmanaged>	
            <unmanaged-short>ERROR_SERVICE_START_HANG</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidServiceLock">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_SERVICE_LOCK']/*"/>	
            <unmanaged>ERROR_INVALID_SERVICE_LOCK</unmanaged>	
            <unmanaged-short>ERROR_INVALID_SERVICE_LOCK</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ServiceMarkedForDelete">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SERVICE_MARKED_FOR_DELETE']/*"/>	
            <unmanaged>ERROR_SERVICE_MARKED_FOR_DELETE</unmanaged>	
            <unmanaged-short>ERROR_SERVICE_MARKED_FOR_DELETE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ServiceExists">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SERVICE_EXISTS']/*"/>	
            <unmanaged>ERROR_SERVICE_EXISTS</unmanaged>	
            <unmanaged-short>ERROR_SERVICE_EXISTS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.AlreadyRunningLkg">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_ALREADY_RUNNING_LKG']/*"/>	
            <unmanaged>ERROR_ALREADY_RUNNING_LKG</unmanaged>	
            <unmanaged-short>ERROR_ALREADY_RUNNING_LKG</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ServiceDependencyDeleted">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SERVICE_DEPENDENCY_DELETED']/*"/>	
            <unmanaged>ERROR_SERVICE_DEPENDENCY_DELETED</unmanaged>	
            <unmanaged-short>ERROR_SERVICE_DEPENDENCY_DELETED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.BootAlreadyAccepted">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_BOOT_ALREADY_ACCEPTED']/*"/>	
            <unmanaged>ERROR_BOOT_ALREADY_ACCEPTED</unmanaged>	
            <unmanaged-short>ERROR_BOOT_ALREADY_ACCEPTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ServiceNeverStarted">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SERVICE_NEVER_STARTED']/*"/>	
            <unmanaged>ERROR_SERVICE_NEVER_STARTED</unmanaged>	
            <unmanaged-short>ERROR_SERVICE_NEVER_STARTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DuplicateServiceName">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DUPLICATE_SERVICE_NAME']/*"/>	
            <unmanaged>ERROR_DUPLICATE_SERVICE_NAME</unmanaged>	
            <unmanaged-short>ERROR_DUPLICATE_SERVICE_NAME</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DifferentServiceAccount">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DIFFERENT_SERVICE_ACCOUNT']/*"/>	
            <unmanaged>ERROR_DIFFERENT_SERVICE_ACCOUNT</unmanaged>	
            <unmanaged-short>ERROR_DIFFERENT_SERVICE_ACCOUNT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CannotDetectDriverFailure">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CANNOT_DETECT_DRIVER_FAILURE']/*"/>	
            <unmanaged>ERROR_CANNOT_DETECT_DRIVER_FAILURE</unmanaged>	
            <unmanaged-short>ERROR_CANNOT_DETECT_DRIVER_FAILURE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CannotDetectProcessAbort">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CANNOT_DETECT_PROCESS_ABORT']/*"/>	
            <unmanaged>ERROR_CANNOT_DETECT_PROCESS_ABORT</unmanaged>	
            <unmanaged-short>ERROR_CANNOT_DETECT_PROCESS_ABORT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoRecoveryProgram">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_RECOVERY_PROGRAM']/*"/>	
            <unmanaged>ERROR_NO_RECOVERY_PROGRAM</unmanaged>	
            <unmanaged-short>ERROR_NO_RECOVERY_PROGRAM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ServiceNotInExe">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SERVICE_NOT_IN_EXE']/*"/>	
            <unmanaged>ERROR_SERVICE_NOT_IN_EXE</unmanaged>	
            <unmanaged-short>ERROR_SERVICE_NOT_IN_EXE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NotSafebootService">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NOT_SAFEBOOT_SERVICE']/*"/>	
            <unmanaged>ERROR_NOT_SAFEBOOT_SERVICE</unmanaged>	
            <unmanaged-short>ERROR_NOT_SAFEBOOT_SERVICE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EndOfMedia">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_END_OF_MEDIA']/*"/>	
            <unmanaged>ERROR_END_OF_MEDIA</unmanaged>	
            <unmanaged-short>ERROR_END_OF_MEDIA</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FilemarkDetected">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FILEMARK_DETECTED']/*"/>	
            <unmanaged>ERROR_FILEMARK_DETECTED</unmanaged>	
            <unmanaged-short>ERROR_FILEMARK_DETECTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.BeginningOfMedia">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_BEGINNING_OF_MEDIA']/*"/>	
            <unmanaged>ERROR_BEGINNING_OF_MEDIA</unmanaged>	
            <unmanaged-short>ERROR_BEGINNING_OF_MEDIA</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SetmarkDetected">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SETMARK_DETECTED']/*"/>	
            <unmanaged>ERROR_SETMARK_DETECTED</unmanaged>	
            <unmanaged-short>ERROR_SETMARK_DETECTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoDataDetected">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_DATA_DETECTED']/*"/>	
            <unmanaged>ERROR_NO_DATA_DETECTED</unmanaged>	
            <unmanaged-short>ERROR_NO_DATA_DETECTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PartitionFailure">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PARTITION_FAILURE']/*"/>	
            <unmanaged>ERROR_PARTITION_FAILURE</unmanaged>	
            <unmanaged-short>ERROR_PARTITION_FAILURE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidBlockLength">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_BLOCK_LENGTH']/*"/>	
            <unmanaged>ERROR_INVALID_BLOCK_LENGTH</unmanaged>	
            <unmanaged-short>ERROR_INVALID_BLOCK_LENGTH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DeviceNotPartitioned">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DEVICE_NOT_PARTITIONED']/*"/>	
            <unmanaged>ERROR_DEVICE_NOT_PARTITIONED</unmanaged>	
            <unmanaged-short>ERROR_DEVICE_NOT_PARTITIONED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.UnableToLockMedia">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_UNABLE_TO_LOCK_MEDIA']/*"/>	
            <unmanaged>ERROR_UNABLE_TO_LOCK_MEDIA</unmanaged>	
            <unmanaged-short>ERROR_UNABLE_TO_LOCK_MEDIA</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.UnableToUnloadMedia">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_UNABLE_TO_UNLOAD_MEDIA']/*"/>	
            <unmanaged>ERROR_UNABLE_TO_UNLOAD_MEDIA</unmanaged>	
            <unmanaged-short>ERROR_UNABLE_TO_UNLOAD_MEDIA</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MediaChanged">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MEDIA_CHANGED']/*"/>	
            <unmanaged>ERROR_MEDIA_CHANGED</unmanaged>	
            <unmanaged-short>ERROR_MEDIA_CHANGED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.BusReset">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_BUS_RESET']/*"/>	
            <unmanaged>ERROR_BUS_RESET</unmanaged>	
            <unmanaged-short>ERROR_BUS_RESET</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoMediaInDrive">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_MEDIA_IN_DRIVE']/*"/>	
            <unmanaged>ERROR_NO_MEDIA_IN_DRIVE</unmanaged>	
            <unmanaged-short>ERROR_NO_MEDIA_IN_DRIVE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoUnicodeTranslation">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_UNICODE_TRANSLATION']/*"/>	
            <unmanaged>ERROR_NO_UNICODE_TRANSLATION</unmanaged>	
            <unmanaged-short>ERROR_NO_UNICODE_TRANSLATION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DllInitFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DLL_INIT_FAILED']/*"/>	
            <unmanaged>ERROR_DLL_INIT_FAILED</unmanaged>	
            <unmanaged-short>ERROR_DLL_INIT_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ShutdownInProgress">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SHUTDOWN_IN_PROGRESS']/*"/>	
            <unmanaged>ERROR_SHUTDOWN_IN_PROGRESS</unmanaged>	
            <unmanaged-short>ERROR_SHUTDOWN_IN_PROGRESS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoShutdownInProgress">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_SHUTDOWN_IN_PROGRESS']/*"/>	
            <unmanaged>ERROR_NO_SHUTDOWN_IN_PROGRESS</unmanaged>	
            <unmanaged-short>ERROR_NO_SHUTDOWN_IN_PROGRESS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IoDevice">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IO_DEVICE']/*"/>	
            <unmanaged>ERROR_IO_DEVICE</unmanaged>	
            <unmanaged-short>ERROR_IO_DEVICE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SerialNoDevice">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SERIAL_NO_DEVICE']/*"/>	
            <unmanaged>ERROR_SERIAL_NO_DEVICE</unmanaged>	
            <unmanaged-short>ERROR_SERIAL_NO_DEVICE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IrqBusy">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IRQ_BUSY']/*"/>	
            <unmanaged>ERROR_IRQ_BUSY</unmanaged>	
            <unmanaged-short>ERROR_IRQ_BUSY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MoreWrites">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MORE_WRITES']/*"/>	
            <unmanaged>ERROR_MORE_WRITES</unmanaged>	
            <unmanaged-short>ERROR_MORE_WRITES</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CounterTimeout">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_COUNTER_TIMEOUT']/*"/>	
            <unmanaged>ERROR_COUNTER_TIMEOUT</unmanaged>	
            <unmanaged-short>ERROR_COUNTER_TIMEOUT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FloppyIdMarkNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FLOPPY_ID_MARK_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_FLOPPY_ID_MARK_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_FLOPPY_ID_MARK_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FloppyWrongCylinder">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FLOPPY_WRONG_CYLINDER']/*"/>	
            <unmanaged>ERROR_FLOPPY_WRONG_CYLINDER</unmanaged>	
            <unmanaged-short>ERROR_FLOPPY_WRONG_CYLINDER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FloppyUnknownError">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FLOPPY_UNKNOWN_ERROR']/*"/>	
            <unmanaged>ERROR_FLOPPY_UNKNOWN_ERROR</unmanaged>	
            <unmanaged-short>ERROR_FLOPPY_UNKNOWN_ERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FloppyBadRegisters">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FLOPPY_BAD_REGISTERS']/*"/>	
            <unmanaged>ERROR_FLOPPY_BAD_REGISTERS</unmanaged>	
            <unmanaged-short>ERROR_FLOPPY_BAD_REGISTERS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DiskRecalibrateFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DISK_RECALIBRATE_FAILED']/*"/>	
            <unmanaged>ERROR_DISK_RECALIBRATE_FAILED</unmanaged>	
            <unmanaged-short>ERROR_DISK_RECALIBRATE_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DiskOperationFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DISK_OPERATION_FAILED']/*"/>	
            <unmanaged>ERROR_DISK_OPERATION_FAILED</unmanaged>	
            <unmanaged-short>ERROR_DISK_OPERATION_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DiskResetFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DISK_RESET_FAILED']/*"/>	
            <unmanaged>ERROR_DISK_RESET_FAILED</unmanaged>	
            <unmanaged-short>ERROR_DISK_RESET_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EomOverflow">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EOM_OVERFLOW']/*"/>	
            <unmanaged>ERROR_EOM_OVERFLOW</unmanaged>	
            <unmanaged-short>ERROR_EOM_OVERFLOW</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NotEnoughServerMemory">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NOT_ENOUGH_SERVER_MEMORY']/*"/>	
            <unmanaged>ERROR_NOT_ENOUGH_SERVER_MEMORY</unmanaged>	
            <unmanaged-short>ERROR_NOT_ENOUGH_SERVER_MEMORY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PossibleDeadlock">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_POSSIBLE_DEADLOCK']/*"/>	
            <unmanaged>ERROR_POSSIBLE_DEADLOCK</unmanaged>	
            <unmanaged-short>ERROR_POSSIBLE_DEADLOCK</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MappedAlignment">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MAPPED_ALIGNMENT']/*"/>	
            <unmanaged>ERROR_MAPPED_ALIGNMENT</unmanaged>	
            <unmanaged-short>ERROR_MAPPED_ALIGNMENT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SetPowerStateVetoed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SET_POWER_STATE_VETOED']/*"/>	
            <unmanaged>ERROR_SET_POWER_STATE_VETOED</unmanaged>	
            <unmanaged-short>ERROR_SET_POWER_STATE_VETOED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SetPowerStateFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SET_POWER_STATE_FAILED']/*"/>	
            <unmanaged>ERROR_SET_POWER_STATE_FAILED</unmanaged>	
            <unmanaged-short>ERROR_SET_POWER_STATE_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TooManyLinks">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TOO_MANY_LINKS']/*"/>	
            <unmanaged>ERROR_TOO_MANY_LINKS</unmanaged>	
            <unmanaged-short>ERROR_TOO_MANY_LINKS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.OldWinVersion">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_OLD_WIN_VERSION']/*"/>	
            <unmanaged>ERROR_OLD_WIN_VERSION</unmanaged>	
            <unmanaged-short>ERROR_OLD_WIN_VERSION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.AppWrongOs">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_APP_WRONG_OS']/*"/>	
            <unmanaged>ERROR_APP_WRONG_OS</unmanaged>	
            <unmanaged-short>ERROR_APP_WRONG_OS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SingleInstanceApp">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SINGLE_INSTANCE_APP']/*"/>	
            <unmanaged>ERROR_SINGLE_INSTANCE_APP</unmanaged>	
            <unmanaged-short>ERROR_SINGLE_INSTANCE_APP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.RmodeApp">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_RMODE_APP']/*"/>	
            <unmanaged>ERROR_RMODE_APP</unmanaged>	
            <unmanaged-short>ERROR_RMODE_APP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidDll">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_DLL']/*"/>	
            <unmanaged>ERROR_INVALID_DLL</unmanaged>	
            <unmanaged-short>ERROR_INVALID_DLL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoAssociation">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_ASSOCIATION']/*"/>	
            <unmanaged>ERROR_NO_ASSOCIATION</unmanaged>	
            <unmanaged-short>ERROR_NO_ASSOCIATION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DdeFail">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DDE_FAIL']/*"/>	
            <unmanaged>ERROR_DDE_FAIL</unmanaged>	
            <unmanaged-short>ERROR_DDE_FAIL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DllNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DLL_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_DLL_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_DLL_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoMoreUserHandles">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_MORE_USER_HANDLES']/*"/>	
            <unmanaged>ERROR_NO_MORE_USER_HANDLES</unmanaged>	
            <unmanaged-short>ERROR_NO_MORE_USER_HANDLES</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MessageSyncOnly">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MESSAGE_SYNC_ONLY']/*"/>	
            <unmanaged>ERROR_MESSAGE_SYNC_ONLY</unmanaged>	
            <unmanaged-short>ERROR_MESSAGE_SYNC_ONLY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SourceElementEmpty">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SOURCE_ELEMENT_EMPTY']/*"/>	
            <unmanaged>ERROR_SOURCE_ELEMENT_EMPTY</unmanaged>	
            <unmanaged-short>ERROR_SOURCE_ELEMENT_EMPTY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DestinationElementFull">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DESTINATION_ELEMENT_FULL']/*"/>	
            <unmanaged>ERROR_DESTINATION_ELEMENT_FULL</unmanaged>	
            <unmanaged-short>ERROR_DESTINATION_ELEMENT_FULL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IllegalElementAddress">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_ILLEGAL_ELEMENT_ADDRESS']/*"/>	
            <unmanaged>ERROR_ILLEGAL_ELEMENT_ADDRESS</unmanaged>	
            <unmanaged-short>ERROR_ILLEGAL_ELEMENT_ADDRESS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MagazineNotPresent">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MAGAZINE_NOT_PRESENT']/*"/>	
            <unmanaged>ERROR_MAGAZINE_NOT_PRESENT</unmanaged>	
            <unmanaged-short>ERROR_MAGAZINE_NOT_PRESENT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DeviceReinitializationNeeded">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DEVICE_REINITIALIZATION_NEEDED']/*"/>	
            <unmanaged>ERROR_DEVICE_REINITIALIZATION_NEEDED</unmanaged>	
            <unmanaged-short>ERROR_DEVICE_REINITIALIZATION_NEEDED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DeviceRequiresCleaning">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DEVICE_REQUIRES_CLEANING']/*"/>	
            <unmanaged>ERROR_DEVICE_REQUIRES_CLEANING</unmanaged>	
            <unmanaged-short>ERROR_DEVICE_REQUIRES_CLEANING</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DeviceDoorOpen">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DEVICE_DOOR_OPEN']/*"/>	
            <unmanaged>ERROR_DEVICE_DOOR_OPEN</unmanaged>	
            <unmanaged-short>ERROR_DEVICE_DOOR_OPEN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DeviceNotConnected">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DEVICE_NOT_CONNECTED']/*"/>	
            <unmanaged>ERROR_DEVICE_NOT_CONNECTED</unmanaged>	
            <unmanaged-short>ERROR_DEVICE_NOT_CONNECTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoMatch">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_MATCH']/*"/>	
            <unmanaged>ERROR_NO_MATCH</unmanaged>	
            <unmanaged-short>ERROR_NO_MATCH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SetNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SET_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_SET_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_SET_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PointNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_POINT_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_POINT_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_POINT_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoTrackingService">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_TRACKING_SERVICE']/*"/>	
            <unmanaged>ERROR_NO_TRACKING_SERVICE</unmanaged>	
            <unmanaged-short>ERROR_NO_TRACKING_SERVICE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoVolumeId">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_VOLUME_ID']/*"/>	
            <unmanaged>ERROR_NO_VOLUME_ID</unmanaged>	
            <unmanaged-short>ERROR_NO_VOLUME_ID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.UnableToRemoveReplaced">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_UNABLE_TO_REMOVE_REPLACED']/*"/>	
            <unmanaged>ERROR_UNABLE_TO_REMOVE_REPLACED</unmanaged>	
            <unmanaged-short>ERROR_UNABLE_TO_REMOVE_REPLACED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.UnableToMoveReplacement">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_UNABLE_TO_MOVE_REPLACEMENT']/*"/>	
            <unmanaged>ERROR_UNABLE_TO_MOVE_REPLACEMENT</unmanaged>	
            <unmanaged-short>ERROR_UNABLE_TO_MOVE_REPLACEMENT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.UnableToMoveReplacement2">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_UNABLE_TO_MOVE_REPLACEMENT_2']/*"/>	
            <unmanaged>ERROR_UNABLE_TO_MOVE_REPLACEMENT_2</unmanaged>	
            <unmanaged-short>ERROR_UNABLE_TO_MOVE_REPLACEMENT_2</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.JournalDeleteInProgress">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_JOURNAL_DELETE_IN_PROGRESS']/*"/>	
            <unmanaged>ERROR_JOURNAL_DELETE_IN_PROGRESS</unmanaged>	
            <unmanaged-short>ERROR_JOURNAL_DELETE_IN_PROGRESS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.JournalNotActive">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_JOURNAL_NOT_ACTIVE']/*"/>	
            <unmanaged>ERROR_JOURNAL_NOT_ACTIVE</unmanaged>	
            <unmanaged-short>ERROR_JOURNAL_NOT_ACTIVE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PotentialFileFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_POTENTIAL_FILE_FOUND']/*"/>	
            <unmanaged>ERROR_POTENTIAL_FILE_FOUND</unmanaged>	
            <unmanaged-short>ERROR_POTENTIAL_FILE_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.JournalEntryDeleted">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_JOURNAL_ENTRY_DELETED']/*"/>	
            <unmanaged>ERROR_JOURNAL_ENTRY_DELETED</unmanaged>	
            <unmanaged-short>ERROR_JOURNAL_ENTRY_DELETED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ShutdownIsScheduled">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SHUTDOWN_IS_SCHEDULED']/*"/>	
            <unmanaged>ERROR_SHUTDOWN_IS_SCHEDULED</unmanaged>	
            <unmanaged-short>ERROR_SHUTDOWN_IS_SCHEDULED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ShutdownUsersLoggedOn">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SHUTDOWN_USERS_LOGGED_ON']/*"/>	
            <unmanaged>ERROR_SHUTDOWN_USERS_LOGGED_ON</unmanaged>	
            <unmanaged-short>ERROR_SHUTDOWN_USERS_LOGGED_ON</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.BadDevice">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_BAD_DEVICE']/*"/>	
            <unmanaged>ERROR_BAD_DEVICE</unmanaged>	
            <unmanaged-short>ERROR_BAD_DEVICE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ConnectionUnavail">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CONNECTION_UNAVAIL']/*"/>	
            <unmanaged>ERROR_CONNECTION_UNAVAIL</unmanaged>	
            <unmanaged-short>ERROR_CONNECTION_UNAVAIL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DeviceAlreadyRemembered">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DEVICE_ALREADY_REMEMBERED']/*"/>	
            <unmanaged>ERROR_DEVICE_ALREADY_REMEMBERED</unmanaged>	
            <unmanaged-short>ERROR_DEVICE_ALREADY_REMEMBERED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoNetOrBadPath">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_NET_OR_BAD_PATH']/*"/>	
            <unmanaged>ERROR_NO_NET_OR_BAD_PATH</unmanaged>	
            <unmanaged-short>ERROR_NO_NET_OR_BAD_PATH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.BadProvider">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_BAD_PROVIDER']/*"/>	
            <unmanaged>ERROR_BAD_PROVIDER</unmanaged>	
            <unmanaged-short>ERROR_BAD_PROVIDER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CannotOpenProfile">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CANNOT_OPEN_PROFILE']/*"/>	
            <unmanaged>ERROR_CANNOT_OPEN_PROFILE</unmanaged>	
            <unmanaged-short>ERROR_CANNOT_OPEN_PROFILE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.BadProfile">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_BAD_PROFILE']/*"/>	
            <unmanaged>ERROR_BAD_PROFILE</unmanaged>	
            <unmanaged-short>ERROR_BAD_PROFILE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NotContainer">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NOT_CONTAINER']/*"/>	
            <unmanaged>ERROR_NOT_CONTAINER</unmanaged>	
            <unmanaged-short>ERROR_NOT_CONTAINER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ExtendedError">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EXTENDED_ERROR']/*"/>	
            <unmanaged>ERROR_EXTENDED_ERROR</unmanaged>	
            <unmanaged-short>ERROR_EXTENDED_ERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidGroupname">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_GROUPNAME']/*"/>	
            <unmanaged>ERROR_INVALID_GROUPNAME</unmanaged>	
            <unmanaged-short>ERROR_INVALID_GROUPNAME</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidComputername">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_COMPUTERNAME']/*"/>	
            <unmanaged>ERROR_INVALID_COMPUTERNAME</unmanaged>	
            <unmanaged-short>ERROR_INVALID_COMPUTERNAME</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidEventname">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_EVENTNAME']/*"/>	
            <unmanaged>ERROR_INVALID_EVENTNAME</unmanaged>	
            <unmanaged-short>ERROR_INVALID_EVENTNAME</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidDomainname">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_DOMAINNAME']/*"/>	
            <unmanaged>ERROR_INVALID_DOMAINNAME</unmanaged>	
            <unmanaged-short>ERROR_INVALID_DOMAINNAME</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidServicename">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_SERVICENAME']/*"/>	
            <unmanaged>ERROR_INVALID_SERVICENAME</unmanaged>	
            <unmanaged-short>ERROR_INVALID_SERVICENAME</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidNetname">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_NETNAME']/*"/>	
            <unmanaged>ERROR_INVALID_NETNAME</unmanaged>	
            <unmanaged-short>ERROR_INVALID_NETNAME</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidSharename">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_SHARENAME']/*"/>	
            <unmanaged>ERROR_INVALID_SHARENAME</unmanaged>	
            <unmanaged-short>ERROR_INVALID_SHARENAME</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidPasswordname">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_PASSWORDNAME']/*"/>	
            <unmanaged>ERROR_INVALID_PASSWORDNAME</unmanaged>	
            <unmanaged-short>ERROR_INVALID_PASSWORDNAME</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidMessagename">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_MESSAGENAME']/*"/>	
            <unmanaged>ERROR_INVALID_MESSAGENAME</unmanaged>	
            <unmanaged-short>ERROR_INVALID_MESSAGENAME</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidMessagedest">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_MESSAGEDEST']/*"/>	
            <unmanaged>ERROR_INVALID_MESSAGEDEST</unmanaged>	
            <unmanaged-short>ERROR_INVALID_MESSAGEDEST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SessionCredentialConflict">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SESSION_CREDENTIAL_CONFLICT']/*"/>	
            <unmanaged>ERROR_SESSION_CREDENTIAL_CONFLICT</unmanaged>	
            <unmanaged-short>ERROR_SESSION_CREDENTIAL_CONFLICT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.RemoteSessionLimitExceeded">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_REMOTE_SESSION_LIMIT_EXCEEDED']/*"/>	
            <unmanaged>ERROR_REMOTE_SESSION_LIMIT_EXCEEDED</unmanaged>	
            <unmanaged-short>ERROR_REMOTE_SESSION_LIMIT_EXCEEDED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DupDomainname">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DUP_DOMAINNAME']/*"/>	
            <unmanaged>ERROR_DUP_DOMAINNAME</unmanaged>	
            <unmanaged-short>ERROR_DUP_DOMAINNAME</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoNetwork">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_NETWORK']/*"/>	
            <unmanaged>ERROR_NO_NETWORK</unmanaged>	
            <unmanaged-short>ERROR_NO_NETWORK</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.Cancelled">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CANCELLED']/*"/>	
            <unmanaged>ERROR_CANCELLED</unmanaged>	
            <unmanaged-short>ERROR_CANCELLED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.UserMappedFile">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_USER_MAPPED_FILE']/*"/>	
            <unmanaged>ERROR_USER_MAPPED_FILE</unmanaged>	
            <unmanaged-short>ERROR_USER_MAPPED_FILE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ConnectionRefused">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CONNECTION_REFUSED']/*"/>	
            <unmanaged>ERROR_CONNECTION_REFUSED</unmanaged>	
            <unmanaged-short>ERROR_CONNECTION_REFUSED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GracefulDisconnect">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRACEFUL_DISCONNECT']/*"/>	
            <unmanaged>ERROR_GRACEFUL_DISCONNECT</unmanaged>	
            <unmanaged-short>ERROR_GRACEFUL_DISCONNECT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.AddressAlreadyAssociated">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_ADDRESS_ALREADY_ASSOCIATED']/*"/>	
            <unmanaged>ERROR_ADDRESS_ALREADY_ASSOCIATED</unmanaged>	
            <unmanaged-short>ERROR_ADDRESS_ALREADY_ASSOCIATED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.AddressNotAssociated">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_ADDRESS_NOT_ASSOCIATED']/*"/>	
            <unmanaged>ERROR_ADDRESS_NOT_ASSOCIATED</unmanaged>	
            <unmanaged-short>ERROR_ADDRESS_NOT_ASSOCIATED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ConnectionInvalid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CONNECTION_INVALID']/*"/>	
            <unmanaged>ERROR_CONNECTION_INVALID</unmanaged>	
            <unmanaged-short>ERROR_CONNECTION_INVALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ConnectionActive">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CONNECTION_ACTIVE']/*"/>	
            <unmanaged>ERROR_CONNECTION_ACTIVE</unmanaged>	
            <unmanaged-short>ERROR_CONNECTION_ACTIVE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NetworkUnreachable">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NETWORK_UNREACHABLE']/*"/>	
            <unmanaged>ERROR_NETWORK_UNREACHABLE</unmanaged>	
            <unmanaged-short>ERROR_NETWORK_UNREACHABLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.HostUnreachable">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_HOST_UNREACHABLE']/*"/>	
            <unmanaged>ERROR_HOST_UNREACHABLE</unmanaged>	
            <unmanaged-short>ERROR_HOST_UNREACHABLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ProtocolUnreachable">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PROTOCOL_UNREACHABLE']/*"/>	
            <unmanaged>ERROR_PROTOCOL_UNREACHABLE</unmanaged>	
            <unmanaged-short>ERROR_PROTOCOL_UNREACHABLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PortUnreachable">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PORT_UNREACHABLE']/*"/>	
            <unmanaged>ERROR_PORT_UNREACHABLE</unmanaged>	
            <unmanaged-short>ERROR_PORT_UNREACHABLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.RequestAborted">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_REQUEST_ABORTED']/*"/>	
            <unmanaged>ERROR_REQUEST_ABORTED</unmanaged>	
            <unmanaged-short>ERROR_REQUEST_ABORTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ConnectionAborted">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CONNECTION_ABORTED']/*"/>	
            <unmanaged>ERROR_CONNECTION_ABORTED</unmanaged>	
            <unmanaged-short>ERROR_CONNECTION_ABORTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.Retry">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_RETRY']/*"/>	
            <unmanaged>ERROR_RETRY</unmanaged>	
            <unmanaged-short>ERROR_RETRY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ConnectionCountLimit">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CONNECTION_COUNT_LIMIT']/*"/>	
            <unmanaged>ERROR_CONNECTION_COUNT_LIMIT</unmanaged>	
            <unmanaged-short>ERROR_CONNECTION_COUNT_LIMIT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LoginTimeRestriction">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOGIN_TIME_RESTRICTION']/*"/>	
            <unmanaged>ERROR_LOGIN_TIME_RESTRICTION</unmanaged>	
            <unmanaged-short>ERROR_LOGIN_TIME_RESTRICTION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LoginWkstaRestriction">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOGIN_WKSTA_RESTRICTION']/*"/>	
            <unmanaged>ERROR_LOGIN_WKSTA_RESTRICTION</unmanaged>	
            <unmanaged-short>ERROR_LOGIN_WKSTA_RESTRICTION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IncorrectAddress">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INCORRECT_ADDRESS']/*"/>	
            <unmanaged>ERROR_INCORRECT_ADDRESS</unmanaged>	
            <unmanaged-short>ERROR_INCORRECT_ADDRESS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.AlreadyRegistered">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_ALREADY_REGISTERED']/*"/>	
            <unmanaged>ERROR_ALREADY_REGISTERED</unmanaged>	
            <unmanaged-short>ERROR_ALREADY_REGISTERED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ServiceNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SERVICE_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_SERVICE_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_SERVICE_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NotAuthenticated">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NOT_AUTHENTICATED']/*"/>	
            <unmanaged>ERROR_NOT_AUTHENTICATED</unmanaged>	
            <unmanaged-short>ERROR_NOT_AUTHENTICATED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NotLoggedOn">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NOT_LOGGED_ON']/*"/>	
            <unmanaged>ERROR_NOT_LOGGED_ON</unmanaged>	
            <unmanaged-short>ERROR_NOT_LOGGED_ON</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.Continue">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CONTINUE']/*"/>	
            <unmanaged>ERROR_CONTINUE</unmanaged>	
            <unmanaged-short>ERROR_CONTINUE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.AlreadyInitialized">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_ALREADY_INITIALIZED']/*"/>	
            <unmanaged>ERROR_ALREADY_INITIALIZED</unmanaged>	
            <unmanaged-short>ERROR_ALREADY_INITIALIZED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoMoreDevices">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_MORE_DEVICES']/*"/>	
            <unmanaged>ERROR_NO_MORE_DEVICES</unmanaged>	
            <unmanaged-short>ERROR_NO_MORE_DEVICES</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoSuchSite">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_SUCH_SITE']/*"/>	
            <unmanaged>ERROR_NO_SUCH_SITE</unmanaged>	
            <unmanaged-short>ERROR_NO_SUCH_SITE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DomainControllerExists">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DOMAIN_CONTROLLER_EXISTS']/*"/>	
            <unmanaged>ERROR_DOMAIN_CONTROLLER_EXISTS</unmanaged>	
            <unmanaged-short>ERROR_DOMAIN_CONTROLLER_EXISTS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.OnlyIfConnected">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_ONLY_IF_CONNECTED']/*"/>	
            <unmanaged>ERROR_ONLY_IF_CONNECTED</unmanaged>	
            <unmanaged-short>ERROR_ONLY_IF_CONNECTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.OverrideNochanges">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_OVERRIDE_NOCHANGES']/*"/>	
            <unmanaged>ERROR_OVERRIDE_NOCHANGES</unmanaged>	
            <unmanaged-short>ERROR_OVERRIDE_NOCHANGES</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.BadUserProfile">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_BAD_USER_PROFILE']/*"/>	
            <unmanaged>ERROR_BAD_USER_PROFILE</unmanaged>	
            <unmanaged-short>ERROR_BAD_USER_PROFILE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NotSupportedOnSbs">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NOT_SUPPORTED_ON_SBS']/*"/>	
            <unmanaged>ERROR_NOT_SUPPORTED_ON_SBS</unmanaged>	
            <unmanaged-short>ERROR_NOT_SUPPORTED_ON_SBS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ServerShutdownInProgress">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SERVER_SHUTDOWN_IN_PROGRESS']/*"/>	
            <unmanaged>ERROR_SERVER_SHUTDOWN_IN_PROGRESS</unmanaged>	
            <unmanaged-short>ERROR_SERVER_SHUTDOWN_IN_PROGRESS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.HostDown">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_HOST_DOWN']/*"/>	
            <unmanaged>ERROR_HOST_DOWN</unmanaged>	
            <unmanaged-short>ERROR_HOST_DOWN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NonAccountSid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NON_ACCOUNT_SID']/*"/>	
            <unmanaged>ERROR_NON_ACCOUNT_SID</unmanaged>	
            <unmanaged-short>ERROR_NON_ACCOUNT_SID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NonDomainSid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NON_DOMAIN_SID']/*"/>	
            <unmanaged>ERROR_NON_DOMAIN_SID</unmanaged>	
            <unmanaged-short>ERROR_NON_DOMAIN_SID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ApphelpBlock">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_APPHELP_BLOCK']/*"/>	
            <unmanaged>ERROR_APPHELP_BLOCK</unmanaged>	
            <unmanaged-short>ERROR_APPHELP_BLOCK</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.AccessDisabledByPolicy">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_ACCESS_DISABLED_BY_POLICY']/*"/>	
            <unmanaged>ERROR_ACCESS_DISABLED_BY_POLICY</unmanaged>	
            <unmanaged-short>ERROR_ACCESS_DISABLED_BY_POLICY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.RegNatConsumption">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_REG_NAT_CONSUMPTION']/*"/>	
            <unmanaged>ERROR_REG_NAT_CONSUMPTION</unmanaged>	
            <unmanaged-short>ERROR_REG_NAT_CONSUMPTION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CscshareOffline">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CSCSHARE_OFFLINE']/*"/>	
            <unmanaged>ERROR_CSCSHARE_OFFLINE</unmanaged>	
            <unmanaged-short>ERROR_CSCSHARE_OFFLINE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PkinitFailure">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PKINIT_FAILURE']/*"/>	
            <unmanaged>ERROR_PKINIT_FAILURE</unmanaged>	
            <unmanaged-short>ERROR_PKINIT_FAILURE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SmartcardSubsystemFailure">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SMARTCARD_SUBSYSTEM_FAILURE']/*"/>	
            <unmanaged>ERROR_SMARTCARD_SUBSYSTEM_FAILURE</unmanaged>	
            <unmanaged-short>ERROR_SMARTCARD_SUBSYSTEM_FAILURE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DowngradeDetected">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DOWNGRADE_DETECTED']/*"/>	
            <unmanaged>ERROR_DOWNGRADE_DETECTED</unmanaged>	
            <unmanaged-short>ERROR_DOWNGRADE_DETECTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MachineLocked">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MACHINE_LOCKED']/*"/>	
            <unmanaged>ERROR_MACHINE_LOCKED</unmanaged>	
            <unmanaged-short>ERROR_MACHINE_LOCKED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CallbackSuppliedInvalidData">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CALLBACK_SUPPLIED_INVALID_DATA']/*"/>	
            <unmanaged>ERROR_CALLBACK_SUPPLIED_INVALID_DATA</unmanaged>	
            <unmanaged-short>ERROR_CALLBACK_SUPPLIED_INVALID_DATA</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SyncForegroundRefreshRequired">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SYNC_FOREGROUND_REFRESH_REQUIRED']/*"/>	
            <unmanaged>ERROR_SYNC_FOREGROUND_REFRESH_REQUIRED</unmanaged>	
            <unmanaged-short>ERROR_SYNC_FOREGROUND_REFRESH_REQUIRED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DriverBlocked">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DRIVER_BLOCKED']/*"/>	
            <unmanaged>ERROR_DRIVER_BLOCKED</unmanaged>	
            <unmanaged-short>ERROR_DRIVER_BLOCKED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidImportOfNonDll">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_IMPORT_OF_NON_DLL']/*"/>	
            <unmanaged>ERROR_INVALID_IMPORT_OF_NON_DLL</unmanaged>	
            <unmanaged-short>ERROR_INVALID_IMPORT_OF_NON_DLL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.AccessDisabledWebblade">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_ACCESS_DISABLED_WEBBLADE']/*"/>	
            <unmanaged>ERROR_ACCESS_DISABLED_WEBBLADE</unmanaged>	
            <unmanaged-short>ERROR_ACCESS_DISABLED_WEBBLADE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.AccessDisabledWebbladeTamper">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_ACCESS_DISABLED_WEBBLADE_TAMPER']/*"/>	
            <unmanaged>ERROR_ACCESS_DISABLED_WEBBLADE_TAMPER</unmanaged>	
            <unmanaged-short>ERROR_ACCESS_DISABLED_WEBBLADE_TAMPER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.RecoveryFailure">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_RECOVERY_FAILURE']/*"/>	
            <unmanaged>ERROR_RECOVERY_FAILURE</unmanaged>	
            <unmanaged-short>ERROR_RECOVERY_FAILURE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.AlreadyFiber">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_ALREADY_FIBER']/*"/>	
            <unmanaged>ERROR_ALREADY_FIBER</unmanaged>	
            <unmanaged-short>ERROR_ALREADY_FIBER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.AlreadyThread">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_ALREADY_THREAD']/*"/>	
            <unmanaged>ERROR_ALREADY_THREAD</unmanaged>	
            <unmanaged-short>ERROR_ALREADY_THREAD</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.StackBufferOverrun">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_STACK_BUFFER_OVERRUN']/*"/>	
            <unmanaged>ERROR_STACK_BUFFER_OVERRUN</unmanaged>	
            <unmanaged-short>ERROR_STACK_BUFFER_OVERRUN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ParameterQuotaExceeded">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PARAMETER_QUOTA_EXCEEDED']/*"/>	
            <unmanaged>ERROR_PARAMETER_QUOTA_EXCEEDED</unmanaged>	
            <unmanaged-short>ERROR_PARAMETER_QUOTA_EXCEEDED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DebuggerInactive">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DEBUGGER_INACTIVE']/*"/>	
            <unmanaged>ERROR_DEBUGGER_INACTIVE</unmanaged>	
            <unmanaged-short>ERROR_DEBUGGER_INACTIVE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DelayLoadFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DELAY_LOAD_FAILED']/*"/>	
            <unmanaged>ERROR_DELAY_LOAD_FAILED</unmanaged>	
            <unmanaged-short>ERROR_DELAY_LOAD_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VdmDisallowed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VDM_DISALLOWED']/*"/>	
            <unmanaged>ERROR_VDM_DISALLOWED</unmanaged>	
            <unmanaged-short>ERROR_VDM_DISALLOWED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.UnidentifiedError">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_UNIDENTIFIED_ERROR']/*"/>	
            <unmanaged>ERROR_UNIDENTIFIED_ERROR</unmanaged>	
            <unmanaged-short>ERROR_UNIDENTIFIED_ERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidCruntimeParameter">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_CRUNTIME_PARAMETER']/*"/>	
            <unmanaged>ERROR_INVALID_CRUNTIME_PARAMETER</unmanaged>	
            <unmanaged-short>ERROR_INVALID_CRUNTIME_PARAMETER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.BeyondVdl">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_BEYOND_VDL']/*"/>	
            <unmanaged>ERROR_BEYOND_VDL</unmanaged>	
            <unmanaged-short>ERROR_BEYOND_VDL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IncompatibleServiceSidType">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INCOMPATIBLE_SERVICE_SID_TYPE']/*"/>	
            <unmanaged>ERROR_INCOMPATIBLE_SERVICE_SID_TYPE</unmanaged>	
            <unmanaged-short>ERROR_INCOMPATIBLE_SERVICE_SID_TYPE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DriverProcessTerminated">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DRIVER_PROCESS_TERMINATED']/*"/>	
            <unmanaged>ERROR_DRIVER_PROCESS_TERMINATED</unmanaged>	
            <unmanaged-short>ERROR_DRIVER_PROCESS_TERMINATED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ImplementationLimit">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IMPLEMENTATION_LIMIT']/*"/>	
            <unmanaged>ERROR_IMPLEMENTATION_LIMIT</unmanaged>	
            <unmanaged-short>ERROR_IMPLEMENTATION_LIMIT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ProcessIsProtected">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PROCESS_IS_PROTECTED']/*"/>	
            <unmanaged>ERROR_PROCESS_IS_PROTECTED</unmanaged>	
            <unmanaged-short>ERROR_PROCESS_IS_PROTECTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ServiceNotifyClientLagging">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SERVICE_NOTIFY_CLIENT_LAGGING']/*"/>	
            <unmanaged>ERROR_SERVICE_NOTIFY_CLIENT_LAGGING</unmanaged>	
            <unmanaged-short>ERROR_SERVICE_NOTIFY_CLIENT_LAGGING</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DiskQuotaExceeded">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DISK_QUOTA_EXCEEDED']/*"/>	
            <unmanaged>ERROR_DISK_QUOTA_EXCEEDED</unmanaged>	
            <unmanaged-short>ERROR_DISK_QUOTA_EXCEEDED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ContentBlocked">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CONTENT_BLOCKED']/*"/>	
            <unmanaged>ERROR_CONTENT_BLOCKED</unmanaged>	
            <unmanaged-short>ERROR_CONTENT_BLOCKED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IncompatibleServicePrivilege">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INCOMPATIBLE_SERVICE_PRIVILEGE']/*"/>	
            <unmanaged>ERROR_INCOMPATIBLE_SERVICE_PRIVILEGE</unmanaged>	
            <unmanaged-short>ERROR_INCOMPATIBLE_SERVICE_PRIVILEGE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.AppHang">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_APP_HANG']/*"/>	
            <unmanaged>ERROR_APP_HANG</unmanaged>	
            <unmanaged-short>ERROR_APP_HANG</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidLabel">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_LABEL']/*"/>	
            <unmanaged>ERROR_INVALID_LABEL</unmanaged>	
            <unmanaged-short>ERROR_INVALID_LABEL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NotAllAssigned">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NOT_ALL_ASSIGNED']/*"/>	
            <unmanaged>ERROR_NOT_ALL_ASSIGNED</unmanaged>	
            <unmanaged-short>ERROR_NOT_ALL_ASSIGNED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SomeNotMapped">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SOME_NOT_MAPPED']/*"/>	
            <unmanaged>ERROR_SOME_NOT_MAPPED</unmanaged>	
            <unmanaged-short>ERROR_SOME_NOT_MAPPED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoQuotasForAccount">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_QUOTAS_FOR_ACCOUNT']/*"/>	
            <unmanaged>ERROR_NO_QUOTAS_FOR_ACCOUNT</unmanaged>	
            <unmanaged-short>ERROR_NO_QUOTAS_FOR_ACCOUNT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LocalUserSessionKey">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOCAL_USER_SESSION_KEY']/*"/>	
            <unmanaged>ERROR_LOCAL_USER_SESSION_KEY</unmanaged>	
            <unmanaged-short>ERROR_LOCAL_USER_SESSION_KEY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NullLmPassword">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NULL_LM_PASSWORD']/*"/>	
            <unmanaged>ERROR_NULL_LM_PASSWORD</unmanaged>	
            <unmanaged-short>ERROR_NULL_LM_PASSWORD</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.UnknownRevision">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_UNKNOWN_REVISION']/*"/>	
            <unmanaged>ERROR_UNKNOWN_REVISION</unmanaged>	
            <unmanaged-short>ERROR_UNKNOWN_REVISION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.RevisionMismatch">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_REVISION_MISMATCH']/*"/>	
            <unmanaged>ERROR_REVISION_MISMATCH</unmanaged>	
            <unmanaged-short>ERROR_REVISION_MISMATCH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidOwner">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_OWNER']/*"/>	
            <unmanaged>ERROR_INVALID_OWNER</unmanaged>	
            <unmanaged-short>ERROR_INVALID_OWNER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidPrimaryGroup">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_PRIMARY_GROUP']/*"/>	
            <unmanaged>ERROR_INVALID_PRIMARY_GROUP</unmanaged>	
            <unmanaged-short>ERROR_INVALID_PRIMARY_GROUP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoImpersonationToken">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_IMPERSONATION_TOKEN']/*"/>	
            <unmanaged>ERROR_NO_IMPERSONATION_TOKEN</unmanaged>	
            <unmanaged-short>ERROR_NO_IMPERSONATION_TOKEN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CantDisableMandatory">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CANT_DISABLE_MANDATORY']/*"/>	
            <unmanaged>ERROR_CANT_DISABLE_MANDATORY</unmanaged>	
            <unmanaged-short>ERROR_CANT_DISABLE_MANDATORY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoLogonServers">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_LOGON_SERVERS']/*"/>	
            <unmanaged>ERROR_NO_LOGON_SERVERS</unmanaged>	
            <unmanaged-short>ERROR_NO_LOGON_SERVERS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoSuchLogonSession">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_SUCH_LOGON_SESSION']/*"/>	
            <unmanaged>ERROR_NO_SUCH_LOGON_SESSION</unmanaged>	
            <unmanaged-short>ERROR_NO_SUCH_LOGON_SESSION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoSuchPrivilege">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_SUCH_PRIVILEGE']/*"/>	
            <unmanaged>ERROR_NO_SUCH_PRIVILEGE</unmanaged>	
            <unmanaged-short>ERROR_NO_SUCH_PRIVILEGE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PrivilegeNotHeld">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PRIVILEGE_NOT_HELD']/*"/>	
            <unmanaged>ERROR_PRIVILEGE_NOT_HELD</unmanaged>	
            <unmanaged-short>ERROR_PRIVILEGE_NOT_HELD</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidAccountName">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_ACCOUNT_NAME']/*"/>	
            <unmanaged>ERROR_INVALID_ACCOUNT_NAME</unmanaged>	
            <unmanaged-short>ERROR_INVALID_ACCOUNT_NAME</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.UserExists">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_USER_EXISTS']/*"/>	
            <unmanaged>ERROR_USER_EXISTS</unmanaged>	
            <unmanaged-short>ERROR_USER_EXISTS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoSuchUser">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_SUCH_USER']/*"/>	
            <unmanaged>ERROR_NO_SUCH_USER</unmanaged>	
            <unmanaged-short>ERROR_NO_SUCH_USER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GroupExists">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GROUP_EXISTS']/*"/>	
            <unmanaged>ERROR_GROUP_EXISTS</unmanaged>	
            <unmanaged-short>ERROR_GROUP_EXISTS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoSuchGroup">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_SUCH_GROUP']/*"/>	
            <unmanaged>ERROR_NO_SUCH_GROUP</unmanaged>	
            <unmanaged-short>ERROR_NO_SUCH_GROUP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MemberInGroup">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MEMBER_IN_GROUP']/*"/>	
            <unmanaged>ERROR_MEMBER_IN_GROUP</unmanaged>	
            <unmanaged-short>ERROR_MEMBER_IN_GROUP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MemberNotInGroup">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MEMBER_NOT_IN_GROUP']/*"/>	
            <unmanaged>ERROR_MEMBER_NOT_IN_GROUP</unmanaged>	
            <unmanaged-short>ERROR_MEMBER_NOT_IN_GROUP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LastAdmin">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LAST_ADMIN']/*"/>	
            <unmanaged>ERROR_LAST_ADMIN</unmanaged>	
            <unmanaged-short>ERROR_LAST_ADMIN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.WrongPassword">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_WRONG_PASSWORD']/*"/>	
            <unmanaged>ERROR_WRONG_PASSWORD</unmanaged>	
            <unmanaged-short>ERROR_WRONG_PASSWORD</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IllFormedPassword">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_ILL_FORMED_PASSWORD']/*"/>	
            <unmanaged>ERROR_ILL_FORMED_PASSWORD</unmanaged>	
            <unmanaged-short>ERROR_ILL_FORMED_PASSWORD</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PasswordRestriction">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PASSWORD_RESTRICTION']/*"/>	
            <unmanaged>ERROR_PASSWORD_RESTRICTION</unmanaged>	
            <unmanaged-short>ERROR_PASSWORD_RESTRICTION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LogonFailure">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOGON_FAILURE']/*"/>	
            <unmanaged>ERROR_LOGON_FAILURE</unmanaged>	
            <unmanaged-short>ERROR_LOGON_FAILURE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.AccountRestriction">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_ACCOUNT_RESTRICTION']/*"/>	
            <unmanaged>ERROR_ACCOUNT_RESTRICTION</unmanaged>	
            <unmanaged-short>ERROR_ACCOUNT_RESTRICTION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidLogonHours">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_LOGON_HOURS']/*"/>	
            <unmanaged>ERROR_INVALID_LOGON_HOURS</unmanaged>	
            <unmanaged-short>ERROR_INVALID_LOGON_HOURS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidWorkstation">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_WORKSTATION']/*"/>	
            <unmanaged>ERROR_INVALID_WORKSTATION</unmanaged>	
            <unmanaged-short>ERROR_INVALID_WORKSTATION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PasswordExpired">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PASSWORD_EXPIRED']/*"/>	
            <unmanaged>ERROR_PASSWORD_EXPIRED</unmanaged>	
            <unmanaged-short>ERROR_PASSWORD_EXPIRED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.AccountDisabled">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_ACCOUNT_DISABLED']/*"/>	
            <unmanaged>ERROR_ACCOUNT_DISABLED</unmanaged>	
            <unmanaged-short>ERROR_ACCOUNT_DISABLED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoneMapped">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NONE_MAPPED']/*"/>	
            <unmanaged>ERROR_NONE_MAPPED</unmanaged>	
            <unmanaged-short>ERROR_NONE_MAPPED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TooManyLuidsRequested">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TOO_MANY_LUIDS_REQUESTED']/*"/>	
            <unmanaged>ERROR_TOO_MANY_LUIDS_REQUESTED</unmanaged>	
            <unmanaged-short>ERROR_TOO_MANY_LUIDS_REQUESTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LuidsExhausted">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LUIDS_EXHAUSTED']/*"/>	
            <unmanaged>ERROR_LUIDS_EXHAUSTED</unmanaged>	
            <unmanaged-short>ERROR_LUIDS_EXHAUSTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidSubAuthority">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_SUB_AUTHORITY']/*"/>	
            <unmanaged>ERROR_INVALID_SUB_AUTHORITY</unmanaged>	
            <unmanaged-short>ERROR_INVALID_SUB_AUTHORITY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidAcl">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_ACL']/*"/>	
            <unmanaged>ERROR_INVALID_ACL</unmanaged>	
            <unmanaged-short>ERROR_INVALID_ACL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidSid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_SID']/*"/>	
            <unmanaged>ERROR_INVALID_SID</unmanaged>	
            <unmanaged-short>ERROR_INVALID_SID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidSecurityDescr">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_SECURITY_DESCR']/*"/>	
            <unmanaged>ERROR_INVALID_SECURITY_DESCR</unmanaged>	
            <unmanaged-short>ERROR_INVALID_SECURITY_DESCR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.BadInheritanceAcl">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_BAD_INHERITANCE_ACL']/*"/>	
            <unmanaged>ERROR_BAD_INHERITANCE_ACL</unmanaged>	
            <unmanaged-short>ERROR_BAD_INHERITANCE_ACL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ServerDisabled">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SERVER_DISABLED']/*"/>	
            <unmanaged>ERROR_SERVER_DISABLED</unmanaged>	
            <unmanaged-short>ERROR_SERVER_DISABLED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ServerNotDisabled">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SERVER_NOT_DISABLED']/*"/>	
            <unmanaged>ERROR_SERVER_NOT_DISABLED</unmanaged>	
            <unmanaged-short>ERROR_SERVER_NOT_DISABLED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidIdAuthority">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_ID_AUTHORITY']/*"/>	
            <unmanaged>ERROR_INVALID_ID_AUTHORITY</unmanaged>	
            <unmanaged-short>ERROR_INVALID_ID_AUTHORITY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.AllottedSpaceExceeded">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_ALLOTTED_SPACE_EXCEEDED']/*"/>	
            <unmanaged>ERROR_ALLOTTED_SPACE_EXCEEDED</unmanaged>	
            <unmanaged-short>ERROR_ALLOTTED_SPACE_EXCEEDED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidGroupAttributes">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_GROUP_ATTRIBUTES']/*"/>	
            <unmanaged>ERROR_INVALID_GROUP_ATTRIBUTES</unmanaged>	
            <unmanaged-short>ERROR_INVALID_GROUP_ATTRIBUTES</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.BadImpersonationLevel">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_BAD_IMPERSONATION_LEVEL']/*"/>	
            <unmanaged>ERROR_BAD_IMPERSONATION_LEVEL</unmanaged>	
            <unmanaged-short>ERROR_BAD_IMPERSONATION_LEVEL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CantOpenAnonymous">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CANT_OPEN_ANONYMOUS']/*"/>	
            <unmanaged>ERROR_CANT_OPEN_ANONYMOUS</unmanaged>	
            <unmanaged-short>ERROR_CANT_OPEN_ANONYMOUS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.BadValidationClass">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_BAD_VALIDATION_CLASS']/*"/>	
            <unmanaged>ERROR_BAD_VALIDATION_CLASS</unmanaged>	
            <unmanaged-short>ERROR_BAD_VALIDATION_CLASS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.BadTokenType">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_BAD_TOKEN_TYPE']/*"/>	
            <unmanaged>ERROR_BAD_TOKEN_TYPE</unmanaged>	
            <unmanaged-short>ERROR_BAD_TOKEN_TYPE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoSecurityOnObject">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_SECURITY_ON_OBJECT']/*"/>	
            <unmanaged>ERROR_NO_SECURITY_ON_OBJECT</unmanaged>	
            <unmanaged-short>ERROR_NO_SECURITY_ON_OBJECT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CantAccessDomainInformation">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CANT_ACCESS_DOMAIN_INFO']/*"/>	
            <unmanaged>ERROR_CANT_ACCESS_DOMAIN_INFO</unmanaged>	
            <unmanaged-short>ERROR_CANT_ACCESS_DOMAIN_INFO</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidServerState">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_SERVER_STATE']/*"/>	
            <unmanaged>ERROR_INVALID_SERVER_STATE</unmanaged>	
            <unmanaged-short>ERROR_INVALID_SERVER_STATE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidDomainState">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_DOMAIN_STATE']/*"/>	
            <unmanaged>ERROR_INVALID_DOMAIN_STATE</unmanaged>	
            <unmanaged-short>ERROR_INVALID_DOMAIN_STATE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidDomainRole">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_DOMAIN_ROLE']/*"/>	
            <unmanaged>ERROR_INVALID_DOMAIN_ROLE</unmanaged>	
            <unmanaged-short>ERROR_INVALID_DOMAIN_ROLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoSuchDomain">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_SUCH_DOMAIN']/*"/>	
            <unmanaged>ERROR_NO_SUCH_DOMAIN</unmanaged>	
            <unmanaged-short>ERROR_NO_SUCH_DOMAIN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DomainExists">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DOMAIN_EXISTS']/*"/>	
            <unmanaged>ERROR_DOMAIN_EXISTS</unmanaged>	
            <unmanaged-short>ERROR_DOMAIN_EXISTS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DomainLimitExceeded">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DOMAIN_LIMIT_EXCEEDED']/*"/>	
            <unmanaged>ERROR_DOMAIN_LIMIT_EXCEEDED</unmanaged>	
            <unmanaged-short>ERROR_DOMAIN_LIMIT_EXCEEDED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InternalDbCorruption">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INTERNAL_DB_CORRUPTION']/*"/>	
            <unmanaged>ERROR_INTERNAL_DB_CORRUPTION</unmanaged>	
            <unmanaged-short>ERROR_INTERNAL_DB_CORRUPTION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InternalError">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INTERNAL_ERROR']/*"/>	
            <unmanaged>ERROR_INTERNAL_ERROR</unmanaged>	
            <unmanaged-short>ERROR_INTERNAL_ERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GenericNotMapped">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GENERIC_NOT_MAPPED']/*"/>	
            <unmanaged>ERROR_GENERIC_NOT_MAPPED</unmanaged>	
            <unmanaged-short>ERROR_GENERIC_NOT_MAPPED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.BadDescriptorFormat">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_BAD_DESCRIPTOR_FORMAT']/*"/>	
            <unmanaged>ERROR_BAD_DESCRIPTOR_FORMAT</unmanaged>	
            <unmanaged-short>ERROR_BAD_DESCRIPTOR_FORMAT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NotLogonProcess">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NOT_LOGON_PROCESS']/*"/>	
            <unmanaged>ERROR_NOT_LOGON_PROCESS</unmanaged>	
            <unmanaged-short>ERROR_NOT_LOGON_PROCESS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LogonSessionExists">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOGON_SESSION_EXISTS']/*"/>	
            <unmanaged>ERROR_LOGON_SESSION_EXISTS</unmanaged>	
            <unmanaged-short>ERROR_LOGON_SESSION_EXISTS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoSuchPackage">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_SUCH_PACKAGE']/*"/>	
            <unmanaged>ERROR_NO_SUCH_PACKAGE</unmanaged>	
            <unmanaged-short>ERROR_NO_SUCH_PACKAGE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.BadLogonSessionState">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_BAD_LOGON_SESSION_STATE']/*"/>	
            <unmanaged>ERROR_BAD_LOGON_SESSION_STATE</unmanaged>	
            <unmanaged-short>ERROR_BAD_LOGON_SESSION_STATE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LogonSessionCollision">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOGON_SESSION_COLLISION']/*"/>	
            <unmanaged>ERROR_LOGON_SESSION_COLLISION</unmanaged>	
            <unmanaged-short>ERROR_LOGON_SESSION_COLLISION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidLogonType">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_LOGON_TYPE']/*"/>	
            <unmanaged>ERROR_INVALID_LOGON_TYPE</unmanaged>	
            <unmanaged-short>ERROR_INVALID_LOGON_TYPE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CannotImpersonate">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CANNOT_IMPERSONATE']/*"/>	
            <unmanaged>ERROR_CANNOT_IMPERSONATE</unmanaged>	
            <unmanaged-short>ERROR_CANNOT_IMPERSONATE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.RxactInvalidState">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_RXACT_INVALID_STATE']/*"/>	
            <unmanaged>ERROR_RXACT_INVALID_STATE</unmanaged>	
            <unmanaged-short>ERROR_RXACT_INVALID_STATE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.RxactCommitFailure">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_RXACT_COMMIT_FAILURE']/*"/>	
            <unmanaged>ERROR_RXACT_COMMIT_FAILURE</unmanaged>	
            <unmanaged-short>ERROR_RXACT_COMMIT_FAILURE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SpecialAccount">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SPECIAL_ACCOUNT']/*"/>	
            <unmanaged>ERROR_SPECIAL_ACCOUNT</unmanaged>	
            <unmanaged-short>ERROR_SPECIAL_ACCOUNT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SpecialGroup">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SPECIAL_GROUP']/*"/>	
            <unmanaged>ERROR_SPECIAL_GROUP</unmanaged>	
            <unmanaged-short>ERROR_SPECIAL_GROUP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SpecialUser">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SPECIAL_USER']/*"/>	
            <unmanaged>ERROR_SPECIAL_USER</unmanaged>	
            <unmanaged-short>ERROR_SPECIAL_USER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MembersPrimaryGroup">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MEMBERS_PRIMARY_GROUP']/*"/>	
            <unmanaged>ERROR_MEMBERS_PRIMARY_GROUP</unmanaged>	
            <unmanaged-short>ERROR_MEMBERS_PRIMARY_GROUP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TokenAlreadyInUse">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TOKEN_ALREADY_IN_USE']/*"/>	
            <unmanaged>ERROR_TOKEN_ALREADY_IN_USE</unmanaged>	
            <unmanaged-short>ERROR_TOKEN_ALREADY_IN_USE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoSuchAlias">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_SUCH_ALIAS']/*"/>	
            <unmanaged>ERROR_NO_SUCH_ALIAS</unmanaged>	
            <unmanaged-short>ERROR_NO_SUCH_ALIAS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MemberNotInAlias">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MEMBER_NOT_IN_ALIAS']/*"/>	
            <unmanaged>ERROR_MEMBER_NOT_IN_ALIAS</unmanaged>	
            <unmanaged-short>ERROR_MEMBER_NOT_IN_ALIAS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MemberInAlias">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MEMBER_IN_ALIAS']/*"/>	
            <unmanaged>ERROR_MEMBER_IN_ALIAS</unmanaged>	
            <unmanaged-short>ERROR_MEMBER_IN_ALIAS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.AliasExists">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_ALIAS_EXISTS']/*"/>	
            <unmanaged>ERROR_ALIAS_EXISTS</unmanaged>	
            <unmanaged-short>ERROR_ALIAS_EXISTS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LogonNotGranted">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOGON_NOT_GRANTED']/*"/>	
            <unmanaged>ERROR_LOGON_NOT_GRANTED</unmanaged>	
            <unmanaged-short>ERROR_LOGON_NOT_GRANTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TooManySecrets">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TOO_MANY_SECRETS']/*"/>	
            <unmanaged>ERROR_TOO_MANY_SECRETS</unmanaged>	
            <unmanaged-short>ERROR_TOO_MANY_SECRETS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SecretTooLong">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SECRET_TOO_LONG']/*"/>	
            <unmanaged>ERROR_SECRET_TOO_LONG</unmanaged>	
            <unmanaged-short>ERROR_SECRET_TOO_LONG</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InternalDbError">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INTERNAL_DB_ERROR']/*"/>	
            <unmanaged>ERROR_INTERNAL_DB_ERROR</unmanaged>	
            <unmanaged-short>ERROR_INTERNAL_DB_ERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TooManyContextIds">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TOO_MANY_CONTEXT_IDS']/*"/>	
            <unmanaged>ERROR_TOO_MANY_CONTEXT_IDS</unmanaged>	
            <unmanaged-short>ERROR_TOO_MANY_CONTEXT_IDS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LogonTypeNotGranted">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOGON_TYPE_NOT_GRANTED']/*"/>	
            <unmanaged>ERROR_LOGON_TYPE_NOT_GRANTED</unmanaged>	
            <unmanaged-short>ERROR_LOGON_TYPE_NOT_GRANTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NtCrossEncryptionRequired">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NT_CROSS_ENCRYPTION_REQUIRED']/*"/>	
            <unmanaged>ERROR_NT_CROSS_ENCRYPTION_REQUIRED</unmanaged>	
            <unmanaged-short>ERROR_NT_CROSS_ENCRYPTION_REQUIRED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoSuchMember">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_SUCH_MEMBER']/*"/>	
            <unmanaged>ERROR_NO_SUCH_MEMBER</unmanaged>	
            <unmanaged-short>ERROR_NO_SUCH_MEMBER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidMember">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_MEMBER']/*"/>	
            <unmanaged>ERROR_INVALID_MEMBER</unmanaged>	
            <unmanaged-short>ERROR_INVALID_MEMBER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TooManySids">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TOO_MANY_SIDS']/*"/>	
            <unmanaged>ERROR_TOO_MANY_SIDS</unmanaged>	
            <unmanaged-short>ERROR_TOO_MANY_SIDS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LmCrossEncryptionRequired">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LM_CROSS_ENCRYPTION_REQUIRED']/*"/>	
            <unmanaged>ERROR_LM_CROSS_ENCRYPTION_REQUIRED</unmanaged>	
            <unmanaged-short>ERROR_LM_CROSS_ENCRYPTION_REQUIRED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoInheritance">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_INHERITANCE']/*"/>	
            <unmanaged>ERROR_NO_INHERITANCE</unmanaged>	
            <unmanaged-short>ERROR_NO_INHERITANCE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FileCorrupt">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FILE_CORRUPT']/*"/>	
            <unmanaged>ERROR_FILE_CORRUPT</unmanaged>	
            <unmanaged-short>ERROR_FILE_CORRUPT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DiskCorrupt">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DISK_CORRUPT']/*"/>	
            <unmanaged>ERROR_DISK_CORRUPT</unmanaged>	
            <unmanaged-short>ERROR_DISK_CORRUPT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoUserSessionKey">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_USER_SESSION_KEY']/*"/>	
            <unmanaged>ERROR_NO_USER_SESSION_KEY</unmanaged>	
            <unmanaged-short>ERROR_NO_USER_SESSION_KEY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LicenseQuotaExceeded">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LICENSE_QUOTA_EXCEEDED']/*"/>	
            <unmanaged>ERROR_LICENSE_QUOTA_EXCEEDED</unmanaged>	
            <unmanaged-short>ERROR_LICENSE_QUOTA_EXCEEDED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.WrongTargetName">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_WRONG_TARGET_NAME']/*"/>	
            <unmanaged>ERROR_WRONG_TARGET_NAME</unmanaged>	
            <unmanaged-short>ERROR_WRONG_TARGET_NAME</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MutualAuthFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MUTUAL_AUTH_FAILED']/*"/>	
            <unmanaged>ERROR_MUTUAL_AUTH_FAILED</unmanaged>	
            <unmanaged-short>ERROR_MUTUAL_AUTH_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TimeSkew">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TIME_SKEW']/*"/>	
            <unmanaged>ERROR_TIME_SKEW</unmanaged>	
            <unmanaged-short>ERROR_TIME_SKEW</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CurrentDomainNotAllowed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CURRENT_DOMAIN_NOT_ALLOWED']/*"/>	
            <unmanaged>ERROR_CURRENT_DOMAIN_NOT_ALLOWED</unmanaged>	
            <unmanaged-short>ERROR_CURRENT_DOMAIN_NOT_ALLOWED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidWindowHandle">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_WINDOW_HANDLE']/*"/>	
            <unmanaged>ERROR_INVALID_WINDOW_HANDLE</unmanaged>	
            <unmanaged-short>ERROR_INVALID_WINDOW_HANDLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidMenuHandle">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_MENU_HANDLE']/*"/>	
            <unmanaged>ERROR_INVALID_MENU_HANDLE</unmanaged>	
            <unmanaged-short>ERROR_INVALID_MENU_HANDLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidCursorHandle">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_CURSOR_HANDLE']/*"/>	
            <unmanaged>ERROR_INVALID_CURSOR_HANDLE</unmanaged>	
            <unmanaged-short>ERROR_INVALID_CURSOR_HANDLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidAccelHandle">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_ACCEL_HANDLE']/*"/>	
            <unmanaged>ERROR_INVALID_ACCEL_HANDLE</unmanaged>	
            <unmanaged-short>ERROR_INVALID_ACCEL_HANDLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidHookHandle">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_HOOK_HANDLE']/*"/>	
            <unmanaged>ERROR_INVALID_HOOK_HANDLE</unmanaged>	
            <unmanaged-short>ERROR_INVALID_HOOK_HANDLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidDwpHandle">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_DWP_HANDLE']/*"/>	
            <unmanaged>ERROR_INVALID_DWP_HANDLE</unmanaged>	
            <unmanaged-short>ERROR_INVALID_DWP_HANDLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TlwWithWschild">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TLW_WITH_WSCHILD']/*"/>	
            <unmanaged>ERROR_TLW_WITH_WSCHILD</unmanaged>	
            <unmanaged-short>ERROR_TLW_WITH_WSCHILD</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CannotFindWndClass">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CANNOT_FIND_WND_CLASS']/*"/>	
            <unmanaged>ERROR_CANNOT_FIND_WND_CLASS</unmanaged>	
            <unmanaged-short>ERROR_CANNOT_FIND_WND_CLASS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.WindowOfOtherThread">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_WINDOW_OF_OTHER_THREAD']/*"/>	
            <unmanaged>ERROR_WINDOW_OF_OTHER_THREAD</unmanaged>	
            <unmanaged-short>ERROR_WINDOW_OF_OTHER_THREAD</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.HotkeyAlreadyRegistered">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_HOTKEY_ALREADY_REGISTERED']/*"/>	
            <unmanaged>ERROR_HOTKEY_ALREADY_REGISTERED</unmanaged>	
            <unmanaged-short>ERROR_HOTKEY_ALREADY_REGISTERED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClassAlreadyExists">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLASS_ALREADY_EXISTS']/*"/>	
            <unmanaged>ERROR_CLASS_ALREADY_EXISTS</unmanaged>	
            <unmanaged-short>ERROR_CLASS_ALREADY_EXISTS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClassDoesNotExist">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLASS_DOES_NOT_EXIST']/*"/>	
            <unmanaged>ERROR_CLASS_DOES_NOT_EXIST</unmanaged>	
            <unmanaged-short>ERROR_CLASS_DOES_NOT_EXIST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClassHasWindows">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLASS_HAS_WINDOWS']/*"/>	
            <unmanaged>ERROR_CLASS_HAS_WINDOWS</unmanaged>	
            <unmanaged-short>ERROR_CLASS_HAS_WINDOWS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidIndex">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_INDEX']/*"/>	
            <unmanaged>ERROR_INVALID_INDEX</unmanaged>	
            <unmanaged-short>ERROR_INVALID_INDEX</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidIconHandle">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_ICON_HANDLE']/*"/>	
            <unmanaged>ERROR_INVALID_ICON_HANDLE</unmanaged>	
            <unmanaged-short>ERROR_INVALID_ICON_HANDLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PrivateDialogIndex">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PRIVATE_DIALOG_INDEX']/*"/>	
            <unmanaged>ERROR_PRIVATE_DIALOG_INDEX</unmanaged>	
            <unmanaged-short>ERROR_PRIVATE_DIALOG_INDEX</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ListboxIdNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LISTBOX_ID_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_LISTBOX_ID_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_LISTBOX_ID_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoWildcardCharacters">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_WILDCARD_CHARACTERS']/*"/>	
            <unmanaged>ERROR_NO_WILDCARD_CHARACTERS</unmanaged>	
            <unmanaged-short>ERROR_NO_WILDCARD_CHARACTERS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClipboardNotOpen">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLIPBOARD_NOT_OPEN']/*"/>	
            <unmanaged>ERROR_CLIPBOARD_NOT_OPEN</unmanaged>	
            <unmanaged-short>ERROR_CLIPBOARD_NOT_OPEN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.HotkeyNotRegistered">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_HOTKEY_NOT_REGISTERED']/*"/>	
            <unmanaged>ERROR_HOTKEY_NOT_REGISTERED</unmanaged>	
            <unmanaged-short>ERROR_HOTKEY_NOT_REGISTERED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.WindowNotDialog">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_WINDOW_NOT_DIALOG']/*"/>	
            <unmanaged>ERROR_WINDOW_NOT_DIALOG</unmanaged>	
            <unmanaged-short>ERROR_WINDOW_NOT_DIALOG</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ControlIdNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CONTROL_ID_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_CONTROL_ID_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_CONTROL_ID_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidComboboxMessage">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_COMBOBOX_MESSAGE']/*"/>	
            <unmanaged>ERROR_INVALID_COMBOBOX_MESSAGE</unmanaged>	
            <unmanaged-short>ERROR_INVALID_COMBOBOX_MESSAGE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.WindowNotCombobox">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_WINDOW_NOT_COMBOBOX']/*"/>	
            <unmanaged>ERROR_WINDOW_NOT_COMBOBOX</unmanaged>	
            <unmanaged-short>ERROR_WINDOW_NOT_COMBOBOX</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidEditHeight">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_EDIT_HEIGHT']/*"/>	
            <unmanaged>ERROR_INVALID_EDIT_HEIGHT</unmanaged>	
            <unmanaged-short>ERROR_INVALID_EDIT_HEIGHT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DeviceContextNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DC_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_DC_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_DC_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidHookFilter">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_HOOK_FILTER']/*"/>	
            <unmanaged>ERROR_INVALID_HOOK_FILTER</unmanaged>	
            <unmanaged-short>ERROR_INVALID_HOOK_FILTER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidFilterProc">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_FILTER_PROC']/*"/>	
            <unmanaged>ERROR_INVALID_FILTER_PROC</unmanaged>	
            <unmanaged-short>ERROR_INVALID_FILTER_PROC</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.HookNeedsHmod">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_HOOK_NEEDS_HMOD']/*"/>	
            <unmanaged>ERROR_HOOK_NEEDS_HMOD</unmanaged>	
            <unmanaged-short>ERROR_HOOK_NEEDS_HMOD</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GlobalOnlyHook">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GLOBAL_ONLY_HOOK']/*"/>	
            <unmanaged>ERROR_GLOBAL_ONLY_HOOK</unmanaged>	
            <unmanaged-short>ERROR_GLOBAL_ONLY_HOOK</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.JournalHookSet">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_JOURNAL_HOOK_SET']/*"/>	
            <unmanaged>ERROR_JOURNAL_HOOK_SET</unmanaged>	
            <unmanaged-short>ERROR_JOURNAL_HOOK_SET</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.HookNotInstalled">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_HOOK_NOT_INSTALLED']/*"/>	
            <unmanaged>ERROR_HOOK_NOT_INSTALLED</unmanaged>	
            <unmanaged-short>ERROR_HOOK_NOT_INSTALLED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidLbMessage">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_LB_MESSAGE']/*"/>	
            <unmanaged>ERROR_INVALID_LB_MESSAGE</unmanaged>	
            <unmanaged-short>ERROR_INVALID_LB_MESSAGE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SetcountOnBadLb">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SETCOUNT_ON_BAD_LB']/*"/>	
            <unmanaged>ERROR_SETCOUNT_ON_BAD_LB</unmanaged>	
            <unmanaged-short>ERROR_SETCOUNT_ON_BAD_LB</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LbWithoutTabstops">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LB_WITHOUT_TABSTOPS']/*"/>	
            <unmanaged>ERROR_LB_WITHOUT_TABSTOPS</unmanaged>	
            <unmanaged-short>ERROR_LB_WITHOUT_TABSTOPS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DestroyObjectOfOtherThread">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DESTROY_OBJECT_OF_OTHER_THREAD']/*"/>	
            <unmanaged>ERROR_DESTROY_OBJECT_OF_OTHER_THREAD</unmanaged>	
            <unmanaged-short>ERROR_DESTROY_OBJECT_OF_OTHER_THREAD</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ChildWindowMenu">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CHILD_WINDOW_MENU']/*"/>	
            <unmanaged>ERROR_CHILD_WINDOW_MENU</unmanaged>	
            <unmanaged-short>ERROR_CHILD_WINDOW_MENU</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoSystemMenu">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_SYSTEM_MENU']/*"/>	
            <unmanaged>ERROR_NO_SYSTEM_MENU</unmanaged>	
            <unmanaged-short>ERROR_NO_SYSTEM_MENU</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidMsgboxStyle">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_MSGBOX_STYLE']/*"/>	
            <unmanaged>ERROR_INVALID_MSGBOX_STYLE</unmanaged>	
            <unmanaged-short>ERROR_INVALID_MSGBOX_STYLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidSpiValue">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_SPI_VALUE']/*"/>	
            <unmanaged>ERROR_INVALID_SPI_VALUE</unmanaged>	
            <unmanaged-short>ERROR_INVALID_SPI_VALUE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ScreenAlreadyLocked">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SCREEN_ALREADY_LOCKED']/*"/>	
            <unmanaged>ERROR_SCREEN_ALREADY_LOCKED</unmanaged>	
            <unmanaged-short>ERROR_SCREEN_ALREADY_LOCKED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.HwndsHaveDiffParent">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_HWNDS_HAVE_DIFF_PARENT']/*"/>	
            <unmanaged>ERROR_HWNDS_HAVE_DIFF_PARENT</unmanaged>	
            <unmanaged-short>ERROR_HWNDS_HAVE_DIFF_PARENT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NotChildWindow">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NOT_CHILD_WINDOW']/*"/>	
            <unmanaged>ERROR_NOT_CHILD_WINDOW</unmanaged>	
            <unmanaged-short>ERROR_NOT_CHILD_WINDOW</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidGwCommand">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_GW_COMMAND']/*"/>	
            <unmanaged>ERROR_INVALID_GW_COMMAND</unmanaged>	
            <unmanaged-short>ERROR_INVALID_GW_COMMAND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidThreadId">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_THREAD_ID']/*"/>	
            <unmanaged>ERROR_INVALID_THREAD_ID</unmanaged>	
            <unmanaged-short>ERROR_INVALID_THREAD_ID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NonMdichildWindow">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NON_MDICHILD_WINDOW']/*"/>	
            <unmanaged>ERROR_NON_MDICHILD_WINDOW</unmanaged>	
            <unmanaged-short>ERROR_NON_MDICHILD_WINDOW</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PopupAlreadyActive">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_POPUP_ALREADY_ACTIVE']/*"/>	
            <unmanaged>ERROR_POPUP_ALREADY_ACTIVE</unmanaged>	
            <unmanaged-short>ERROR_POPUP_ALREADY_ACTIVE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoScrollbars">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_SCROLLBARS']/*"/>	
            <unmanaged>ERROR_NO_SCROLLBARS</unmanaged>	
            <unmanaged-short>ERROR_NO_SCROLLBARS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidScrollbarRange">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_SCROLLBAR_RANGE']/*"/>	
            <unmanaged>ERROR_INVALID_SCROLLBAR_RANGE</unmanaged>	
            <unmanaged-short>ERROR_INVALID_SCROLLBAR_RANGE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidShowwinCommand">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_SHOWWIN_COMMAND']/*"/>	
            <unmanaged>ERROR_INVALID_SHOWWIN_COMMAND</unmanaged>	
            <unmanaged-short>ERROR_INVALID_SHOWWIN_COMMAND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoSystemResources">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_SYSTEM_RESOURCES']/*"/>	
            <unmanaged>ERROR_NO_SYSTEM_RESOURCES</unmanaged>	
            <unmanaged-short>ERROR_NO_SYSTEM_RESOURCES</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NonpagedSystemResources">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NONPAGED_SYSTEM_RESOURCES']/*"/>	
            <unmanaged>ERROR_NONPAGED_SYSTEM_RESOURCES</unmanaged>	
            <unmanaged-short>ERROR_NONPAGED_SYSTEM_RESOURCES</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PagedSystemResources">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PAGED_SYSTEM_RESOURCES']/*"/>	
            <unmanaged>ERROR_PAGED_SYSTEM_RESOURCES</unmanaged>	
            <unmanaged-short>ERROR_PAGED_SYSTEM_RESOURCES</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.WorkingSetQuota">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_WORKING_SET_QUOTA']/*"/>	
            <unmanaged>ERROR_WORKING_SET_QUOTA</unmanaged>	
            <unmanaged-short>ERROR_WORKING_SET_QUOTA</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PagefileQuota">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PAGEFILE_QUOTA']/*"/>	
            <unmanaged>ERROR_PAGEFILE_QUOTA</unmanaged>	
            <unmanaged-short>ERROR_PAGEFILE_QUOTA</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CommitmentLimit">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_COMMITMENT_LIMIT']/*"/>	
            <unmanaged>ERROR_COMMITMENT_LIMIT</unmanaged>	
            <unmanaged-short>ERROR_COMMITMENT_LIMIT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MenuItemNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MENU_ITEM_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_MENU_ITEM_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_MENU_ITEM_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidKeyboardHandle">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_KEYBOARD_HANDLE']/*"/>	
            <unmanaged>ERROR_INVALID_KEYBOARD_HANDLE</unmanaged>	
            <unmanaged-short>ERROR_INVALID_KEYBOARD_HANDLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.HookTypeNotAllowed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_HOOK_TYPE_NOT_ALLOWED']/*"/>	
            <unmanaged>ERROR_HOOK_TYPE_NOT_ALLOWED</unmanaged>	
            <unmanaged-short>ERROR_HOOK_TYPE_NOT_ALLOWED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.RequiresInteractiveWindowstation">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_REQUIRES_INTERACTIVE_WINDOWSTATION']/*"/>	
            <unmanaged>ERROR_REQUIRES_INTERACTIVE_WINDOWSTATION</unmanaged>	
            <unmanaged-short>ERROR_REQUIRES_INTERACTIVE_WINDOWSTATION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.Timeout">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TIMEOUT']/*"/>	
            <unmanaged>ERROR_TIMEOUT</unmanaged>	
            <unmanaged-short>ERROR_TIMEOUT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidMonitorHandle">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_MONITOR_HANDLE']/*"/>	
            <unmanaged>ERROR_INVALID_MONITOR_HANDLE</unmanaged>	
            <unmanaged-short>ERROR_INVALID_MONITOR_HANDLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IncorrectSize">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INCORRECT_SIZE']/*"/>	
            <unmanaged>ERROR_INCORRECT_SIZE</unmanaged>	
            <unmanaged-short>ERROR_INCORRECT_SIZE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SymlinkClassDisabled">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SYMLINK_CLASS_DISABLED']/*"/>	
            <unmanaged>ERROR_SYMLINK_CLASS_DISABLED</unmanaged>	
            <unmanaged-short>ERROR_SYMLINK_CLASS_DISABLED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SymlinkNotSupported">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SYMLINK_NOT_SUPPORTED']/*"/>	
            <unmanaged>ERROR_SYMLINK_NOT_SUPPORTED</unmanaged>	
            <unmanaged-short>ERROR_SYMLINK_NOT_SUPPORTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.XmlParseError">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_XML_PARSE_ERROR']/*"/>	
            <unmanaged>ERROR_XML_PARSE_ERROR</unmanaged>	
            <unmanaged-short>ERROR_XML_PARSE_ERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.XmldsigError">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_XMLDSIG_ERROR']/*"/>	
            <unmanaged>ERROR_XMLDSIG_ERROR</unmanaged>	
            <unmanaged-short>ERROR_XMLDSIG_ERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.RestartApplication">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_RESTART_APPLICATION']/*"/>	
            <unmanaged>ERROR_RESTART_APPLICATION</unmanaged>	
            <unmanaged-short>ERROR_RESTART_APPLICATION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.WrongCompartment">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_WRONG_COMPARTMENT']/*"/>	
            <unmanaged>ERROR_WRONG_COMPARTMENT</unmanaged>	
            <unmanaged-short>ERROR_WRONG_COMPARTMENT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.AuthipFailure">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_AUTHIP_FAILURE']/*"/>	
            <unmanaged>ERROR_AUTHIP_FAILURE</unmanaged>	
            <unmanaged-short>ERROR_AUTHIP_FAILURE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoNvramResources">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_NVRAM_RESOURCES']/*"/>	
            <unmanaged>ERROR_NO_NVRAM_RESOURCES</unmanaged>	
            <unmanaged-short>ERROR_NO_NVRAM_RESOURCES</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NotGuiProcess">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NOT_GUI_PROCESS']/*"/>	
            <unmanaged>ERROR_NOT_GUI_PROCESS</unmanaged>	
            <unmanaged-short>ERROR_NOT_GUI_PROCESS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EventlogFileCorrupt">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EVENTLOG_FILE_CORRUPT']/*"/>	
            <unmanaged>ERROR_EVENTLOG_FILE_CORRUPT</unmanaged>	
            <unmanaged-short>ERROR_EVENTLOG_FILE_CORRUPT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EventlogCantStart">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EVENTLOG_CANT_START']/*"/>	
            <unmanaged>ERROR_EVENTLOG_CANT_START</unmanaged>	
            <unmanaged-short>ERROR_EVENTLOG_CANT_START</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LogFileFull">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOG_FILE_FULL']/*"/>	
            <unmanaged>ERROR_LOG_FILE_FULL</unmanaged>	
            <unmanaged-short>ERROR_LOG_FILE_FULL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EventlogFileChanged">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EVENTLOG_FILE_CHANGED']/*"/>	
            <unmanaged>ERROR_EVENTLOG_FILE_CHANGED</unmanaged>	
            <unmanaged-short>ERROR_EVENTLOG_FILE_CHANGED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidTaskName">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_TASK_NAME']/*"/>	
            <unmanaged>ERROR_INVALID_TASK_NAME</unmanaged>	
            <unmanaged-short>ERROR_INVALID_TASK_NAME</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidTaskIndex">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_TASK_INDEX']/*"/>	
            <unmanaged>ERROR_INVALID_TASK_INDEX</unmanaged>	
            <unmanaged-short>ERROR_INVALID_TASK_INDEX</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ThreadAlreadyInTask">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_THREAD_ALREADY_IN_TASK']/*"/>	
            <unmanaged>ERROR_THREAD_ALREADY_IN_TASK</unmanaged>	
            <unmanaged-short>ERROR_THREAD_ALREADY_IN_TASK</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InstallServiceFailure">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INSTALL_SERVICE_FAILURE']/*"/>	
            <unmanaged>ERROR_INSTALL_SERVICE_FAILURE</unmanaged>	
            <unmanaged-short>ERROR_INSTALL_SERVICE_FAILURE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InstallUserexit">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INSTALL_USEREXIT']/*"/>	
            <unmanaged>ERROR_INSTALL_USEREXIT</unmanaged>	
            <unmanaged-short>ERROR_INSTALL_USEREXIT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InstallFailure">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INSTALL_FAILURE']/*"/>	
            <unmanaged>ERROR_INSTALL_FAILURE</unmanaged>	
            <unmanaged-short>ERROR_INSTALL_FAILURE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InstallSuspend">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INSTALL_SUSPEND']/*"/>	
            <unmanaged>ERROR_INSTALL_SUSPEND</unmanaged>	
            <unmanaged-short>ERROR_INSTALL_SUSPEND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.UnknownProduct">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_UNKNOWN_PRODUCT']/*"/>	
            <unmanaged>ERROR_UNKNOWN_PRODUCT</unmanaged>	
            <unmanaged-short>ERROR_UNKNOWN_PRODUCT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.UnknownFeature">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_UNKNOWN_FEATURE']/*"/>	
            <unmanaged>ERROR_UNKNOWN_FEATURE</unmanaged>	
            <unmanaged-short>ERROR_UNKNOWN_FEATURE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.UnknownComponent">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_UNKNOWN_COMPONENT']/*"/>	
            <unmanaged>ERROR_UNKNOWN_COMPONENT</unmanaged>	
            <unmanaged-short>ERROR_UNKNOWN_COMPONENT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.UnknownProperty">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_UNKNOWN_PROPERTY']/*"/>	
            <unmanaged>ERROR_UNKNOWN_PROPERTY</unmanaged>	
            <unmanaged-short>ERROR_UNKNOWN_PROPERTY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidHandleState">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_HANDLE_STATE']/*"/>	
            <unmanaged>ERROR_INVALID_HANDLE_STATE</unmanaged>	
            <unmanaged-short>ERROR_INVALID_HANDLE_STATE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.BadConfiguration">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_BAD_CONFIGURATION']/*"/>	
            <unmanaged>ERROR_BAD_CONFIGURATION</unmanaged>	
            <unmanaged-short>ERROR_BAD_CONFIGURATION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IndexAbsent">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INDEX_ABSENT']/*"/>	
            <unmanaged>ERROR_INDEX_ABSENT</unmanaged>	
            <unmanaged-short>ERROR_INDEX_ABSENT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InstallSourceAbsent">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INSTALL_SOURCE_ABSENT']/*"/>	
            <unmanaged>ERROR_INSTALL_SOURCE_ABSENT</unmanaged>	
            <unmanaged-short>ERROR_INSTALL_SOURCE_ABSENT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InstallPackageVersion">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INSTALL_PACKAGE_VERSION']/*"/>	
            <unmanaged>ERROR_INSTALL_PACKAGE_VERSION</unmanaged>	
            <unmanaged-short>ERROR_INSTALL_PACKAGE_VERSION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ProductUninstalled">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PRODUCT_UNINSTALLED']/*"/>	
            <unmanaged>ERROR_PRODUCT_UNINSTALLED</unmanaged>	
            <unmanaged-short>ERROR_PRODUCT_UNINSTALLED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.BadQuerySyntax">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_BAD_QUERY_SYNTAX']/*"/>	
            <unmanaged>ERROR_BAD_QUERY_SYNTAX</unmanaged>	
            <unmanaged-short>ERROR_BAD_QUERY_SYNTAX</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidField">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_FIELD']/*"/>	
            <unmanaged>ERROR_INVALID_FIELD</unmanaged>	
            <unmanaged-short>ERROR_INVALID_FIELD</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DeviceRemoved">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DEVICE_REMOVED']/*"/>	
            <unmanaged>ERROR_DEVICE_REMOVED</unmanaged>	
            <unmanaged-short>ERROR_DEVICE_REMOVED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InstallAlreadyRunning">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INSTALL_ALREADY_RUNNING']/*"/>	
            <unmanaged>ERROR_INSTALL_ALREADY_RUNNING</unmanaged>	
            <unmanaged-short>ERROR_INSTALL_ALREADY_RUNNING</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InstallPackageOpenFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INSTALL_PACKAGE_OPEN_FAILED']/*"/>	
            <unmanaged>ERROR_INSTALL_PACKAGE_OPEN_FAILED</unmanaged>	
            <unmanaged-short>ERROR_INSTALL_PACKAGE_OPEN_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InstallPackageInvalid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INSTALL_PACKAGE_INVALID']/*"/>	
            <unmanaged>ERROR_INSTALL_PACKAGE_INVALID</unmanaged>	
            <unmanaged-short>ERROR_INSTALL_PACKAGE_INVALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InstallUiFailure">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INSTALL_UI_FAILURE']/*"/>	
            <unmanaged>ERROR_INSTALL_UI_FAILURE</unmanaged>	
            <unmanaged-short>ERROR_INSTALL_UI_FAILURE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InstallLogFailure">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INSTALL_LOG_FAILURE']/*"/>	
            <unmanaged>ERROR_INSTALL_LOG_FAILURE</unmanaged>	
            <unmanaged-short>ERROR_INSTALL_LOG_FAILURE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InstallLanguageUnsupported">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INSTALL_LANGUAGE_UNSUPPORTED']/*"/>	
            <unmanaged>ERROR_INSTALL_LANGUAGE_UNSUPPORTED</unmanaged>	
            <unmanaged-short>ERROR_INSTALL_LANGUAGE_UNSUPPORTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InstallTransformFailure">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INSTALL_TRANSFORM_FAILURE']/*"/>	
            <unmanaged>ERROR_INSTALL_TRANSFORM_FAILURE</unmanaged>	
            <unmanaged-short>ERROR_INSTALL_TRANSFORM_FAILURE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InstallPackageRejected">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INSTALL_PACKAGE_REJECTED']/*"/>	
            <unmanaged>ERROR_INSTALL_PACKAGE_REJECTED</unmanaged>	
            <unmanaged-short>ERROR_INSTALL_PACKAGE_REJECTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FunctionNotCalled">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FUNCTION_NOT_CALLED']/*"/>	
            <unmanaged>ERROR_FUNCTION_NOT_CALLED</unmanaged>	
            <unmanaged-short>ERROR_FUNCTION_NOT_CALLED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FunctionFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FUNCTION_FAILED']/*"/>	
            <unmanaged>ERROR_FUNCTION_FAILED</unmanaged>	
            <unmanaged-short>ERROR_FUNCTION_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidTable">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_TABLE']/*"/>	
            <unmanaged>ERROR_INVALID_TABLE</unmanaged>	
            <unmanaged-short>ERROR_INVALID_TABLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DatatypeMismatch">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DATATYPE_MISMATCH']/*"/>	
            <unmanaged>ERROR_DATATYPE_MISMATCH</unmanaged>	
            <unmanaged-short>ERROR_DATATYPE_MISMATCH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.UnsupportedType">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_UNSUPPORTED_TYPE']/*"/>	
            <unmanaged>ERROR_UNSUPPORTED_TYPE</unmanaged>	
            <unmanaged-short>ERROR_UNSUPPORTED_TYPE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CreateFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CREATE_FAILED']/*"/>	
            <unmanaged>ERROR_CREATE_FAILED</unmanaged>	
            <unmanaged-short>ERROR_CREATE_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InstallTempUnwritable">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INSTALL_TEMP_UNWRITABLE']/*"/>	
            <unmanaged>ERROR_INSTALL_TEMP_UNWRITABLE</unmanaged>	
            <unmanaged-short>ERROR_INSTALL_TEMP_UNWRITABLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InstallPlatformUnsupported">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INSTALL_PLATFORM_UNSUPPORTED']/*"/>	
            <unmanaged>ERROR_INSTALL_PLATFORM_UNSUPPORTED</unmanaged>	
            <unmanaged-short>ERROR_INSTALL_PLATFORM_UNSUPPORTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InstallNotused">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INSTALL_NOTUSED']/*"/>	
            <unmanaged>ERROR_INSTALL_NOTUSED</unmanaged>	
            <unmanaged-short>ERROR_INSTALL_NOTUSED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PatchPackageOpenFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PATCH_PACKAGE_OPEN_FAILED']/*"/>	
            <unmanaged>ERROR_PATCH_PACKAGE_OPEN_FAILED</unmanaged>	
            <unmanaged-short>ERROR_PATCH_PACKAGE_OPEN_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PatchPackageInvalid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PATCH_PACKAGE_INVALID']/*"/>	
            <unmanaged>ERROR_PATCH_PACKAGE_INVALID</unmanaged>	
            <unmanaged-short>ERROR_PATCH_PACKAGE_INVALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PatchPackageUnsupported">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PATCH_PACKAGE_UNSUPPORTED']/*"/>	
            <unmanaged>ERROR_PATCH_PACKAGE_UNSUPPORTED</unmanaged>	
            <unmanaged-short>ERROR_PATCH_PACKAGE_UNSUPPORTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ProductVersion">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PRODUCT_VERSION']/*"/>	
            <unmanaged>ERROR_PRODUCT_VERSION</unmanaged>	
            <unmanaged-short>ERROR_PRODUCT_VERSION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidCommandLine">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_COMMAND_LINE']/*"/>	
            <unmanaged>ERROR_INVALID_COMMAND_LINE</unmanaged>	
            <unmanaged-short>ERROR_INVALID_COMMAND_LINE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InstallRemoteDisallowed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INSTALL_REMOTE_DISALLOWED']/*"/>	
            <unmanaged>ERROR_INSTALL_REMOTE_DISALLOWED</unmanaged>	
            <unmanaged-short>ERROR_INSTALL_REMOTE_DISALLOWED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SuccessRebootInitiated">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SUCCESS_REBOOT_INITIATED']/*"/>	
            <unmanaged>ERROR_SUCCESS_REBOOT_INITIATED</unmanaged>	
            <unmanaged-short>ERROR_SUCCESS_REBOOT_INITIATED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PatchTargetNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PATCH_TARGET_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_PATCH_TARGET_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_PATCH_TARGET_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PatchPackageRejected">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PATCH_PACKAGE_REJECTED']/*"/>	
            <unmanaged>ERROR_PATCH_PACKAGE_REJECTED</unmanaged>	
            <unmanaged-short>ERROR_PATCH_PACKAGE_REJECTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InstallTransformRejected">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INSTALL_TRANSFORM_REJECTED']/*"/>	
            <unmanaged>ERROR_INSTALL_TRANSFORM_REJECTED</unmanaged>	
            <unmanaged-short>ERROR_INSTALL_TRANSFORM_REJECTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InstallRemoteProhibited">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INSTALL_REMOTE_PROHIBITED']/*"/>	
            <unmanaged>ERROR_INSTALL_REMOTE_PROHIBITED</unmanaged>	
            <unmanaged-short>ERROR_INSTALL_REMOTE_PROHIBITED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PatchRemovalUnsupported">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PATCH_REMOVAL_UNSUPPORTED']/*"/>	
            <unmanaged>ERROR_PATCH_REMOVAL_UNSUPPORTED</unmanaged>	
            <unmanaged-short>ERROR_PATCH_REMOVAL_UNSUPPORTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.UnknownPatch">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_UNKNOWN_PATCH']/*"/>	
            <unmanaged>ERROR_UNKNOWN_PATCH</unmanaged>	
            <unmanaged-short>ERROR_UNKNOWN_PATCH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PatchNoSequence">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PATCH_NO_SEQUENCE']/*"/>	
            <unmanaged>ERROR_PATCH_NO_SEQUENCE</unmanaged>	
            <unmanaged-short>ERROR_PATCH_NO_SEQUENCE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PatchRemovalDisallowed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PATCH_REMOVAL_DISALLOWED']/*"/>	
            <unmanaged>ERROR_PATCH_REMOVAL_DISALLOWED</unmanaged>	
            <unmanaged-short>ERROR_PATCH_REMOVAL_DISALLOWED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidPatchXml">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_PATCH_XML']/*"/>	
            <unmanaged>ERROR_INVALID_PATCH_XML</unmanaged>	
            <unmanaged-short>ERROR_INVALID_PATCH_XML</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PatchManagedAdvertisedProduct">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PATCH_MANAGED_ADVERTISED_PRODUCT']/*"/>	
            <unmanaged>ERROR_PATCH_MANAGED_ADVERTISED_PRODUCT</unmanaged>	
            <unmanaged-short>ERROR_PATCH_MANAGED_ADVERTISED_PRODUCT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InstallServiceSafeboot">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INSTALL_SERVICE_SAFEBOOT']/*"/>	
            <unmanaged>ERROR_INSTALL_SERVICE_SAFEBOOT</unmanaged>	
            <unmanaged-short>ERROR_INSTALL_SERVICE_SAFEBOOT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FailFastException">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FAIL_FAST_EXCEPTION']/*"/>	
            <unmanaged>ERROR_FAIL_FAST_EXCEPTION</unmanaged>	
            <unmanaged-short>ERROR_FAIL_FAST_EXCEPTION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InstallRejected">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INSTALL_REJECTED']/*"/>	
            <unmanaged>ERROR_INSTALL_REJECTED</unmanaged>	
            <unmanaged-short>ERROR_INSTALL_REJECTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidUserBuffer">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_USER_BUFFER']/*"/>	
            <unmanaged>ERROR_INVALID_USER_BUFFER</unmanaged>	
            <unmanaged-short>ERROR_INVALID_USER_BUFFER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.UnrecognizedMedia">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_UNRECOGNIZED_MEDIA']/*"/>	
            <unmanaged>ERROR_UNRECOGNIZED_MEDIA</unmanaged>	
            <unmanaged-short>ERROR_UNRECOGNIZED_MEDIA</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoTrustLsaSecret">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_TRUST_LSA_SECRET']/*"/>	
            <unmanaged>ERROR_NO_TRUST_LSA_SECRET</unmanaged>	
            <unmanaged-short>ERROR_NO_TRUST_LSA_SECRET</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoTrustSamAccount">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_TRUST_SAM_ACCOUNT']/*"/>	
            <unmanaged>ERROR_NO_TRUST_SAM_ACCOUNT</unmanaged>	
            <unmanaged-short>ERROR_NO_TRUST_SAM_ACCOUNT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TrustedDomainFailure">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TRUSTED_DOMAIN_FAILURE']/*"/>	
            <unmanaged>ERROR_TRUSTED_DOMAIN_FAILURE</unmanaged>	
            <unmanaged-short>ERROR_TRUSTED_DOMAIN_FAILURE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TrustedRelationshipFailure">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TRUSTED_RELATIONSHIP_FAILURE']/*"/>	
            <unmanaged>ERROR_TRUSTED_RELATIONSHIP_FAILURE</unmanaged>	
            <unmanaged-short>ERROR_TRUSTED_RELATIONSHIP_FAILURE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TrustFailure">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TRUST_FAILURE']/*"/>	
            <unmanaged>ERROR_TRUST_FAILURE</unmanaged>	
            <unmanaged-short>ERROR_TRUST_FAILURE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NetlogonNotStarted">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NETLOGON_NOT_STARTED']/*"/>	
            <unmanaged>ERROR_NETLOGON_NOT_STARTED</unmanaged>	
            <unmanaged-short>ERROR_NETLOGON_NOT_STARTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.AccountExpired">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_ACCOUNT_EXPIRED']/*"/>	
            <unmanaged>ERROR_ACCOUNT_EXPIRED</unmanaged>	
            <unmanaged-short>ERROR_ACCOUNT_EXPIRED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.RedirectorHasOpenHandles">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_REDIRECTOR_HAS_OPEN_HANDLES']/*"/>	
            <unmanaged>ERROR_REDIRECTOR_HAS_OPEN_HANDLES</unmanaged>	
            <unmanaged-short>ERROR_REDIRECTOR_HAS_OPEN_HANDLES</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PrinterDriverAlreadyInstalled">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PRINTER_DRIVER_ALREADY_INSTALLED']/*"/>	
            <unmanaged>ERROR_PRINTER_DRIVER_ALREADY_INSTALLED</unmanaged>	
            <unmanaged-short>ERROR_PRINTER_DRIVER_ALREADY_INSTALLED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.UnknownPort">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_UNKNOWN_PORT']/*"/>	
            <unmanaged>ERROR_UNKNOWN_PORT</unmanaged>	
            <unmanaged-short>ERROR_UNKNOWN_PORT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.UnknownPrinterDriver">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_UNKNOWN_PRINTER_DRIVER']/*"/>	
            <unmanaged>ERROR_UNKNOWN_PRINTER_DRIVER</unmanaged>	
            <unmanaged-short>ERROR_UNKNOWN_PRINTER_DRIVER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.UnknownPrintprocessor">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_UNKNOWN_PRINTPROCESSOR']/*"/>	
            <unmanaged>ERROR_UNKNOWN_PRINTPROCESSOR</unmanaged>	
            <unmanaged-short>ERROR_UNKNOWN_PRINTPROCESSOR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidSeparatorFile">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_SEPARATOR_FILE']/*"/>	
            <unmanaged>ERROR_INVALID_SEPARATOR_FILE</unmanaged>	
            <unmanaged-short>ERROR_INVALID_SEPARATOR_FILE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidPriority">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_PRIORITY']/*"/>	
            <unmanaged>ERROR_INVALID_PRIORITY</unmanaged>	
            <unmanaged-short>ERROR_INVALID_PRIORITY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidPrinterName">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_PRINTER_NAME']/*"/>	
            <unmanaged>ERROR_INVALID_PRINTER_NAME</unmanaged>	
            <unmanaged-short>ERROR_INVALID_PRINTER_NAME</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PrinterAlreadyExists">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PRINTER_ALREADY_EXISTS']/*"/>	
            <unmanaged>ERROR_PRINTER_ALREADY_EXISTS</unmanaged>	
            <unmanaged-short>ERROR_PRINTER_ALREADY_EXISTS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidPrinterCommand">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_PRINTER_COMMAND']/*"/>	
            <unmanaged>ERROR_INVALID_PRINTER_COMMAND</unmanaged>	
            <unmanaged-short>ERROR_INVALID_PRINTER_COMMAND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidDatatype">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_DATATYPE']/*"/>	
            <unmanaged>ERROR_INVALID_DATATYPE</unmanaged>	
            <unmanaged-short>ERROR_INVALID_DATATYPE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidEnvironment">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_ENVIRONMENT']/*"/>	
            <unmanaged>ERROR_INVALID_ENVIRONMENT</unmanaged>	
            <unmanaged-short>ERROR_INVALID_ENVIRONMENT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NologonInterdomainTrustAccount">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT']/*"/>	
            <unmanaged>ERROR_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT</unmanaged>	
            <unmanaged-short>ERROR_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NologonWorkstationTrustAccount">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NOLOGON_WORKSTATION_TRUST_ACCOUNT']/*"/>	
            <unmanaged>ERROR_NOLOGON_WORKSTATION_TRUST_ACCOUNT</unmanaged>	
            <unmanaged-short>ERROR_NOLOGON_WORKSTATION_TRUST_ACCOUNT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NologonServerTrustAccount">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NOLOGON_SERVER_TRUST_ACCOUNT']/*"/>	
            <unmanaged>ERROR_NOLOGON_SERVER_TRUST_ACCOUNT</unmanaged>	
            <unmanaged-short>ERROR_NOLOGON_SERVER_TRUST_ACCOUNT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DomainTrustInconsistent">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DOMAIN_TRUST_INCONSISTENT']/*"/>	
            <unmanaged>ERROR_DOMAIN_TRUST_INCONSISTENT</unmanaged>	
            <unmanaged-short>ERROR_DOMAIN_TRUST_INCONSISTENT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ServerHasOpenHandles">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SERVER_HAS_OPEN_HANDLES']/*"/>	
            <unmanaged>ERROR_SERVER_HAS_OPEN_HANDLES</unmanaged>	
            <unmanaged-short>ERROR_SERVER_HAS_OPEN_HANDLES</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ResourceDataNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_RESOURCE_DATA_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_RESOURCE_DATA_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_RESOURCE_DATA_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ResourceTypeNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_RESOURCE_TYPE_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_RESOURCE_TYPE_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_RESOURCE_TYPE_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ResourceNameNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_RESOURCE_NAME_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_RESOURCE_NAME_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_RESOURCE_NAME_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ResourceLangNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_RESOURCE_LANG_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_RESOURCE_LANG_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_RESOURCE_LANG_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NotEnoughQuota">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NOT_ENOUGH_QUOTA']/*"/>	
            <unmanaged>ERROR_NOT_ENOUGH_QUOTA</unmanaged>	
            <unmanaged-short>ERROR_NOT_ENOUGH_QUOTA</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidTime">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_TIME']/*"/>	
            <unmanaged>ERROR_INVALID_TIME</unmanaged>	
            <unmanaged-short>ERROR_INVALID_TIME</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidFormName">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_FORM_NAME']/*"/>	
            <unmanaged>ERROR_INVALID_FORM_NAME</unmanaged>	
            <unmanaged-short>ERROR_INVALID_FORM_NAME</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidFormSize">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_FORM_SIZE']/*"/>	
            <unmanaged>ERROR_INVALID_FORM_SIZE</unmanaged>	
            <unmanaged-short>ERROR_INVALID_FORM_SIZE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.AlreadyWaiting">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_ALREADY_WAITING']/*"/>	
            <unmanaged>ERROR_ALREADY_WAITING</unmanaged>	
            <unmanaged-short>ERROR_ALREADY_WAITING</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PrinterDeleted">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PRINTER_DELETED']/*"/>	
            <unmanaged>ERROR_PRINTER_DELETED</unmanaged>	
            <unmanaged-short>ERROR_PRINTER_DELETED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidPrinterState">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_PRINTER_STATE']/*"/>	
            <unmanaged>ERROR_INVALID_PRINTER_STATE</unmanaged>	
            <unmanaged-short>ERROR_INVALID_PRINTER_STATE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PasswordMustChange">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PASSWORD_MUST_CHANGE']/*"/>	
            <unmanaged>ERROR_PASSWORD_MUST_CHANGE</unmanaged>	
            <unmanaged-short>ERROR_PASSWORD_MUST_CHANGE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DomainControllerNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DOMAIN_CONTROLLER_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_DOMAIN_CONTROLLER_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_DOMAIN_CONTROLLER_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.AccountLockedOut">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_ACCOUNT_LOCKED_OUT']/*"/>	
            <unmanaged>ERROR_ACCOUNT_LOCKED_OUT</unmanaged>	
            <unmanaged-short>ERROR_ACCOUNT_LOCKED_OUT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoSitename">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_SITENAME']/*"/>	
            <unmanaged>ERROR_NO_SITENAME</unmanaged>	
            <unmanaged-short>ERROR_NO_SITENAME</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CantAccessFile">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CANT_ACCESS_FILE']/*"/>	
            <unmanaged>ERROR_CANT_ACCESS_FILE</unmanaged>	
            <unmanaged-short>ERROR_CANT_ACCESS_FILE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CantResolveFilename">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CANT_RESOLVE_FILENAME']/*"/>	
            <unmanaged>ERROR_CANT_RESOLVE_FILENAME</unmanaged>	
            <unmanaged-short>ERROR_CANT_RESOLVE_FILENAME</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.KmDriverBlocked">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_KM_DRIVER_BLOCKED']/*"/>	
            <unmanaged>ERROR_KM_DRIVER_BLOCKED</unmanaged>	
            <unmanaged-short>ERROR_KM_DRIVER_BLOCKED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ContextExpired">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CONTEXT_EXPIRED']/*"/>	
            <unmanaged>ERROR_CONTEXT_EXPIRED</unmanaged>	
            <unmanaged-short>ERROR_CONTEXT_EXPIRED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PerUserTrustQuotaExceeded">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PER_USER_TRUST_QUOTA_EXCEEDED']/*"/>	
            <unmanaged>ERROR_PER_USER_TRUST_QUOTA_EXCEEDED</unmanaged>	
            <unmanaged-short>ERROR_PER_USER_TRUST_QUOTA_EXCEEDED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.AllUserTrustQuotaExceeded">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_ALL_USER_TRUST_QUOTA_EXCEEDED']/*"/>	
            <unmanaged>ERROR_ALL_USER_TRUST_QUOTA_EXCEEDED</unmanaged>	
            <unmanaged-short>ERROR_ALL_USER_TRUST_QUOTA_EXCEEDED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.UserDeleteTrustQuotaExceeded">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_USER_DELETE_TRUST_QUOTA_EXCEEDED']/*"/>	
            <unmanaged>ERROR_USER_DELETE_TRUST_QUOTA_EXCEEDED</unmanaged>	
            <unmanaged-short>ERROR_USER_DELETE_TRUST_QUOTA_EXCEEDED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.AuthenticationFirewallFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_AUTHENTICATION_FIREWALL_FAILED']/*"/>	
            <unmanaged>ERROR_AUTHENTICATION_FIREWALL_FAILED</unmanaged>	
            <unmanaged-short>ERROR_AUTHENTICATION_FIREWALL_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.RemotePrintConnectionsBlocked">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_REMOTE_PRINT_CONNECTIONS_BLOCKED']/*"/>	
            <unmanaged>ERROR_REMOTE_PRINT_CONNECTIONS_BLOCKED</unmanaged>	
            <unmanaged-short>ERROR_REMOTE_PRINT_CONNECTIONS_BLOCKED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NtlmBlocked">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NTLM_BLOCKED']/*"/>	
            <unmanaged>ERROR_NTLM_BLOCKED</unmanaged>	
            <unmanaged-short>ERROR_NTLM_BLOCKED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PasswordChangeRequired">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PASSWORD_CHANGE_REQUIRED']/*"/>	
            <unmanaged>ERROR_PASSWORD_CHANGE_REQUIRED</unmanaged>	
            <unmanaged-short>ERROR_PASSWORD_CHANGE_REQUIRED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidPixelFormat">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_PIXEL_FORMAT']/*"/>	
            <unmanaged>ERROR_INVALID_PIXEL_FORMAT</unmanaged>	
            <unmanaged-short>ERROR_INVALID_PIXEL_FORMAT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.BadDriver">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_BAD_DRIVER']/*"/>	
            <unmanaged>ERROR_BAD_DRIVER</unmanaged>	
            <unmanaged-short>ERROR_BAD_DRIVER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidWindowStyle">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_WINDOW_STYLE']/*"/>	
            <unmanaged>ERROR_INVALID_WINDOW_STYLE</unmanaged>	
            <unmanaged-short>ERROR_INVALID_WINDOW_STYLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MetafileNotSupported">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_METAFILE_NOT_SUPPORTED']/*"/>	
            <unmanaged>ERROR_METAFILE_NOT_SUPPORTED</unmanaged>	
            <unmanaged-short>ERROR_METAFILE_NOT_SUPPORTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TransformNotSupported">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TRANSFORM_NOT_SUPPORTED']/*"/>	
            <unmanaged>ERROR_TRANSFORM_NOT_SUPPORTED</unmanaged>	
            <unmanaged-short>ERROR_TRANSFORM_NOT_SUPPORTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClippingNotSupported">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLIPPING_NOT_SUPPORTED']/*"/>	
            <unmanaged>ERROR_CLIPPING_NOT_SUPPORTED</unmanaged>	
            <unmanaged-short>ERROR_CLIPPING_NOT_SUPPORTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidCmm">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_CMM']/*"/>	
            <unmanaged>ERROR_INVALID_CMM</unmanaged>	
            <unmanaged-short>ERROR_INVALID_CMM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidProfile">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_PROFILE']/*"/>	
            <unmanaged>ERROR_INVALID_PROFILE</unmanaged>	
            <unmanaged-short>ERROR_INVALID_PROFILE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TagNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TAG_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_TAG_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_TAG_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TagNotPresent">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TAG_NOT_PRESENT']/*"/>	
            <unmanaged>ERROR_TAG_NOT_PRESENT</unmanaged>	
            <unmanaged-short>ERROR_TAG_NOT_PRESENT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DuplicateTag">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DUPLICATE_TAG']/*"/>	
            <unmanaged>ERROR_DUPLICATE_TAG</unmanaged>	
            <unmanaged-short>ERROR_DUPLICATE_TAG</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ProfileNotAssociatedWithDevice">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PROFILE_NOT_ASSOCIATED_WITH_DEVICE']/*"/>	
            <unmanaged>ERROR_PROFILE_NOT_ASSOCIATED_WITH_DEVICE</unmanaged>	
            <unmanaged-short>ERROR_PROFILE_NOT_ASSOCIATED_WITH_DEVICE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ProfileNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PROFILE_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_PROFILE_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_PROFILE_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidColorspace">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_COLORSPACE']/*"/>	
            <unmanaged>ERROR_INVALID_COLORSPACE</unmanaged>	
            <unmanaged-short>ERROR_INVALID_COLORSPACE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IcmNotEnabled">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_ICM_NOT_ENABLED']/*"/>	
            <unmanaged>ERROR_ICM_NOT_ENABLED</unmanaged>	
            <unmanaged-short>ERROR_ICM_NOT_ENABLED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DeletingIcmXform">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DELETING_ICM_XFORM']/*"/>	
            <unmanaged>ERROR_DELETING_ICM_XFORM</unmanaged>	
            <unmanaged-short>ERROR_DELETING_ICM_XFORM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidTransform">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_TRANSFORM']/*"/>	
            <unmanaged>ERROR_INVALID_TRANSFORM</unmanaged>	
            <unmanaged-short>ERROR_INVALID_TRANSFORM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ColorspaceMismatch">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_COLORSPACE_MISMATCH']/*"/>	
            <unmanaged>ERROR_COLORSPACE_MISMATCH</unmanaged>	
            <unmanaged-short>ERROR_COLORSPACE_MISMATCH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidColorindex">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_COLORINDEX']/*"/>	
            <unmanaged>ERROR_INVALID_COLORINDEX</unmanaged>	
            <unmanaged-short>ERROR_INVALID_COLORINDEX</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ProfileDoesNotMatchDevice">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PROFILE_DOES_NOT_MATCH_DEVICE']/*"/>	
            <unmanaged>ERROR_PROFILE_DOES_NOT_MATCH_DEVICE</unmanaged>	
            <unmanaged-short>ERROR_PROFILE_DOES_NOT_MATCH_DEVICE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ConnectedOtherPassword">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CONNECTED_OTHER_PASSWORD']/*"/>	
            <unmanaged>ERROR_CONNECTED_OTHER_PASSWORD</unmanaged>	
            <unmanaged-short>ERROR_CONNECTED_OTHER_PASSWORD</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ConnectedOtherPasswordDefault">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CONNECTED_OTHER_PASSWORD_DEFAULT']/*"/>	
            <unmanaged>ERROR_CONNECTED_OTHER_PASSWORD_DEFAULT</unmanaged>	
            <unmanaged-short>ERROR_CONNECTED_OTHER_PASSWORD_DEFAULT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.BadUsername">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_BAD_USERNAME']/*"/>	
            <unmanaged>ERROR_BAD_USERNAME</unmanaged>	
            <unmanaged-short>ERROR_BAD_USERNAME</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NotConnected">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NOT_CONNECTED']/*"/>	
            <unmanaged>ERROR_NOT_CONNECTED</unmanaged>	
            <unmanaged-short>ERROR_NOT_CONNECTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.OpenFiles">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_OPEN_FILES']/*"/>	
            <unmanaged>ERROR_OPEN_FILES</unmanaged>	
            <unmanaged-short>ERROR_OPEN_FILES</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ActiveConnections">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_ACTIVE_CONNECTIONS']/*"/>	
            <unmanaged>ERROR_ACTIVE_CONNECTIONS</unmanaged>	
            <unmanaged-short>ERROR_ACTIVE_CONNECTIONS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DeviceInUse">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DEVICE_IN_USE']/*"/>	
            <unmanaged>ERROR_DEVICE_IN_USE</unmanaged>	
            <unmanaged-short>ERROR_DEVICE_IN_USE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.UnknownPrintMonitor">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_UNKNOWN_PRINT_MONITOR']/*"/>	
            <unmanaged>ERROR_UNKNOWN_PRINT_MONITOR</unmanaged>	
            <unmanaged-short>ERROR_UNKNOWN_PRINT_MONITOR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PrinterDriverInUse">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PRINTER_DRIVER_IN_USE']/*"/>	
            <unmanaged>ERROR_PRINTER_DRIVER_IN_USE</unmanaged>	
            <unmanaged-short>ERROR_PRINTER_DRIVER_IN_USE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SpoolFileNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SPOOL_FILE_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_SPOOL_FILE_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_SPOOL_FILE_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SplNoStartdoc">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SPL_NO_STARTDOC']/*"/>	
            <unmanaged>ERROR_SPL_NO_STARTDOC</unmanaged>	
            <unmanaged-short>ERROR_SPL_NO_STARTDOC</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SplNoAddjob">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SPL_NO_ADDJOB']/*"/>	
            <unmanaged>ERROR_SPL_NO_ADDJOB</unmanaged>	
            <unmanaged-short>ERROR_SPL_NO_ADDJOB</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PrintProcessorAlreadyInstalled">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PRINT_PROCESSOR_ALREADY_INSTALLED']/*"/>	
            <unmanaged>ERROR_PRINT_PROCESSOR_ALREADY_INSTALLED</unmanaged>	
            <unmanaged-short>ERROR_PRINT_PROCESSOR_ALREADY_INSTALLED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PrintMonitorAlreadyInstalled">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PRINT_MONITOR_ALREADY_INSTALLED']/*"/>	
            <unmanaged>ERROR_PRINT_MONITOR_ALREADY_INSTALLED</unmanaged>	
            <unmanaged-short>ERROR_PRINT_MONITOR_ALREADY_INSTALLED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidPrintMonitor">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_PRINT_MONITOR']/*"/>	
            <unmanaged>ERROR_INVALID_PRINT_MONITOR</unmanaged>	
            <unmanaged-short>ERROR_INVALID_PRINT_MONITOR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PrintMonitorInUse">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PRINT_MONITOR_IN_USE']/*"/>	
            <unmanaged>ERROR_PRINT_MONITOR_IN_USE</unmanaged>	
            <unmanaged-short>ERROR_PRINT_MONITOR_IN_USE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PrinterHasJobsQueued">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PRINTER_HAS_JOBS_QUEUED']/*"/>	
            <unmanaged>ERROR_PRINTER_HAS_JOBS_QUEUED</unmanaged>	
            <unmanaged-short>ERROR_PRINTER_HAS_JOBS_QUEUED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SuccessRebootRequired">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SUCCESS_REBOOT_REQUIRED']/*"/>	
            <unmanaged>ERROR_SUCCESS_REBOOT_REQUIRED</unmanaged>	
            <unmanaged-short>ERROR_SUCCESS_REBOOT_REQUIRED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SuccessRestartRequired">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SUCCESS_RESTART_REQUIRED']/*"/>	
            <unmanaged>ERROR_SUCCESS_RESTART_REQUIRED</unmanaged>	
            <unmanaged-short>ERROR_SUCCESS_RESTART_REQUIRED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PrinterNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PRINTER_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_PRINTER_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_PRINTER_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PrinterDriverWarned">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PRINTER_DRIVER_WARNED']/*"/>	
            <unmanaged>ERROR_PRINTER_DRIVER_WARNED</unmanaged>	
            <unmanaged-short>ERROR_PRINTER_DRIVER_WARNED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PrinterDriverBlocked">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PRINTER_DRIVER_BLOCKED']/*"/>	
            <unmanaged>ERROR_PRINTER_DRIVER_BLOCKED</unmanaged>	
            <unmanaged-short>ERROR_PRINTER_DRIVER_BLOCKED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PrinterDriverPackageInUse">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PRINTER_DRIVER_PACKAGE_IN_USE']/*"/>	
            <unmanaged>ERROR_PRINTER_DRIVER_PACKAGE_IN_USE</unmanaged>	
            <unmanaged-short>ERROR_PRINTER_DRIVER_PACKAGE_IN_USE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CoreDriverPackageNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CORE_DRIVER_PACKAGE_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_CORE_DRIVER_PACKAGE_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_CORE_DRIVER_PACKAGE_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FailRebootRequired">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FAIL_REBOOT_REQUIRED']/*"/>	
            <unmanaged>ERROR_FAIL_REBOOT_REQUIRED</unmanaged>	
            <unmanaged-short>ERROR_FAIL_REBOOT_REQUIRED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FailRebootInitiated">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FAIL_REBOOT_INITIATED']/*"/>	
            <unmanaged>ERROR_FAIL_REBOOT_INITIATED</unmanaged>	
            <unmanaged-short>ERROR_FAIL_REBOOT_INITIATED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PrinterDriverDownloadNeeded">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PRINTER_DRIVER_DOWNLOAD_NEEDED']/*"/>	
            <unmanaged>ERROR_PRINTER_DRIVER_DOWNLOAD_NEEDED</unmanaged>	
            <unmanaged-short>ERROR_PRINTER_DRIVER_DOWNLOAD_NEEDED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PrintJobRestartRequired">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PRINT_JOB_RESTART_REQUIRED']/*"/>	
            <unmanaged>ERROR_PRINT_JOB_RESTART_REQUIRED</unmanaged>	
            <unmanaged-short>ERROR_PRINT_JOB_RESTART_REQUIRED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidPrinterDriverManifest">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_PRINTER_DRIVER_MANIFEST']/*"/>	
            <unmanaged>ERROR_INVALID_PRINTER_DRIVER_MANIFEST</unmanaged>	
            <unmanaged-short>ERROR_INVALID_PRINTER_DRIVER_MANIFEST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PrinterNotShareable">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PRINTER_NOT_SHAREABLE']/*"/>	
            <unmanaged>ERROR_PRINTER_NOT_SHAREABLE</unmanaged>	
            <unmanaged-short>ERROR_PRINTER_NOT_SHAREABLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.RequestPaused">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_REQUEST_PAUSED']/*"/>	
            <unmanaged>ERROR_REQUEST_PAUSED</unmanaged>	
            <unmanaged-short>ERROR_REQUEST_PAUSED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IoReissueAsCached">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IO_REISSUE_AS_CACHED']/*"/>	
            <unmanaged>ERROR_IO_REISSUE_AS_CACHED</unmanaged>	
            <unmanaged-short>ERROR_IO_REISSUE_AS_CACHED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.WinsInternal">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_WINS_INTERNAL']/*"/>	
            <unmanaged>ERROR_WINS_INTERNAL</unmanaged>	
            <unmanaged-short>ERROR_WINS_INTERNAL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CanNotDelLocalWins">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CAN_NOT_DEL_LOCAL_WINS']/*"/>	
            <unmanaged>ERROR_CAN_NOT_DEL_LOCAL_WINS</unmanaged>	
            <unmanaged-short>ERROR_CAN_NOT_DEL_LOCAL_WINS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.StaticInit">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_STATIC_INIT']/*"/>	
            <unmanaged>ERROR_STATIC_INIT</unmanaged>	
            <unmanaged-short>ERROR_STATIC_INIT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IncBackup">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INC_BACKUP']/*"/>	
            <unmanaged>ERROR_INC_BACKUP</unmanaged>	
            <unmanaged-short>ERROR_INC_BACKUP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FullBackup">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FULL_BACKUP']/*"/>	
            <unmanaged>ERROR_FULL_BACKUP</unmanaged>	
            <unmanaged-short>ERROR_FULL_BACKUP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.RecNonExistent">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_REC_NON_EXISTENT']/*"/>	
            <unmanaged>ERROR_REC_NON_EXISTENT</unmanaged>	
            <unmanaged-short>ERROR_REC_NON_EXISTENT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.RplNotAllowed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_RPL_NOT_ALLOWED']/*"/>	
            <unmanaged>ERROR_RPL_NOT_ALLOWED</unmanaged>	
            <unmanaged-short>ERROR_RPL_NOT_ALLOWED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DhcpAddressConflict">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DHCP_ADDRESS_CONFLICT']/*"/>	
            <unmanaged>ERROR_DHCP_ADDRESS_CONFLICT</unmanaged>	
            <unmanaged-short>ERROR_DHCP_ADDRESS_CONFLICT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.WmiGuidNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_WMI_GUID_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_WMI_GUID_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_WMI_GUID_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.WmiInstanceNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_WMI_INSTANCE_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_WMI_INSTANCE_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_WMI_INSTANCE_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.WmiItemidNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_WMI_ITEMID_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_WMI_ITEMID_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_WMI_ITEMID_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.WmiTryAgain">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_WMI_TRY_AGAIN']/*"/>	
            <unmanaged>ERROR_WMI_TRY_AGAIN</unmanaged>	
            <unmanaged-short>ERROR_WMI_TRY_AGAIN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.WmiDpNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_WMI_DP_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_WMI_DP_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_WMI_DP_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.WmiUnresolvedInstanceRef">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_WMI_UNRESOLVED_INSTANCE_REF']/*"/>	
            <unmanaged>ERROR_WMI_UNRESOLVED_INSTANCE_REF</unmanaged>	
            <unmanaged-short>ERROR_WMI_UNRESOLVED_INSTANCE_REF</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.WmiAlreadyEnabled">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_WMI_ALREADY_ENABLED']/*"/>	
            <unmanaged>ERROR_WMI_ALREADY_ENABLED</unmanaged>	
            <unmanaged-short>ERROR_WMI_ALREADY_ENABLED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.WmiGuidDisconnected">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_WMI_GUID_DISCONNECTED']/*"/>	
            <unmanaged>ERROR_WMI_GUID_DISCONNECTED</unmanaged>	
            <unmanaged-short>ERROR_WMI_GUID_DISCONNECTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.WmiServerUnavailable">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_WMI_SERVER_UNAVAILABLE']/*"/>	
            <unmanaged>ERROR_WMI_SERVER_UNAVAILABLE</unmanaged>	
            <unmanaged-short>ERROR_WMI_SERVER_UNAVAILABLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.WmiDpFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_WMI_DP_FAILED']/*"/>	
            <unmanaged>ERROR_WMI_DP_FAILED</unmanaged>	
            <unmanaged-short>ERROR_WMI_DP_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.WmiInvalidMof">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_WMI_INVALID_MOF']/*"/>	
            <unmanaged>ERROR_WMI_INVALID_MOF</unmanaged>	
            <unmanaged-short>ERROR_WMI_INVALID_MOF</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.WmiInvalidReginfo">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_WMI_INVALID_REGINFO']/*"/>	
            <unmanaged>ERROR_WMI_INVALID_REGINFO</unmanaged>	
            <unmanaged-short>ERROR_WMI_INVALID_REGINFO</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.WmiAlreadyDisabled">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_WMI_ALREADY_DISABLED']/*"/>	
            <unmanaged>ERROR_WMI_ALREADY_DISABLED</unmanaged>	
            <unmanaged-short>ERROR_WMI_ALREADY_DISABLED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.WmiReadOnly">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_WMI_READ_ONLY']/*"/>	
            <unmanaged>ERROR_WMI_READ_ONLY</unmanaged>	
            <unmanaged-short>ERROR_WMI_READ_ONLY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.WmiSetFailure">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_WMI_SET_FAILURE']/*"/>	
            <unmanaged>ERROR_WMI_SET_FAILURE</unmanaged>	
            <unmanaged-short>ERROR_WMI_SET_FAILURE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NotAppcontainer">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NOT_APPCONTAINER']/*"/>	
            <unmanaged>ERROR_NOT_APPCONTAINER</unmanaged>	
            <unmanaged-short>ERROR_NOT_APPCONTAINER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.AppcontainerRequired">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_APPCONTAINER_REQUIRED']/*"/>	
            <unmanaged>ERROR_APPCONTAINER_REQUIRED</unmanaged>	
            <unmanaged-short>ERROR_APPCONTAINER_REQUIRED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NotSupportedInAppcontainer">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NOT_SUPPORTED_IN_APPCONTAINER']/*"/>	
            <unmanaged>ERROR_NOT_SUPPORTED_IN_APPCONTAINER</unmanaged>	
            <unmanaged-short>ERROR_NOT_SUPPORTED_IN_APPCONTAINER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidPackageSidLength">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_PACKAGE_SID_LENGTH']/*"/>	
            <unmanaged>ERROR_INVALID_PACKAGE_SID_LENGTH</unmanaged>	
            <unmanaged-short>ERROR_INVALID_PACKAGE_SID_LENGTH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidMedia">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_MEDIA']/*"/>	
            <unmanaged>ERROR_INVALID_MEDIA</unmanaged>	
            <unmanaged-short>ERROR_INVALID_MEDIA</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidLibrary">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_LIBRARY']/*"/>	
            <unmanaged>ERROR_INVALID_LIBRARY</unmanaged>	
            <unmanaged-short>ERROR_INVALID_LIBRARY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidMediaPool">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_MEDIA_POOL']/*"/>	
            <unmanaged>ERROR_INVALID_MEDIA_POOL</unmanaged>	
            <unmanaged-short>ERROR_INVALID_MEDIA_POOL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DriveMediaMismatch">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DRIVE_MEDIA_MISMATCH']/*"/>	
            <unmanaged>ERROR_DRIVE_MEDIA_MISMATCH</unmanaged>	
            <unmanaged-short>ERROR_DRIVE_MEDIA_MISMATCH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MediaOffline">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MEDIA_OFFLINE']/*"/>	
            <unmanaged>ERROR_MEDIA_OFFLINE</unmanaged>	
            <unmanaged-short>ERROR_MEDIA_OFFLINE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LibraryOffline">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LIBRARY_OFFLINE']/*"/>	
            <unmanaged>ERROR_LIBRARY_OFFLINE</unmanaged>	
            <unmanaged-short>ERROR_LIBRARY_OFFLINE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.Empty">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EMPTY']/*"/>	
            <unmanaged>ERROR_EMPTY</unmanaged>	
            <unmanaged-short>ERROR_EMPTY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NotEmpty">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NOT_EMPTY']/*"/>	
            <unmanaged>ERROR_NOT_EMPTY</unmanaged>	
            <unmanaged-short>ERROR_NOT_EMPTY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MediaUnavailable">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MEDIA_UNAVAILABLE']/*"/>	
            <unmanaged>ERROR_MEDIA_UNAVAILABLE</unmanaged>	
            <unmanaged-short>ERROR_MEDIA_UNAVAILABLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ResourceDisabled">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_RESOURCE_DISABLED']/*"/>	
            <unmanaged>ERROR_RESOURCE_DISABLED</unmanaged>	
            <unmanaged-short>ERROR_RESOURCE_DISABLED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidCleaner">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_CLEANER']/*"/>	
            <unmanaged>ERROR_INVALID_CLEANER</unmanaged>	
            <unmanaged-short>ERROR_INVALID_CLEANER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.UnableToClean">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_UNABLE_TO_CLEAN']/*"/>	
            <unmanaged>ERROR_UNABLE_TO_CLEAN</unmanaged>	
            <unmanaged-short>ERROR_UNABLE_TO_CLEAN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ObjectNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_OBJECT_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_OBJECT_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_OBJECT_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DatabaseFailure">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DATABASE_FAILURE']/*"/>	
            <unmanaged>ERROR_DATABASE_FAILURE</unmanaged>	
            <unmanaged-short>ERROR_DATABASE_FAILURE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DatabaseFull">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DATABASE_FULL']/*"/>	
            <unmanaged>ERROR_DATABASE_FULL</unmanaged>	
            <unmanaged-short>ERROR_DATABASE_FULL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MediaIncompatible">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MEDIA_INCOMPATIBLE']/*"/>	
            <unmanaged>ERROR_MEDIA_INCOMPATIBLE</unmanaged>	
            <unmanaged-short>ERROR_MEDIA_INCOMPATIBLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ResourceNotPresent">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_RESOURCE_NOT_PRESENT']/*"/>	
            <unmanaged>ERROR_RESOURCE_NOT_PRESENT</unmanaged>	
            <unmanaged-short>ERROR_RESOURCE_NOT_PRESENT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidOperation">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_OPERATION']/*"/>	
            <unmanaged>ERROR_INVALID_OPERATION</unmanaged>	
            <unmanaged-short>ERROR_INVALID_OPERATION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MediaNotAvailable">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MEDIA_NOT_AVAILABLE']/*"/>	
            <unmanaged>ERROR_MEDIA_NOT_AVAILABLE</unmanaged>	
            <unmanaged-short>ERROR_MEDIA_NOT_AVAILABLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DeviceNotAvailable">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DEVICE_NOT_AVAILABLE']/*"/>	
            <unmanaged>ERROR_DEVICE_NOT_AVAILABLE</unmanaged>	
            <unmanaged-short>ERROR_DEVICE_NOT_AVAILABLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.RequestRefused">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_REQUEST_REFUSED']/*"/>	
            <unmanaged>ERROR_REQUEST_REFUSED</unmanaged>	
            <unmanaged-short>ERROR_REQUEST_REFUSED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidDriveObject">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_DRIVE_OBJECT']/*"/>	
            <unmanaged>ERROR_INVALID_DRIVE_OBJECT</unmanaged>	
            <unmanaged-short>ERROR_INVALID_DRIVE_OBJECT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LibraryFull">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LIBRARY_FULL']/*"/>	
            <unmanaged>ERROR_LIBRARY_FULL</unmanaged>	
            <unmanaged-short>ERROR_LIBRARY_FULL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MediumNotAccessible">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MEDIUM_NOT_ACCESSIBLE']/*"/>	
            <unmanaged>ERROR_MEDIUM_NOT_ACCESSIBLE</unmanaged>	
            <unmanaged-short>ERROR_MEDIUM_NOT_ACCESSIBLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.UnableToLoadMedium">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_UNABLE_TO_LOAD_MEDIUM']/*"/>	
            <unmanaged>ERROR_UNABLE_TO_LOAD_MEDIUM</unmanaged>	
            <unmanaged-short>ERROR_UNABLE_TO_LOAD_MEDIUM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.UnableToInventoryDrive">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_UNABLE_TO_INVENTORY_DRIVE']/*"/>	
            <unmanaged>ERROR_UNABLE_TO_INVENTORY_DRIVE</unmanaged>	
            <unmanaged-short>ERROR_UNABLE_TO_INVENTORY_DRIVE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.UnableToInventorySlot">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_UNABLE_TO_INVENTORY_SLOT']/*"/>	
            <unmanaged>ERROR_UNABLE_TO_INVENTORY_SLOT</unmanaged>	
            <unmanaged-short>ERROR_UNABLE_TO_INVENTORY_SLOT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.UnableToInventoryTransport">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_UNABLE_TO_INVENTORY_TRANSPORT']/*"/>	
            <unmanaged>ERROR_UNABLE_TO_INVENTORY_TRANSPORT</unmanaged>	
            <unmanaged-short>ERROR_UNABLE_TO_INVENTORY_TRANSPORT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TransportFull">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TRANSPORT_FULL']/*"/>	
            <unmanaged>ERROR_TRANSPORT_FULL</unmanaged>	
            <unmanaged-short>ERROR_TRANSPORT_FULL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ControllingIeport">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CONTROLLING_IEPORT']/*"/>	
            <unmanaged>ERROR_CONTROLLING_IEPORT</unmanaged>	
            <unmanaged-short>ERROR_CONTROLLING_IEPORT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.UnableToEjectMountedMedia">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_UNABLE_TO_EJECT_MOUNTED_MEDIA']/*"/>	
            <unmanaged>ERROR_UNABLE_TO_EJECT_MOUNTED_MEDIA</unmanaged>	
            <unmanaged-short>ERROR_UNABLE_TO_EJECT_MOUNTED_MEDIA</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CleanerSlotSet">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLEANER_SLOT_SET']/*"/>	
            <unmanaged>ERROR_CLEANER_SLOT_SET</unmanaged>	
            <unmanaged-short>ERROR_CLEANER_SLOT_SET</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CleanerSlotNotSet">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLEANER_SLOT_NOT_SET']/*"/>	
            <unmanaged>ERROR_CLEANER_SLOT_NOT_SET</unmanaged>	
            <unmanaged-short>ERROR_CLEANER_SLOT_NOT_SET</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CleanerCartridgeSpent">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLEANER_CARTRIDGE_SPENT']/*"/>	
            <unmanaged>ERROR_CLEANER_CARTRIDGE_SPENT</unmanaged>	
            <unmanaged-short>ERROR_CLEANER_CARTRIDGE_SPENT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.UnexpectedOmid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_UNEXPECTED_OMID']/*"/>	
            <unmanaged>ERROR_UNEXPECTED_OMID</unmanaged>	
            <unmanaged-short>ERROR_UNEXPECTED_OMID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CantDeleteLastItem">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CANT_DELETE_LAST_ITEM']/*"/>	
            <unmanaged>ERROR_CANT_DELETE_LAST_ITEM</unmanaged>	
            <unmanaged-short>ERROR_CANT_DELETE_LAST_ITEM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MessageExceedsMaximumSize">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MESSAGE_EXCEEDS_MAX_SIZE']/*"/>	
            <unmanaged>ERROR_MESSAGE_EXCEEDS_MAX_SIZE</unmanaged>	
            <unmanaged-short>ERROR_MESSAGE_EXCEEDS_MAX_SIZE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolumeContainsSysFiles">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLUME_CONTAINS_SYS_FILES']/*"/>	
            <unmanaged>ERROR_VOLUME_CONTAINS_SYS_FILES</unmanaged>	
            <unmanaged-short>ERROR_VOLUME_CONTAINS_SYS_FILES</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IndigenousType">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INDIGENOUS_TYPE']/*"/>	
            <unmanaged>ERROR_INDIGENOUS_TYPE</unmanaged>	
            <unmanaged-short>ERROR_INDIGENOUS_TYPE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoSupportingDrives">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_SUPPORTING_DRIVES']/*"/>	
            <unmanaged>ERROR_NO_SUPPORTING_DRIVES</unmanaged>	
            <unmanaged-short>ERROR_NO_SUPPORTING_DRIVES</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CleanerCartridgeInstalled">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLEANER_CARTRIDGE_INSTALLED']/*"/>	
            <unmanaged>ERROR_CLEANER_CARTRIDGE_INSTALLED</unmanaged>	
            <unmanaged-short>ERROR_CLEANER_CARTRIDGE_INSTALLED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IeportFull">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IEPORT_FULL']/*"/>	
            <unmanaged>ERROR_IEPORT_FULL</unmanaged>	
            <unmanaged-short>ERROR_IEPORT_FULL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FileOffline">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FILE_OFFLINE']/*"/>	
            <unmanaged>ERROR_FILE_OFFLINE</unmanaged>	
            <unmanaged-short>ERROR_FILE_OFFLINE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.RemoteStorageNotActive">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_REMOTE_STORAGE_NOT_ACTIVE']/*"/>	
            <unmanaged>ERROR_REMOTE_STORAGE_NOT_ACTIVE</unmanaged>	
            <unmanaged-short>ERROR_REMOTE_STORAGE_NOT_ACTIVE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.RemoteStorageMediaError">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_REMOTE_STORAGE_MEDIA_ERROR']/*"/>	
            <unmanaged>ERROR_REMOTE_STORAGE_MEDIA_ERROR</unmanaged>	
            <unmanaged-short>ERROR_REMOTE_STORAGE_MEDIA_ERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NotAReparsePoint">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NOT_A_REPARSE_POINT']/*"/>	
            <unmanaged>ERROR_NOT_A_REPARSE_POINT</unmanaged>	
            <unmanaged-short>ERROR_NOT_A_REPARSE_POINT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ReparseAttributeConflict">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_REPARSE_ATTRIBUTE_CONFLICT']/*"/>	
            <unmanaged>ERROR_REPARSE_ATTRIBUTE_CONFLICT</unmanaged>	
            <unmanaged-short>ERROR_REPARSE_ATTRIBUTE_CONFLICT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidReparseData">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_REPARSE_DATA']/*"/>	
            <unmanaged>ERROR_INVALID_REPARSE_DATA</unmanaged>	
            <unmanaged-short>ERROR_INVALID_REPARSE_DATA</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ReparseTagInvalid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_REPARSE_TAG_INVALID']/*"/>	
            <unmanaged>ERROR_REPARSE_TAG_INVALID</unmanaged>	
            <unmanaged-short>ERROR_REPARSE_TAG_INVALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ReparseTagMismatch">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_REPARSE_TAG_MISMATCH']/*"/>	
            <unmanaged>ERROR_REPARSE_TAG_MISMATCH</unmanaged>	
            <unmanaged-short>ERROR_REPARSE_TAG_MISMATCH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.AppDataNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_APP_DATA_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_APP_DATA_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_APP_DATA_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.AppDataExpired">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_APP_DATA_EXPIRED']/*"/>	
            <unmanaged>ERROR_APP_DATA_EXPIRED</unmanaged>	
            <unmanaged-short>ERROR_APP_DATA_EXPIRED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.AppDataCorrupt">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_APP_DATA_CORRUPT']/*"/>	
            <unmanaged>ERROR_APP_DATA_CORRUPT</unmanaged>	
            <unmanaged-short>ERROR_APP_DATA_CORRUPT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.AppDataLimitExceeded">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_APP_DATA_LIMIT_EXCEEDED']/*"/>	
            <unmanaged>ERROR_APP_DATA_LIMIT_EXCEEDED</unmanaged>	
            <unmanaged-short>ERROR_APP_DATA_LIMIT_EXCEEDED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.AppDataRebootRequired">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_APP_DATA_REBOOT_REQUIRED']/*"/>	
            <unmanaged>ERROR_APP_DATA_REBOOT_REQUIRED</unmanaged>	
            <unmanaged-short>ERROR_APP_DATA_REBOOT_REQUIRED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SecurebootRollbackDetected">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SECUREBOOT_ROLLBACK_DETECTED']/*"/>	
            <unmanaged>ERROR_SECUREBOOT_ROLLBACK_DETECTED</unmanaged>	
            <unmanaged-short>ERROR_SECUREBOOT_ROLLBACK_DETECTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SecurebootPolicyViolation">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SECUREBOOT_POLICY_VIOLATION']/*"/>	
            <unmanaged>ERROR_SECUREBOOT_POLICY_VIOLATION</unmanaged>	
            <unmanaged-short>ERROR_SECUREBOOT_POLICY_VIOLATION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SecurebootInvalidPolicy">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SECUREBOOT_INVALID_POLICY']/*"/>	
            <unmanaged>ERROR_SECUREBOOT_INVALID_POLICY</unmanaged>	
            <unmanaged-short>ERROR_SECUREBOOT_INVALID_POLICY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SecurebootPolicyPublisherNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SECUREBOOT_POLICY_PUBLISHER_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_SECUREBOOT_POLICY_PUBLISHER_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_SECUREBOOT_POLICY_PUBLISHER_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SecurebootPolicyNotSigned">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SECUREBOOT_POLICY_NOT_SIGNED']/*"/>	
            <unmanaged>ERROR_SECUREBOOT_POLICY_NOT_SIGNED</unmanaged>	
            <unmanaged-short>ERROR_SECUREBOOT_POLICY_NOT_SIGNED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SecurebootNotEnabled">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SECUREBOOT_NOT_ENABLED']/*"/>	
            <unmanaged>ERROR_SECUREBOOT_NOT_ENABLED</unmanaged>	
            <unmanaged-short>ERROR_SECUREBOOT_NOT_ENABLED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SecurebootFileReplaced">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SECUREBOOT_FILE_REPLACED']/*"/>	
            <unmanaged>ERROR_SECUREBOOT_FILE_REPLACED</unmanaged>	
            <unmanaged-short>ERROR_SECUREBOOT_FILE_REPLACED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.OffloadReadFltNotSupported">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_OFFLOAD_READ_FLT_NOT_SUPPORTED']/*"/>	
            <unmanaged>ERROR_OFFLOAD_READ_FLT_NOT_SUPPORTED</unmanaged>	
            <unmanaged-short>ERROR_OFFLOAD_READ_FLT_NOT_SUPPORTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.OffloadWriteFltNotSupported">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_OFFLOAD_WRITE_FLT_NOT_SUPPORTED']/*"/>	
            <unmanaged>ERROR_OFFLOAD_WRITE_FLT_NOT_SUPPORTED</unmanaged>	
            <unmanaged-short>ERROR_OFFLOAD_WRITE_FLT_NOT_SUPPORTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.OffloadReadFileNotSupported">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_OFFLOAD_READ_FILE_NOT_SUPPORTED']/*"/>	
            <unmanaged>ERROR_OFFLOAD_READ_FILE_NOT_SUPPORTED</unmanaged>	
            <unmanaged-short>ERROR_OFFLOAD_READ_FILE_NOT_SUPPORTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.OffloadWriteFileNotSupported">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_OFFLOAD_WRITE_FILE_NOT_SUPPORTED']/*"/>	
            <unmanaged>ERROR_OFFLOAD_WRITE_FILE_NOT_SUPPORTED</unmanaged>	
            <unmanaged-short>ERROR_OFFLOAD_WRITE_FILE_NOT_SUPPORTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolumeNotSisEnabled">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLUME_NOT_SIS_ENABLED']/*"/>	
            <unmanaged>ERROR_VOLUME_NOT_SIS_ENABLED</unmanaged>	
            <unmanaged-short>ERROR_VOLUME_NOT_SIS_ENABLED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DependentResourceExists">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DEPENDENT_RESOURCE_EXISTS']/*"/>	
            <unmanaged>ERROR_DEPENDENT_RESOURCE_EXISTS</unmanaged>	
            <unmanaged-short>ERROR_DEPENDENT_RESOURCE_EXISTS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DependencyNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DEPENDENCY_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_DEPENDENCY_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_DEPENDENCY_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DependencyAlreadyExists">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DEPENDENCY_ALREADY_EXISTS']/*"/>	
            <unmanaged>ERROR_DEPENDENCY_ALREADY_EXISTS</unmanaged>	
            <unmanaged-short>ERROR_DEPENDENCY_ALREADY_EXISTS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ResourceNotOnline">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_RESOURCE_NOT_ONLINE']/*"/>	
            <unmanaged>ERROR_RESOURCE_NOT_ONLINE</unmanaged>	
            <unmanaged-short>ERROR_RESOURCE_NOT_ONLINE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.HostNodeNotAvailable">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_HOST_NODE_NOT_AVAILABLE']/*"/>	
            <unmanaged>ERROR_HOST_NODE_NOT_AVAILABLE</unmanaged>	
            <unmanaged-short>ERROR_HOST_NODE_NOT_AVAILABLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ResourceNotAvailable">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_RESOURCE_NOT_AVAILABLE']/*"/>	
            <unmanaged>ERROR_RESOURCE_NOT_AVAILABLE</unmanaged>	
            <unmanaged-short>ERROR_RESOURCE_NOT_AVAILABLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ResourceNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_RESOURCE_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_RESOURCE_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_RESOURCE_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ShutdownCluster">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SHUTDOWN_CLUSTER']/*"/>	
            <unmanaged>ERROR_SHUTDOWN_CLUSTER</unmanaged>	
            <unmanaged-short>ERROR_SHUTDOWN_CLUSTER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CantEvictActiveNode">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CANT_EVICT_ACTIVE_NODE']/*"/>	
            <unmanaged>ERROR_CANT_EVICT_ACTIVE_NODE</unmanaged>	
            <unmanaged-short>ERROR_CANT_EVICT_ACTIVE_NODE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ObjectAlreadyExists">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_OBJECT_ALREADY_EXISTS']/*"/>	
            <unmanaged>ERROR_OBJECT_ALREADY_EXISTS</unmanaged>	
            <unmanaged-short>ERROR_OBJECT_ALREADY_EXISTS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ObjectInList">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_OBJECT_IN_LIST']/*"/>	
            <unmanaged>ERROR_OBJECT_IN_LIST</unmanaged>	
            <unmanaged-short>ERROR_OBJECT_IN_LIST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GroupNotAvailable">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GROUP_NOT_AVAILABLE']/*"/>	
            <unmanaged>ERROR_GROUP_NOT_AVAILABLE</unmanaged>	
            <unmanaged-short>ERROR_GROUP_NOT_AVAILABLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GroupNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GROUP_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_GROUP_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_GROUP_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GroupNotOnline">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GROUP_NOT_ONLINE']/*"/>	
            <unmanaged>ERROR_GROUP_NOT_ONLINE</unmanaged>	
            <unmanaged-short>ERROR_GROUP_NOT_ONLINE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.HostNodeNotResourceOwner">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_HOST_NODE_NOT_RESOURCE_OWNER']/*"/>	
            <unmanaged>ERROR_HOST_NODE_NOT_RESOURCE_OWNER</unmanaged>	
            <unmanaged-short>ERROR_HOST_NODE_NOT_RESOURCE_OWNER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.HostNodeNotGroupOwner">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_HOST_NODE_NOT_GROUP_OWNER']/*"/>	
            <unmanaged>ERROR_HOST_NODE_NOT_GROUP_OWNER</unmanaged>	
            <unmanaged-short>ERROR_HOST_NODE_NOT_GROUP_OWNER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ResmonCreateFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_RESMON_CREATE_FAILED']/*"/>	
            <unmanaged>ERROR_RESMON_CREATE_FAILED</unmanaged>	
            <unmanaged-short>ERROR_RESMON_CREATE_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ResmonOnlineFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_RESMON_ONLINE_FAILED']/*"/>	
            <unmanaged>ERROR_RESMON_ONLINE_FAILED</unmanaged>	
            <unmanaged-short>ERROR_RESMON_ONLINE_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ResourceOnline">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_RESOURCE_ONLINE']/*"/>	
            <unmanaged>ERROR_RESOURCE_ONLINE</unmanaged>	
            <unmanaged-short>ERROR_RESOURCE_ONLINE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.QuorumResource">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_QUORUM_RESOURCE']/*"/>	
            <unmanaged>ERROR_QUORUM_RESOURCE</unmanaged>	
            <unmanaged-short>ERROR_QUORUM_RESOURCE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NotQuorumCapable">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NOT_QUORUM_CAPABLE']/*"/>	
            <unmanaged>ERROR_NOT_QUORUM_CAPABLE</unmanaged>	
            <unmanaged-short>ERROR_NOT_QUORUM_CAPABLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterShuttingDown">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_SHUTTING_DOWN']/*"/>	
            <unmanaged>ERROR_CLUSTER_SHUTTING_DOWN</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_SHUTTING_DOWN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidState">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_STATE']/*"/>	
            <unmanaged>ERROR_INVALID_STATE</unmanaged>	
            <unmanaged-short>ERROR_INVALID_STATE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ResourcePropertiesStored">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_RESOURCE_PROPERTIES_STORED']/*"/>	
            <unmanaged>ERROR_RESOURCE_PROPERTIES_STORED</unmanaged>	
            <unmanaged-short>ERROR_RESOURCE_PROPERTIES_STORED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NotQuorumClass">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NOT_QUORUM_CLASS']/*"/>	
            <unmanaged>ERROR_NOT_QUORUM_CLASS</unmanaged>	
            <unmanaged-short>ERROR_NOT_QUORUM_CLASS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CoreResource">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CORE_RESOURCE']/*"/>	
            <unmanaged>ERROR_CORE_RESOURCE</unmanaged>	
            <unmanaged-short>ERROR_CORE_RESOURCE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.QuorumResourceOnlineFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_QUORUM_RESOURCE_ONLINE_FAILED']/*"/>	
            <unmanaged>ERROR_QUORUM_RESOURCE_ONLINE_FAILED</unmanaged>	
            <unmanaged-short>ERROR_QUORUM_RESOURCE_ONLINE_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.QuorumlogOpenFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_QUORUMLOG_OPEN_FAILED']/*"/>	
            <unmanaged>ERROR_QUORUMLOG_OPEN_FAILED</unmanaged>	
            <unmanaged-short>ERROR_QUORUMLOG_OPEN_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterlogCorrupt">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTERLOG_CORRUPT']/*"/>	
            <unmanaged>ERROR_CLUSTERLOG_CORRUPT</unmanaged>	
            <unmanaged-short>ERROR_CLUSTERLOG_CORRUPT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterlogRecordExceedsMaxsize">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTERLOG_RECORD_EXCEEDS_MAXSIZE']/*"/>	
            <unmanaged>ERROR_CLUSTERLOG_RECORD_EXCEEDS_MAXSIZE</unmanaged>	
            <unmanaged-short>ERROR_CLUSTERLOG_RECORD_EXCEEDS_MAXSIZE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterlogExceedsMaxsize">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTERLOG_EXCEEDS_MAXSIZE']/*"/>	
            <unmanaged>ERROR_CLUSTERLOG_EXCEEDS_MAXSIZE</unmanaged>	
            <unmanaged-short>ERROR_CLUSTERLOG_EXCEEDS_MAXSIZE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterlogChkpointNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTERLOG_CHKPOINT_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_CLUSTERLOG_CHKPOINT_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_CLUSTERLOG_CHKPOINT_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterlogNotEnoughSpace">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTERLOG_NOT_ENOUGH_SPACE']/*"/>	
            <unmanaged>ERROR_CLUSTERLOG_NOT_ENOUGH_SPACE</unmanaged>	
            <unmanaged-short>ERROR_CLUSTERLOG_NOT_ENOUGH_SPACE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.QuorumOwnerAlive">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_QUORUM_OWNER_ALIVE']/*"/>	
            <unmanaged>ERROR_QUORUM_OWNER_ALIVE</unmanaged>	
            <unmanaged-short>ERROR_QUORUM_OWNER_ALIVE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NetworkNotAvailable">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NETWORK_NOT_AVAILABLE']/*"/>	
            <unmanaged>ERROR_NETWORK_NOT_AVAILABLE</unmanaged>	
            <unmanaged-short>ERROR_NETWORK_NOT_AVAILABLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NodeNotAvailable">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NODE_NOT_AVAILABLE']/*"/>	
            <unmanaged>ERROR_NODE_NOT_AVAILABLE</unmanaged>	
            <unmanaged-short>ERROR_NODE_NOT_AVAILABLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.AllNodesNotAvailable">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_ALL_NODES_NOT_AVAILABLE']/*"/>	
            <unmanaged>ERROR_ALL_NODES_NOT_AVAILABLE</unmanaged>	
            <unmanaged-short>ERROR_ALL_NODES_NOT_AVAILABLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ResourceFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_RESOURCE_FAILED']/*"/>	
            <unmanaged>ERROR_RESOURCE_FAILED</unmanaged>	
            <unmanaged-short>ERROR_RESOURCE_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterInvalidNode">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_INVALID_NODE']/*"/>	
            <unmanaged>ERROR_CLUSTER_INVALID_NODE</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_INVALID_NODE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterNodeExists">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_NODE_EXISTS']/*"/>	
            <unmanaged>ERROR_CLUSTER_NODE_EXISTS</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_NODE_EXISTS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterJoinInProgress">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_JOIN_IN_PROGRESS']/*"/>	
            <unmanaged>ERROR_CLUSTER_JOIN_IN_PROGRESS</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_JOIN_IN_PROGRESS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterNodeNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_NODE_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_CLUSTER_NODE_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_NODE_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterLocalNodeNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_LOCAL_NODE_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_CLUSTER_LOCAL_NODE_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_LOCAL_NODE_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterNetworkExists">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_NETWORK_EXISTS']/*"/>	
            <unmanaged>ERROR_CLUSTER_NETWORK_EXISTS</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_NETWORK_EXISTS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterNetworkNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_NETWORK_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_CLUSTER_NETWORK_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_NETWORK_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterNetinterfaceExists">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_NETINTERFACE_EXISTS']/*"/>	
            <unmanaged>ERROR_CLUSTER_NETINTERFACE_EXISTS</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_NETINTERFACE_EXISTS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterNetinterfaceNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_NETINTERFACE_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_CLUSTER_NETINTERFACE_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_NETINTERFACE_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterInvalidRequest">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_INVALID_REQUEST']/*"/>	
            <unmanaged>ERROR_CLUSTER_INVALID_REQUEST</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_INVALID_REQUEST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterInvalidNetworkProvider">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_INVALID_NETWORK_PROVIDER']/*"/>	
            <unmanaged>ERROR_CLUSTER_INVALID_NETWORK_PROVIDER</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_INVALID_NETWORK_PROVIDER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterNodeDown">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_NODE_DOWN']/*"/>	
            <unmanaged>ERROR_CLUSTER_NODE_DOWN</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_NODE_DOWN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterNodeUnreachable">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_NODE_UNREACHABLE']/*"/>	
            <unmanaged>ERROR_CLUSTER_NODE_UNREACHABLE</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_NODE_UNREACHABLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterNodeNotMember">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_NODE_NOT_MEMBER']/*"/>	
            <unmanaged>ERROR_CLUSTER_NODE_NOT_MEMBER</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_NODE_NOT_MEMBER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterJoinNotInProgress">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_JOIN_NOT_IN_PROGRESS']/*"/>	
            <unmanaged>ERROR_CLUSTER_JOIN_NOT_IN_PROGRESS</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_JOIN_NOT_IN_PROGRESS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterInvalidNetwork">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_INVALID_NETWORK']/*"/>	
            <unmanaged>ERROR_CLUSTER_INVALID_NETWORK</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_INVALID_NETWORK</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterNodeUp">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_NODE_UP']/*"/>	
            <unmanaged>ERROR_CLUSTER_NODE_UP</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_NODE_UP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterIpaddrInUse">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_IPADDR_IN_USE']/*"/>	
            <unmanaged>ERROR_CLUSTER_IPADDR_IN_USE</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_IPADDR_IN_USE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterNodeNotPaused">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_NODE_NOT_PAUSED']/*"/>	
            <unmanaged>ERROR_CLUSTER_NODE_NOT_PAUSED</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_NODE_NOT_PAUSED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterNoSecurityContext">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_NO_SECURITY_CONTEXT']/*"/>	
            <unmanaged>ERROR_CLUSTER_NO_SECURITY_CONTEXT</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_NO_SECURITY_CONTEXT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterNetworkNotInternal">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_NETWORK_NOT_INTERNAL']/*"/>	
            <unmanaged>ERROR_CLUSTER_NETWORK_NOT_INTERNAL</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_NETWORK_NOT_INTERNAL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterNodeAlreadyUp">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_NODE_ALREADY_UP']/*"/>	
            <unmanaged>ERROR_CLUSTER_NODE_ALREADY_UP</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_NODE_ALREADY_UP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterNodeAlreadyDown">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_NODE_ALREADY_DOWN']/*"/>	
            <unmanaged>ERROR_CLUSTER_NODE_ALREADY_DOWN</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_NODE_ALREADY_DOWN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterNetworkAlreadyOnline">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_NETWORK_ALREADY_ONLINE']/*"/>	
            <unmanaged>ERROR_CLUSTER_NETWORK_ALREADY_ONLINE</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_NETWORK_ALREADY_ONLINE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterNetworkAlreadyOffline">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_NETWORK_ALREADY_OFFLINE']/*"/>	
            <unmanaged>ERROR_CLUSTER_NETWORK_ALREADY_OFFLINE</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_NETWORK_ALREADY_OFFLINE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterNodeAlreadyMember">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_NODE_ALREADY_MEMBER']/*"/>	
            <unmanaged>ERROR_CLUSTER_NODE_ALREADY_MEMBER</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_NODE_ALREADY_MEMBER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterLastInternalNetwork">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_LAST_INTERNAL_NETWORK']/*"/>	
            <unmanaged>ERROR_CLUSTER_LAST_INTERNAL_NETWORK</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_LAST_INTERNAL_NETWORK</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterNetworkHasDependents">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_NETWORK_HAS_DEPENDENTS']/*"/>	
            <unmanaged>ERROR_CLUSTER_NETWORK_HAS_DEPENDENTS</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_NETWORK_HAS_DEPENDENTS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidOperationOnQuorum">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_OPERATION_ON_QUORUM']/*"/>	
            <unmanaged>ERROR_INVALID_OPERATION_ON_QUORUM</unmanaged>	
            <unmanaged-short>ERROR_INVALID_OPERATION_ON_QUORUM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DependencyNotAllowed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DEPENDENCY_NOT_ALLOWED']/*"/>	
            <unmanaged>ERROR_DEPENDENCY_NOT_ALLOWED</unmanaged>	
            <unmanaged-short>ERROR_DEPENDENCY_NOT_ALLOWED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterNodePaused">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_NODE_PAUSED']/*"/>	
            <unmanaged>ERROR_CLUSTER_NODE_PAUSED</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_NODE_PAUSED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NodeCantHostResource">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NODE_CANT_HOST_RESOURCE']/*"/>	
            <unmanaged>ERROR_NODE_CANT_HOST_RESOURCE</unmanaged>	
            <unmanaged-short>ERROR_NODE_CANT_HOST_RESOURCE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterNodeNotReady">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_NODE_NOT_READY']/*"/>	
            <unmanaged>ERROR_CLUSTER_NODE_NOT_READY</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_NODE_NOT_READY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterNodeShuttingDown">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_NODE_SHUTTING_DOWN']/*"/>	
            <unmanaged>ERROR_CLUSTER_NODE_SHUTTING_DOWN</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_NODE_SHUTTING_DOWN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterJoinAborted">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_JOIN_ABORTED']/*"/>	
            <unmanaged>ERROR_CLUSTER_JOIN_ABORTED</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_JOIN_ABORTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterIncompatibleVersions">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_INCOMPATIBLE_VERSIONS']/*"/>	
            <unmanaged>ERROR_CLUSTER_INCOMPATIBLE_VERSIONS</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_INCOMPATIBLE_VERSIONS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterMaxnumOfResourcesExceeded">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_MAXNUM_OF_RESOURCES_EXCEEDED']/*"/>	
            <unmanaged>ERROR_CLUSTER_MAXNUM_OF_RESOURCES_EXCEEDED</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_MAXNUM_OF_RESOURCES_EXCEEDED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterSystemConfigChanged">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_SYSTEM_CONFIG_CHANGED']/*"/>	
            <unmanaged>ERROR_CLUSTER_SYSTEM_CONFIG_CHANGED</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_SYSTEM_CONFIG_CHANGED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterResourceTypeNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_RESOURCE_TYPE_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_CLUSTER_RESOURCE_TYPE_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_RESOURCE_TYPE_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterRestypeNotSupported">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_RESTYPE_NOT_SUPPORTED']/*"/>	
            <unmanaged>ERROR_CLUSTER_RESTYPE_NOT_SUPPORTED</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_RESTYPE_NOT_SUPPORTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterResnameNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_RESNAME_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_CLUSTER_RESNAME_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_RESNAME_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterNoRpcPackagesRegistered">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_NO_RPC_PACKAGES_REGISTERED']/*"/>	
            <unmanaged>ERROR_CLUSTER_NO_RPC_PACKAGES_REGISTERED</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_NO_RPC_PACKAGES_REGISTERED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterOwnerNotInPreflist">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_OWNER_NOT_IN_PREFLIST']/*"/>	
            <unmanaged>ERROR_CLUSTER_OWNER_NOT_IN_PREFLIST</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_OWNER_NOT_IN_PREFLIST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterDatabaseSeqmismatch">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_DATABASE_SEQMISMATCH']/*"/>	
            <unmanaged>ERROR_CLUSTER_DATABASE_SEQMISMATCH</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_DATABASE_SEQMISMATCH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ResmonInvalidState">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_RESMON_INVALID_STATE']/*"/>	
            <unmanaged>ERROR_RESMON_INVALID_STATE</unmanaged>	
            <unmanaged-short>ERROR_RESMON_INVALID_STATE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterGumNotLocker">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_GUM_NOT_LOCKER']/*"/>	
            <unmanaged>ERROR_CLUSTER_GUM_NOT_LOCKER</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_GUM_NOT_LOCKER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.QuorumDiskNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_QUORUM_DISK_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_QUORUM_DISK_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_QUORUM_DISK_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DatabaseBackupCorrupt">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DATABASE_BACKUP_CORRUPT']/*"/>	
            <unmanaged>ERROR_DATABASE_BACKUP_CORRUPT</unmanaged>	
            <unmanaged-short>ERROR_DATABASE_BACKUP_CORRUPT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterNodeAlreadyHasDfsRoot">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_NODE_ALREADY_HAS_DFS_ROOT']/*"/>	
            <unmanaged>ERROR_CLUSTER_NODE_ALREADY_HAS_DFS_ROOT</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_NODE_ALREADY_HAS_DFS_ROOT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ResourcePropertyUnchangeable">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_RESOURCE_PROPERTY_UNCHANGEABLE']/*"/>	
            <unmanaged>ERROR_RESOURCE_PROPERTY_UNCHANGEABLE</unmanaged>	
            <unmanaged-short>ERROR_RESOURCE_PROPERTY_UNCHANGEABLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterMembershipInvalidState">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_MEMBERSHIP_INVALID_STATE']/*"/>	
            <unmanaged>ERROR_CLUSTER_MEMBERSHIP_INVALID_STATE</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_MEMBERSHIP_INVALID_STATE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterQuorumlogNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_QUORUMLOG_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_CLUSTER_QUORUMLOG_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_QUORUMLOG_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterMembershipHalt">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_MEMBERSHIP_HALT']/*"/>	
            <unmanaged>ERROR_CLUSTER_MEMBERSHIP_HALT</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_MEMBERSHIP_HALT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterInstanceIdMismatch">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_INSTANCE_ID_MISMATCH']/*"/>	
            <unmanaged>ERROR_CLUSTER_INSTANCE_ID_MISMATCH</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_INSTANCE_ID_MISMATCH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterNetworkNotFoundForIp">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_NETWORK_NOT_FOUND_FOR_IP']/*"/>	
            <unmanaged>ERROR_CLUSTER_NETWORK_NOT_FOUND_FOR_IP</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_NETWORK_NOT_FOUND_FOR_IP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterPropertyDataTypeMismatch">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_PROPERTY_DATA_TYPE_MISMATCH']/*"/>	
            <unmanaged>ERROR_CLUSTER_PROPERTY_DATA_TYPE_MISMATCH</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_PROPERTY_DATA_TYPE_MISMATCH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterEvictWithoutCleanup">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_EVICT_WITHOUT_CLEANUP']/*"/>	
            <unmanaged>ERROR_CLUSTER_EVICT_WITHOUT_CLEANUP</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_EVICT_WITHOUT_CLEANUP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterParameterMismatch">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_PARAMETER_MISMATCH']/*"/>	
            <unmanaged>ERROR_CLUSTER_PARAMETER_MISMATCH</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_PARAMETER_MISMATCH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NodeCannotBeClustered">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NODE_CANNOT_BE_CLUSTERED']/*"/>	
            <unmanaged>ERROR_NODE_CANNOT_BE_CLUSTERED</unmanaged>	
            <unmanaged-short>ERROR_NODE_CANNOT_BE_CLUSTERED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterWrongOsVersion">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_WRONG_OS_VERSION']/*"/>	
            <unmanaged>ERROR_CLUSTER_WRONG_OS_VERSION</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_WRONG_OS_VERSION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterCantCreateDupClusterName">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_CANT_CREATE_DUP_CLUSTER_NAME']/*"/>	
            <unmanaged>ERROR_CLUSTER_CANT_CREATE_DUP_CLUSTER_NAME</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_CANT_CREATE_DUP_CLUSTER_NAME</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CluscfgAlreadyCommitted">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSCFG_ALREADY_COMMITTED']/*"/>	
            <unmanaged>ERROR_CLUSCFG_ALREADY_COMMITTED</unmanaged>	
            <unmanaged-short>ERROR_CLUSCFG_ALREADY_COMMITTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CluscfgRollbackFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSCFG_ROLLBACK_FAILED']/*"/>	
            <unmanaged>ERROR_CLUSCFG_ROLLBACK_FAILED</unmanaged>	
            <unmanaged-short>ERROR_CLUSCFG_ROLLBACK_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CluscfgSystemDiskDriveLetterConflict">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSCFG_SYSTEM_DISK_DRIVE_LETTER_CONFLICT']/*"/>	
            <unmanaged>ERROR_CLUSCFG_SYSTEM_DISK_DRIVE_LETTER_CONFLICT</unmanaged>	
            <unmanaged-short>ERROR_CLUSCFG_SYSTEM_DISK_DRIVE_LETTER_CONFLICT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterOldVersion">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_OLD_VERSION']/*"/>	
            <unmanaged>ERROR_CLUSTER_OLD_VERSION</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_OLD_VERSION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterMismatchedComputerAcctName">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_MISMATCHED_COMPUTER_ACCT_NAME']/*"/>	
            <unmanaged>ERROR_CLUSTER_MISMATCHED_COMPUTER_ACCT_NAME</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_MISMATCHED_COMPUTER_ACCT_NAME</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterNoNetAdapters">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_NO_NET_ADAPTERS']/*"/>	
            <unmanaged>ERROR_CLUSTER_NO_NET_ADAPTERS</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_NO_NET_ADAPTERS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterPoisoned">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_POISONED']/*"/>	
            <unmanaged>ERROR_CLUSTER_POISONED</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_POISONED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterGroupMoving">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_GROUP_MOVING']/*"/>	
            <unmanaged>ERROR_CLUSTER_GROUP_MOVING</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_GROUP_MOVING</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterResourceTypeBusy">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_RESOURCE_TYPE_BUSY']/*"/>	
            <unmanaged>ERROR_CLUSTER_RESOURCE_TYPE_BUSY</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_RESOURCE_TYPE_BUSY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ResourceCallTimedOut">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_RESOURCE_CALL_TIMED_OUT']/*"/>	
            <unmanaged>ERROR_RESOURCE_CALL_TIMED_OUT</unmanaged>	
            <unmanaged-short>ERROR_RESOURCE_CALL_TIMED_OUT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidClusterIpv6Address">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_CLUSTER_IPV6_ADDRESS']/*"/>	
            <unmanaged>ERROR_INVALID_CLUSTER_IPV6_ADDRESS</unmanaged>	
            <unmanaged-short>ERROR_INVALID_CLUSTER_IPV6_ADDRESS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterInternalInvalidFunction">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_INTERNAL_INVALID_FUNCTION']/*"/>	
            <unmanaged>ERROR_CLUSTER_INTERNAL_INVALID_FUNCTION</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_INTERNAL_INVALID_FUNCTION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterParameterOutOfBounds">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_PARAMETER_OUT_OF_BOUNDS']/*"/>	
            <unmanaged>ERROR_CLUSTER_PARAMETER_OUT_OF_BOUNDS</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_PARAMETER_OUT_OF_BOUNDS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterPartialSend">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_PARTIAL_SEND']/*"/>	
            <unmanaged>ERROR_CLUSTER_PARTIAL_SEND</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_PARTIAL_SEND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterRegistryInvalidFunction">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_REGISTRY_INVALID_FUNCTION']/*"/>	
            <unmanaged>ERROR_CLUSTER_REGISTRY_INVALID_FUNCTION</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_REGISTRY_INVALID_FUNCTION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterInvalidStringTermination">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_INVALID_STRING_TERMINATION']/*"/>	
            <unmanaged>ERROR_CLUSTER_INVALID_STRING_TERMINATION</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_INVALID_STRING_TERMINATION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterInvalidStringFormat">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_INVALID_STRING_FORMAT']/*"/>	
            <unmanaged>ERROR_CLUSTER_INVALID_STRING_FORMAT</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_INVALID_STRING_FORMAT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterDatabaseTransactionInProgress">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_DATABASE_TRANSACTION_IN_PROGRESS']/*"/>	
            <unmanaged>ERROR_CLUSTER_DATABASE_TRANSACTION_IN_PROGRESS</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_DATABASE_TRANSACTION_IN_PROGRESS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterDatabaseTransactionNotInProgress">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_DATABASE_TRANSACTION_NOT_IN_PROGRESS']/*"/>	
            <unmanaged>ERROR_CLUSTER_DATABASE_TRANSACTION_NOT_IN_PROGRESS</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_DATABASE_TRANSACTION_NOT_IN_PROGRESS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterNullData">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_NULL_DATA']/*"/>	
            <unmanaged>ERROR_CLUSTER_NULL_DATA</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_NULL_DATA</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterPartialRead">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_PARTIAL_READ']/*"/>	
            <unmanaged>ERROR_CLUSTER_PARTIAL_READ</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_PARTIAL_READ</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterPartialWrite">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_PARTIAL_WRITE']/*"/>	
            <unmanaged>ERROR_CLUSTER_PARTIAL_WRITE</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_PARTIAL_WRITE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterCantDeserializeData">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_CANT_DESERIALIZE_DATA']/*"/>	
            <unmanaged>ERROR_CLUSTER_CANT_DESERIALIZE_DATA</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_CANT_DESERIALIZE_DATA</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DependentResourcePropertyConflict">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DEPENDENT_RESOURCE_PROPERTY_CONFLICT']/*"/>	
            <unmanaged>ERROR_DEPENDENT_RESOURCE_PROPERTY_CONFLICT</unmanaged>	
            <unmanaged-short>ERROR_DEPENDENT_RESOURCE_PROPERTY_CONFLICT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterNoQuorum">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_NO_QUORUM']/*"/>	
            <unmanaged>ERROR_CLUSTER_NO_QUORUM</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_NO_QUORUM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterInvalidIpv6Network">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_INVALID_IPV6_NETWORK']/*"/>	
            <unmanaged>ERROR_CLUSTER_INVALID_IPV6_NETWORK</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_INVALID_IPV6_NETWORK</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterInvalidIpv6TunnelNetwork">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_INVALID_IPV6_TUNNEL_NETWORK']/*"/>	
            <unmanaged>ERROR_CLUSTER_INVALID_IPV6_TUNNEL_NETWORK</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_INVALID_IPV6_TUNNEL_NETWORK</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.QuorumNotAllowedInThisGroup">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_QUORUM_NOT_ALLOWED_IN_THIS_GROUP']/*"/>	
            <unmanaged>ERROR_QUORUM_NOT_ALLOWED_IN_THIS_GROUP</unmanaged>	
            <unmanaged-short>ERROR_QUORUM_NOT_ALLOWED_IN_THIS_GROUP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DependencyTreeTooComplex">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DEPENDENCY_TREE_TOO_COMPLEX']/*"/>	
            <unmanaged>ERROR_DEPENDENCY_TREE_TOO_COMPLEX</unmanaged>	
            <unmanaged-short>ERROR_DEPENDENCY_TREE_TOO_COMPLEX</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ExceptionInResourceCall">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EXCEPTION_IN_RESOURCE_CALL']/*"/>	
            <unmanaged>ERROR_EXCEPTION_IN_RESOURCE_CALL</unmanaged>	
            <unmanaged-short>ERROR_EXCEPTION_IN_RESOURCE_CALL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterRhsFailedInitialization">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_RHS_FAILED_INITIALIZATION']/*"/>	
            <unmanaged>ERROR_CLUSTER_RHS_FAILED_INITIALIZATION</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_RHS_FAILED_INITIALIZATION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterNotInstalled">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_NOT_INSTALLED']/*"/>	
            <unmanaged>ERROR_CLUSTER_NOT_INSTALLED</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_NOT_INSTALLED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterResourcesMustBeOnlineOnTheSameNode">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_RESOURCES_MUST_BE_ONLINE_ON_THE_SAME_NODE']/*"/>	
            <unmanaged>ERROR_CLUSTER_RESOURCES_MUST_BE_ONLINE_ON_THE_SAME_NODE</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_RESOURCES_MUST_BE_ONLINE_ON_THE_SAME_NODE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterMaximumNodesInCluster">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_MAX_NODES_IN_CLUSTER']/*"/>	
            <unmanaged>ERROR_CLUSTER_MAX_NODES_IN_CLUSTER</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_MAX_NODES_IN_CLUSTER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterTooManyNodes">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_TOO_MANY_NODES']/*"/>	
            <unmanaged>ERROR_CLUSTER_TOO_MANY_NODES</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_TOO_MANY_NODES</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterObjectAlreadyUsed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_OBJECT_ALREADY_USED']/*"/>	
            <unmanaged>ERROR_CLUSTER_OBJECT_ALREADY_USED</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_OBJECT_ALREADY_USED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoncoreGroupsFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NONCORE_GROUPS_FOUND']/*"/>	
            <unmanaged>ERROR_NONCORE_GROUPS_FOUND</unmanaged>	
            <unmanaged-short>ERROR_NONCORE_GROUPS_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FileShareResourceConflict">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FILE_SHARE_RESOURCE_CONFLICT']/*"/>	
            <unmanaged>ERROR_FILE_SHARE_RESOURCE_CONFLICT</unmanaged>	
            <unmanaged-short>ERROR_FILE_SHARE_RESOURCE_CONFLICT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterEvictInvalidRequest">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_EVICT_INVALID_REQUEST']/*"/>	
            <unmanaged>ERROR_CLUSTER_EVICT_INVALID_REQUEST</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_EVICT_INVALID_REQUEST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterSingletonResource">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_SINGLETON_RESOURCE']/*"/>	
            <unmanaged>ERROR_CLUSTER_SINGLETON_RESOURCE</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_SINGLETON_RESOURCE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterGroupSingletonResource">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_GROUP_SINGLETON_RESOURCE']/*"/>	
            <unmanaged>ERROR_CLUSTER_GROUP_SINGLETON_RESOURCE</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_GROUP_SINGLETON_RESOURCE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterResourceProviderFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_RESOURCE_PROVIDER_FAILED']/*"/>	
            <unmanaged>ERROR_CLUSTER_RESOURCE_PROVIDER_FAILED</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_RESOURCE_PROVIDER_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterResourceConfigurationError">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_RESOURCE_CONFIGURATION_ERROR']/*"/>	
            <unmanaged>ERROR_CLUSTER_RESOURCE_CONFIGURATION_ERROR</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_RESOURCE_CONFIGURATION_ERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterGroupBusy">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_GROUP_BUSY']/*"/>	
            <unmanaged>ERROR_CLUSTER_GROUP_BUSY</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_GROUP_BUSY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterNotSharedVolume">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_NOT_SHARED_VOLUME']/*"/>	
            <unmanaged>ERROR_CLUSTER_NOT_SHARED_VOLUME</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_NOT_SHARED_VOLUME</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterInvalidSecurityDescriptor">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_INVALID_SECURITY_DESCRIPTOR']/*"/>	
            <unmanaged>ERROR_CLUSTER_INVALID_SECURITY_DESCRIPTOR</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_INVALID_SECURITY_DESCRIPTOR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterSharedVolumesInUse">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_SHARED_VOLUMES_IN_USE']/*"/>	
            <unmanaged>ERROR_CLUSTER_SHARED_VOLUMES_IN_USE</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_SHARED_VOLUMES_IN_USE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterUseSharedVolumesApi">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_USE_SHARED_VOLUMES_API']/*"/>	
            <unmanaged>ERROR_CLUSTER_USE_SHARED_VOLUMES_API</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_USE_SHARED_VOLUMES_API</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterBackupInProgress">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_BACKUP_IN_PROGRESS']/*"/>	
            <unmanaged>ERROR_CLUSTER_BACKUP_IN_PROGRESS</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_BACKUP_IN_PROGRESS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NonCsvPath">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NON_CSV_PATH']/*"/>	
            <unmanaged>ERROR_NON_CSV_PATH</unmanaged>	
            <unmanaged-short>ERROR_NON_CSV_PATH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CsvVolumeNotLocal">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CSV_VOLUME_NOT_LOCAL']/*"/>	
            <unmanaged>ERROR_CSV_VOLUME_NOT_LOCAL</unmanaged>	
            <unmanaged-short>ERROR_CSV_VOLUME_NOT_LOCAL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterWatchdogTerminating">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_WATCHDOG_TERMINATING']/*"/>	
            <unmanaged>ERROR_CLUSTER_WATCHDOG_TERMINATING</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_WATCHDOG_TERMINATING</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterResourceVetoedMoveIncompatibleNodes">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_RESOURCE_VETOED_MOVE_INCOMPATIBLE_NODES']/*"/>	
            <unmanaged>ERROR_CLUSTER_RESOURCE_VETOED_MOVE_INCOMPATIBLE_NODES</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_RESOURCE_VETOED_MOVE_INCOMPATIBLE_NODES</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterInvalidNodeWeight">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_INVALID_NODE_WEIGHT']/*"/>	
            <unmanaged>ERROR_CLUSTER_INVALID_NODE_WEIGHT</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_INVALID_NODE_WEIGHT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterResourceVetoedCall">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_RESOURCE_VETOED_CALL']/*"/>	
            <unmanaged>ERROR_CLUSTER_RESOURCE_VETOED_CALL</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_RESOURCE_VETOED_CALL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ResmonSystemResourcesLacking">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_RESMON_SYSTEM_RESOURCES_LACKING']/*"/>	
            <unmanaged>ERROR_RESMON_SYSTEM_RESOURCES_LACKING</unmanaged>	
            <unmanaged-short>ERROR_RESMON_SYSTEM_RESOURCES_LACKING</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterResourceVetoedMoveNotEnoughResourcesOnDestination">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_RESOURCE_VETOED_MOVE_NOT_ENOUGH_RESOURCES_ON_DESTINATION']/*"/>	
            <unmanaged>ERROR_CLUSTER_RESOURCE_VETOED_MOVE_NOT_ENOUGH_RESOURCES_ON_DESTINATION</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_RESOURCE_VETOED_MOVE_NOT_ENOUGH_RESOURCES_ON_DESTINATION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterResourceVetoedMoveNotEnoughResourcesOnSource">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_RESOURCE_VETOED_MOVE_NOT_ENOUGH_RESOURCES_ON_SOURCE']/*"/>	
            <unmanaged>ERROR_CLUSTER_RESOURCE_VETOED_MOVE_NOT_ENOUGH_RESOURCES_ON_SOURCE</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_RESOURCE_VETOED_MOVE_NOT_ENOUGH_RESOURCES_ON_SOURCE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterGroupQueued">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_GROUP_QUEUED']/*"/>	
            <unmanaged>ERROR_CLUSTER_GROUP_QUEUED</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_GROUP_QUEUED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterResourceLockedStatus">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_RESOURCE_LOCKED_STATUS']/*"/>	
            <unmanaged>ERROR_CLUSTER_RESOURCE_LOCKED_STATUS</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_RESOURCE_LOCKED_STATUS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterSharedVolumeFailoverNotAllowed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_SHARED_VOLUME_FAILOVER_NOT_ALLOWED']/*"/>	
            <unmanaged>ERROR_CLUSTER_SHARED_VOLUME_FAILOVER_NOT_ALLOWED</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_SHARED_VOLUME_FAILOVER_NOT_ALLOWED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterNodeDrainInProgress">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_NODE_DRAIN_IN_PROGRESS']/*"/>	
            <unmanaged>ERROR_CLUSTER_NODE_DRAIN_IN_PROGRESS</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_NODE_DRAIN_IN_PROGRESS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterDiskNotConnected">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_DISK_NOT_CONNECTED']/*"/>	
            <unmanaged>ERROR_CLUSTER_DISK_NOT_CONNECTED</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_DISK_NOT_CONNECTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DiskNotCsvCapable">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DISK_NOT_CSV_CAPABLE']/*"/>	
            <unmanaged>ERROR_DISK_NOT_CSV_CAPABLE</unmanaged>	
            <unmanaged-short>ERROR_DISK_NOT_CSV_CAPABLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ResourceNotInAvailableStorage">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_RESOURCE_NOT_IN_AVAILABLE_STORAGE']/*"/>	
            <unmanaged>ERROR_RESOURCE_NOT_IN_AVAILABLE_STORAGE</unmanaged>	
            <unmanaged-short>ERROR_RESOURCE_NOT_IN_AVAILABLE_STORAGE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterSharedVolumeRedirected">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_SHARED_VOLUME_REDIRECTED']/*"/>	
            <unmanaged>ERROR_CLUSTER_SHARED_VOLUME_REDIRECTED</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_SHARED_VOLUME_REDIRECTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterSharedVolumeNotRedirected">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_SHARED_VOLUME_NOT_REDIRECTED']/*"/>	
            <unmanaged>ERROR_CLUSTER_SHARED_VOLUME_NOT_REDIRECTED</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_SHARED_VOLUME_NOT_REDIRECTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterCannotReturnProperties">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_CANNOT_RETURN_PROPERTIES']/*"/>	
            <unmanaged>ERROR_CLUSTER_CANNOT_RETURN_PROPERTIES</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_CANNOT_RETURN_PROPERTIES</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterResourceContainsUnsupportedDiffAreaForSharedVolumes">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_RESOURCE_CONTAINS_UNSUPPORTED_DIFF_AREA_FOR_SHARED_VOLUMES']/*"/>	
            <unmanaged>ERROR_CLUSTER_RESOURCE_CONTAINS_UNSUPPORTED_DIFF_AREA_FOR_SHARED_VOLUMES</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_RESOURCE_CONTAINS_UNSUPPORTED_DIFF_AREA_FOR_SHARED_VOLUMES</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterResourceIsInMaintenanceMode">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_RESOURCE_IS_IN_MAINTENANCE_MODE']/*"/>	
            <unmanaged>ERROR_CLUSTER_RESOURCE_IS_IN_MAINTENANCE_MODE</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_RESOURCE_IS_IN_MAINTENANCE_MODE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterAffinityConflict">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_AFFINITY_CONFLICT']/*"/>	
            <unmanaged>ERROR_CLUSTER_AFFINITY_CONFLICT</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_AFFINITY_CONFLICT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ClusterResourceIsReplicaVirtualMachine">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CLUSTER_RESOURCE_IS_REPLICA_VIRTUAL_MACHINE']/*"/>	
            <unmanaged>ERROR_CLUSTER_RESOURCE_IS_REPLICA_VIRTUAL_MACHINE</unmanaged>	
            <unmanaged-short>ERROR_CLUSTER_RESOURCE_IS_REPLICA_VIRTUAL_MACHINE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EncryptionFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_ENCRYPTION_FAILED']/*"/>	
            <unmanaged>ERROR_ENCRYPTION_FAILED</unmanaged>	
            <unmanaged-short>ERROR_ENCRYPTION_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DecryptionFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DECRYPTION_FAILED']/*"/>	
            <unmanaged>ERROR_DECRYPTION_FAILED</unmanaged>	
            <unmanaged-short>ERROR_DECRYPTION_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FileEncrypted">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FILE_ENCRYPTED']/*"/>	
            <unmanaged>ERROR_FILE_ENCRYPTED</unmanaged>	
            <unmanaged-short>ERROR_FILE_ENCRYPTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoRecoveryPolicy">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_RECOVERY_POLICY']/*"/>	
            <unmanaged>ERROR_NO_RECOVERY_POLICY</unmanaged>	
            <unmanaged-short>ERROR_NO_RECOVERY_POLICY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoEfs">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_EFS']/*"/>	
            <unmanaged>ERROR_NO_EFS</unmanaged>	
            <unmanaged-short>ERROR_NO_EFS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.WrongEfs">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_WRONG_EFS']/*"/>	
            <unmanaged>ERROR_WRONG_EFS</unmanaged>	
            <unmanaged-short>ERROR_WRONG_EFS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoUserKeys">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_USER_KEYS']/*"/>	
            <unmanaged>ERROR_NO_USER_KEYS</unmanaged>	
            <unmanaged-short>ERROR_NO_USER_KEYS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FileNotEncrypted">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FILE_NOT_ENCRYPTED']/*"/>	
            <unmanaged>ERROR_FILE_NOT_ENCRYPTED</unmanaged>	
            <unmanaged-short>ERROR_FILE_NOT_ENCRYPTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NotExportFormat">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NOT_EXPORT_FORMAT']/*"/>	
            <unmanaged>ERROR_NOT_EXPORT_FORMAT</unmanaged>	
            <unmanaged-short>ERROR_NOT_EXPORT_FORMAT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FileReadOnly">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FILE_READ_ONLY']/*"/>	
            <unmanaged>ERROR_FILE_READ_ONLY</unmanaged>	
            <unmanaged-short>ERROR_FILE_READ_ONLY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DirEfsDisallowed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DIR_EFS_DISALLOWED']/*"/>	
            <unmanaged>ERROR_DIR_EFS_DISALLOWED</unmanaged>	
            <unmanaged-short>ERROR_DIR_EFS_DISALLOWED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EfsServerNotTrusted">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EFS_SERVER_NOT_TRUSTED']/*"/>	
            <unmanaged>ERROR_EFS_SERVER_NOT_TRUSTED</unmanaged>	
            <unmanaged-short>ERROR_EFS_SERVER_NOT_TRUSTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.BadRecoveryPolicy">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_BAD_RECOVERY_POLICY']/*"/>	
            <unmanaged>ERROR_BAD_RECOVERY_POLICY</unmanaged>	
            <unmanaged-short>ERROR_BAD_RECOVERY_POLICY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EfsAlgBlobTooBig">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EFS_ALG_BLOB_TOO_BIG']/*"/>	
            <unmanaged>ERROR_EFS_ALG_BLOB_TOO_BIG</unmanaged>	
            <unmanaged-short>ERROR_EFS_ALG_BLOB_TOO_BIG</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolumeNotSupportEfs">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLUME_NOT_SUPPORT_EFS']/*"/>	
            <unmanaged>ERROR_VOLUME_NOT_SUPPORT_EFS</unmanaged>	
            <unmanaged-short>ERROR_VOLUME_NOT_SUPPORT_EFS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EfsDisabled">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EFS_DISABLED']/*"/>	
            <unmanaged>ERROR_EFS_DISABLED</unmanaged>	
            <unmanaged-short>ERROR_EFS_DISABLED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EfsVersionNotSupport">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EFS_VERSION_NOT_SUPPORT']/*"/>	
            <unmanaged>ERROR_EFS_VERSION_NOT_SUPPORT</unmanaged>	
            <unmanaged-short>ERROR_EFS_VERSION_NOT_SUPPORT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CsEncryptionInvalidServerResponse">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CS_ENCRYPTION_INVALID_SERVER_RESPONSE']/*"/>	
            <unmanaged>ERROR_CS_ENCRYPTION_INVALID_SERVER_RESPONSE</unmanaged>	
            <unmanaged-short>ERROR_CS_ENCRYPTION_INVALID_SERVER_RESPONSE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CsEncryptionUnsupportedServer">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CS_ENCRYPTION_UNSUPPORTED_SERVER']/*"/>	
            <unmanaged>ERROR_CS_ENCRYPTION_UNSUPPORTED_SERVER</unmanaged>	
            <unmanaged-short>ERROR_CS_ENCRYPTION_UNSUPPORTED_SERVER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CsEncryptionExistingEncryptedFile">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CS_ENCRYPTION_EXISTING_ENCRYPTED_FILE']/*"/>	
            <unmanaged>ERROR_CS_ENCRYPTION_EXISTING_ENCRYPTED_FILE</unmanaged>	
            <unmanaged-short>ERROR_CS_ENCRYPTION_EXISTING_ENCRYPTED_FILE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CsEncryptionNewEncryptedFile">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CS_ENCRYPTION_NEW_ENCRYPTED_FILE']/*"/>	
            <unmanaged>ERROR_CS_ENCRYPTION_NEW_ENCRYPTED_FILE</unmanaged>	
            <unmanaged-short>ERROR_CS_ENCRYPTION_NEW_ENCRYPTED_FILE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CsEncryptionFileNotCse">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CS_ENCRYPTION_FILE_NOT_CSE']/*"/>	
            <unmanaged>ERROR_CS_ENCRYPTION_FILE_NOT_CSE</unmanaged>	
            <unmanaged-short>ERROR_CS_ENCRYPTION_FILE_NOT_CSE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EncryptionPolicyDeniesOperation">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_ENCRYPTION_POLICY_DENIES_OPERATION']/*"/>	
            <unmanaged>ERROR_ENCRYPTION_POLICY_DENIES_OPERATION</unmanaged>	
            <unmanaged-short>ERROR_ENCRYPTION_POLICY_DENIES_OPERATION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoBrowserServersFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_BROWSER_SERVERS_FOUND']/*"/>	
            <unmanaged>ERROR_NO_BROWSER_SERVERS_FOUND</unmanaged>	
            <unmanaged-short>ERROR_NO_BROWSER_SERVERS_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LogSectorInvalid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOG_SECTOR_INVALID']/*"/>	
            <unmanaged>ERROR_LOG_SECTOR_INVALID</unmanaged>	
            <unmanaged-short>ERROR_LOG_SECTOR_INVALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LogSectorParityInvalid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOG_SECTOR_PARITY_INVALID']/*"/>	
            <unmanaged>ERROR_LOG_SECTOR_PARITY_INVALID</unmanaged>	
            <unmanaged-short>ERROR_LOG_SECTOR_PARITY_INVALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LogSectorRemapped">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOG_SECTOR_REMAPPED']/*"/>	
            <unmanaged>ERROR_LOG_SECTOR_REMAPPED</unmanaged>	
            <unmanaged-short>ERROR_LOG_SECTOR_REMAPPED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LogBlockIncomplete">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOG_BLOCK_INCOMPLETE']/*"/>	
            <unmanaged>ERROR_LOG_BLOCK_INCOMPLETE</unmanaged>	
            <unmanaged-short>ERROR_LOG_BLOCK_INCOMPLETE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LogInvalidRange">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOG_INVALID_RANGE']/*"/>	
            <unmanaged>ERROR_LOG_INVALID_RANGE</unmanaged>	
            <unmanaged-short>ERROR_LOG_INVALID_RANGE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LogBlocksExhausted">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOG_BLOCKS_EXHAUSTED']/*"/>	
            <unmanaged>ERROR_LOG_BLOCKS_EXHAUSTED</unmanaged>	
            <unmanaged-short>ERROR_LOG_BLOCKS_EXHAUSTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LogReadContextInvalid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOG_READ_CONTEXT_INVALID']/*"/>	
            <unmanaged>ERROR_LOG_READ_CONTEXT_INVALID</unmanaged>	
            <unmanaged-short>ERROR_LOG_READ_CONTEXT_INVALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LogRestartInvalid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOG_RESTART_INVALID']/*"/>	
            <unmanaged>ERROR_LOG_RESTART_INVALID</unmanaged>	
            <unmanaged-short>ERROR_LOG_RESTART_INVALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LogBlockVersion">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOG_BLOCK_VERSION']/*"/>	
            <unmanaged>ERROR_LOG_BLOCK_VERSION</unmanaged>	
            <unmanaged-short>ERROR_LOG_BLOCK_VERSION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LogBlockInvalid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOG_BLOCK_INVALID']/*"/>	
            <unmanaged>ERROR_LOG_BLOCK_INVALID</unmanaged>	
            <unmanaged-short>ERROR_LOG_BLOCK_INVALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LogReadModeInvalid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOG_READ_MODE_INVALID']/*"/>	
            <unmanaged>ERROR_LOG_READ_MODE_INVALID</unmanaged>	
            <unmanaged-short>ERROR_LOG_READ_MODE_INVALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LogNoRestart">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOG_NO_RESTART']/*"/>	
            <unmanaged>ERROR_LOG_NO_RESTART</unmanaged>	
            <unmanaged-short>ERROR_LOG_NO_RESTART</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LogMetadataCorrupt">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOG_METADATA_CORRUPT']/*"/>	
            <unmanaged>ERROR_LOG_METADATA_CORRUPT</unmanaged>	
            <unmanaged-short>ERROR_LOG_METADATA_CORRUPT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LogMetadataInvalid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOG_METADATA_INVALID']/*"/>	
            <unmanaged>ERROR_LOG_METADATA_INVALID</unmanaged>	
            <unmanaged-short>ERROR_LOG_METADATA_INVALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LogMetadataInconsistent">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOG_METADATA_INCONSISTENT']/*"/>	
            <unmanaged>ERROR_LOG_METADATA_INCONSISTENT</unmanaged>	
            <unmanaged-short>ERROR_LOG_METADATA_INCONSISTENT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LogReservationInvalid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOG_RESERVATION_INVALID']/*"/>	
            <unmanaged>ERROR_LOG_RESERVATION_INVALID</unmanaged>	
            <unmanaged-short>ERROR_LOG_RESERVATION_INVALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LogCantDelete">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOG_CANT_DELETE']/*"/>	
            <unmanaged>ERROR_LOG_CANT_DELETE</unmanaged>	
            <unmanaged-short>ERROR_LOG_CANT_DELETE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LogContainerLimitExceeded">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOG_CONTAINER_LIMIT_EXCEEDED']/*"/>	
            <unmanaged>ERROR_LOG_CONTAINER_LIMIT_EXCEEDED</unmanaged>	
            <unmanaged-short>ERROR_LOG_CONTAINER_LIMIT_EXCEEDED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LogStartOfLog">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOG_START_OF_LOG']/*"/>	
            <unmanaged>ERROR_LOG_START_OF_LOG</unmanaged>	
            <unmanaged-short>ERROR_LOG_START_OF_LOG</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LogPolicyAlreadyInstalled">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOG_POLICY_ALREADY_INSTALLED']/*"/>	
            <unmanaged>ERROR_LOG_POLICY_ALREADY_INSTALLED</unmanaged>	
            <unmanaged-short>ERROR_LOG_POLICY_ALREADY_INSTALLED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LogPolicyNotInstalled">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOG_POLICY_NOT_INSTALLED']/*"/>	
            <unmanaged>ERROR_LOG_POLICY_NOT_INSTALLED</unmanaged>	
            <unmanaged-short>ERROR_LOG_POLICY_NOT_INSTALLED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LogPolicyInvalid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOG_POLICY_INVALID']/*"/>	
            <unmanaged>ERROR_LOG_POLICY_INVALID</unmanaged>	
            <unmanaged-short>ERROR_LOG_POLICY_INVALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LogPolicyConflict">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOG_POLICY_CONFLICT']/*"/>	
            <unmanaged>ERROR_LOG_POLICY_CONFLICT</unmanaged>	
            <unmanaged-short>ERROR_LOG_POLICY_CONFLICT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LogPinnedArchiveTail">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOG_PINNED_ARCHIVE_TAIL']/*"/>	
            <unmanaged>ERROR_LOG_PINNED_ARCHIVE_TAIL</unmanaged>	
            <unmanaged-short>ERROR_LOG_PINNED_ARCHIVE_TAIL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LogRecordNonexistent">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOG_RECORD_NONEXISTENT']/*"/>	
            <unmanaged>ERROR_LOG_RECORD_NONEXISTENT</unmanaged>	
            <unmanaged-short>ERROR_LOG_RECORD_NONEXISTENT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LogRecordsReservedInvalid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOG_RECORDS_RESERVED_INVALID']/*"/>	
            <unmanaged>ERROR_LOG_RECORDS_RESERVED_INVALID</unmanaged>	
            <unmanaged-short>ERROR_LOG_RECORDS_RESERVED_INVALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LogSpaceReservedInvalid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOG_SPACE_RESERVED_INVALID']/*"/>	
            <unmanaged>ERROR_LOG_SPACE_RESERVED_INVALID</unmanaged>	
            <unmanaged-short>ERROR_LOG_SPACE_RESERVED_INVALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LogTailInvalid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOG_TAIL_INVALID']/*"/>	
            <unmanaged>ERROR_LOG_TAIL_INVALID</unmanaged>	
            <unmanaged-short>ERROR_LOG_TAIL_INVALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LogFull">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOG_FULL']/*"/>	
            <unmanaged>ERROR_LOG_FULL</unmanaged>	
            <unmanaged-short>ERROR_LOG_FULL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CouldNotResizeLog">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_COULD_NOT_RESIZE_LOG']/*"/>	
            <unmanaged>ERROR_COULD_NOT_RESIZE_LOG</unmanaged>	
            <unmanaged-short>ERROR_COULD_NOT_RESIZE_LOG</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LogMultiplexed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOG_MULTIPLEXED']/*"/>	
            <unmanaged>ERROR_LOG_MULTIPLEXED</unmanaged>	
            <unmanaged-short>ERROR_LOG_MULTIPLEXED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LogDedicated">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOG_DEDICATED']/*"/>	
            <unmanaged>ERROR_LOG_DEDICATED</unmanaged>	
            <unmanaged-short>ERROR_LOG_DEDICATED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LogArchiveNotInProgress">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOG_ARCHIVE_NOT_IN_PROGRESS']/*"/>	
            <unmanaged>ERROR_LOG_ARCHIVE_NOT_IN_PROGRESS</unmanaged>	
            <unmanaged-short>ERROR_LOG_ARCHIVE_NOT_IN_PROGRESS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LogArchiveInProgress">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOG_ARCHIVE_IN_PROGRESS']/*"/>	
            <unmanaged>ERROR_LOG_ARCHIVE_IN_PROGRESS</unmanaged>	
            <unmanaged-short>ERROR_LOG_ARCHIVE_IN_PROGRESS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LogEphemeral">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOG_EPHEMERAL']/*"/>	
            <unmanaged>ERROR_LOG_EPHEMERAL</unmanaged>	
            <unmanaged-short>ERROR_LOG_EPHEMERAL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LogNotEnoughContainers">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOG_NOT_ENOUGH_CONTAINERS']/*"/>	
            <unmanaged>ERROR_LOG_NOT_ENOUGH_CONTAINERS</unmanaged>	
            <unmanaged-short>ERROR_LOG_NOT_ENOUGH_CONTAINERS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LogClientAlreadyRegistered">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOG_CLIENT_ALREADY_REGISTERED']/*"/>	
            <unmanaged>ERROR_LOG_CLIENT_ALREADY_REGISTERED</unmanaged>	
            <unmanaged-short>ERROR_LOG_CLIENT_ALREADY_REGISTERED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LogClientNotRegistered">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOG_CLIENT_NOT_REGISTERED']/*"/>	
            <unmanaged>ERROR_LOG_CLIENT_NOT_REGISTERED</unmanaged>	
            <unmanaged-short>ERROR_LOG_CLIENT_NOT_REGISTERED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LogFullHandlerInProgress">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOG_FULL_HANDLER_IN_PROGRESS']/*"/>	
            <unmanaged>ERROR_LOG_FULL_HANDLER_IN_PROGRESS</unmanaged>	
            <unmanaged-short>ERROR_LOG_FULL_HANDLER_IN_PROGRESS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LogContainerReadFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOG_CONTAINER_READ_FAILED']/*"/>	
            <unmanaged>ERROR_LOG_CONTAINER_READ_FAILED</unmanaged>	
            <unmanaged-short>ERROR_LOG_CONTAINER_READ_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LogContainerWriteFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOG_CONTAINER_WRITE_FAILED']/*"/>	
            <unmanaged>ERROR_LOG_CONTAINER_WRITE_FAILED</unmanaged>	
            <unmanaged-short>ERROR_LOG_CONTAINER_WRITE_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LogContainerOpenFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOG_CONTAINER_OPEN_FAILED']/*"/>	
            <unmanaged>ERROR_LOG_CONTAINER_OPEN_FAILED</unmanaged>	
            <unmanaged-short>ERROR_LOG_CONTAINER_OPEN_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LogContainerStateInvalid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOG_CONTAINER_STATE_INVALID']/*"/>	
            <unmanaged>ERROR_LOG_CONTAINER_STATE_INVALID</unmanaged>	
            <unmanaged-short>ERROR_LOG_CONTAINER_STATE_INVALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LogStateInvalid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOG_STATE_INVALID']/*"/>	
            <unmanaged>ERROR_LOG_STATE_INVALID</unmanaged>	
            <unmanaged-short>ERROR_LOG_STATE_INVALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LogPinned">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOG_PINNED']/*"/>	
            <unmanaged>ERROR_LOG_PINNED</unmanaged>	
            <unmanaged-short>ERROR_LOG_PINNED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LogMetadataFlushFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOG_METADATA_FLUSH_FAILED']/*"/>	
            <unmanaged>ERROR_LOG_METADATA_FLUSH_FAILED</unmanaged>	
            <unmanaged-short>ERROR_LOG_METADATA_FLUSH_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LogInconsistentSecurity">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOG_INCONSISTENT_SECURITY']/*"/>	
            <unmanaged>ERROR_LOG_INCONSISTENT_SECURITY</unmanaged>	
            <unmanaged-short>ERROR_LOG_INCONSISTENT_SECURITY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LogAppendedFlushFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOG_APPENDED_FLUSH_FAILED']/*"/>	
            <unmanaged>ERROR_LOG_APPENDED_FLUSH_FAILED</unmanaged>	
            <unmanaged-short>ERROR_LOG_APPENDED_FLUSH_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LogPinnedReservation">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOG_PINNED_RESERVATION']/*"/>	
            <unmanaged>ERROR_LOG_PINNED_RESERVATION</unmanaged>	
            <unmanaged-short>ERROR_LOG_PINNED_RESERVATION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidTransaction">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_TRANSACTION']/*"/>	
            <unmanaged>ERROR_INVALID_TRANSACTION</unmanaged>	
            <unmanaged-short>ERROR_INVALID_TRANSACTION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TransactionNotActive">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TRANSACTION_NOT_ACTIVE']/*"/>	
            <unmanaged>ERROR_TRANSACTION_NOT_ACTIVE</unmanaged>	
            <unmanaged-short>ERROR_TRANSACTION_NOT_ACTIVE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TransactionRequestNotValid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TRANSACTION_REQUEST_NOT_VALID']/*"/>	
            <unmanaged>ERROR_TRANSACTION_REQUEST_NOT_VALID</unmanaged>	
            <unmanaged-short>ERROR_TRANSACTION_REQUEST_NOT_VALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TransactionNotRequested">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TRANSACTION_NOT_REQUESTED']/*"/>	
            <unmanaged>ERROR_TRANSACTION_NOT_REQUESTED</unmanaged>	
            <unmanaged-short>ERROR_TRANSACTION_NOT_REQUESTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TransactionAlreadyAborted">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TRANSACTION_ALREADY_ABORTED']/*"/>	
            <unmanaged>ERROR_TRANSACTION_ALREADY_ABORTED</unmanaged>	
            <unmanaged-short>ERROR_TRANSACTION_ALREADY_ABORTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TransactionAlreadyCommitted">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TRANSACTION_ALREADY_COMMITTED']/*"/>	
            <unmanaged>ERROR_TRANSACTION_ALREADY_COMMITTED</unmanaged>	
            <unmanaged-short>ERROR_TRANSACTION_ALREADY_COMMITTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TmInitializationFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TM_INITIALIZATION_FAILED']/*"/>	
            <unmanaged>ERROR_TM_INITIALIZATION_FAILED</unmanaged>	
            <unmanaged-short>ERROR_TM_INITIALIZATION_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ResourcemanagerReadOnly">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_RESOURCEMANAGER_READ_ONLY']/*"/>	
            <unmanaged>ERROR_RESOURCEMANAGER_READ_ONLY</unmanaged>	
            <unmanaged-short>ERROR_RESOURCEMANAGER_READ_ONLY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TransactionNotJoined">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TRANSACTION_NOT_JOINED']/*"/>	
            <unmanaged>ERROR_TRANSACTION_NOT_JOINED</unmanaged>	
            <unmanaged-short>ERROR_TRANSACTION_NOT_JOINED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TransactionSuperiorExists">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TRANSACTION_SUPERIOR_EXISTS']/*"/>	
            <unmanaged>ERROR_TRANSACTION_SUPERIOR_EXISTS</unmanaged>	
            <unmanaged-short>ERROR_TRANSACTION_SUPERIOR_EXISTS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CrmProtocolAlreadyExists">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CRM_PROTOCOL_ALREADY_EXISTS']/*"/>	
            <unmanaged>ERROR_CRM_PROTOCOL_ALREADY_EXISTS</unmanaged>	
            <unmanaged-short>ERROR_CRM_PROTOCOL_ALREADY_EXISTS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TransactionPropagationFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TRANSACTION_PROPAGATION_FAILED']/*"/>	
            <unmanaged>ERROR_TRANSACTION_PROPAGATION_FAILED</unmanaged>	
            <unmanaged-short>ERROR_TRANSACTION_PROPAGATION_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CrmProtocolNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CRM_PROTOCOL_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_CRM_PROTOCOL_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_CRM_PROTOCOL_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TransactionInvalidMarshallBuffer">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TRANSACTION_INVALID_MARSHALL_BUFFER']/*"/>	
            <unmanaged>ERROR_TRANSACTION_INVALID_MARSHALL_BUFFER</unmanaged>	
            <unmanaged-short>ERROR_TRANSACTION_INVALID_MARSHALL_BUFFER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CurrentTransactionNotValid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CURRENT_TRANSACTION_NOT_VALID']/*"/>	
            <unmanaged>ERROR_CURRENT_TRANSACTION_NOT_VALID</unmanaged>	
            <unmanaged-short>ERROR_CURRENT_TRANSACTION_NOT_VALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TransactionNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TRANSACTION_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_TRANSACTION_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_TRANSACTION_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ResourcemanagerNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_RESOURCEMANAGER_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_RESOURCEMANAGER_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_RESOURCEMANAGER_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EnlistmentNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_ENLISTMENT_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_ENLISTMENT_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_ENLISTMENT_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TransactionmanagerNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TRANSACTIONMANAGER_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_TRANSACTIONMANAGER_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_TRANSACTIONMANAGER_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TransactionmanagerNotOnline">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TRANSACTIONMANAGER_NOT_ONLINE']/*"/>	
            <unmanaged>ERROR_TRANSACTIONMANAGER_NOT_ONLINE</unmanaged>	
            <unmanaged-short>ERROR_TRANSACTIONMANAGER_NOT_ONLINE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TransactionmanagerRecoveryNameCollision">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TRANSACTIONMANAGER_RECOVERY_NAME_COLLISION']/*"/>	
            <unmanaged>ERROR_TRANSACTIONMANAGER_RECOVERY_NAME_COLLISION</unmanaged>	
            <unmanaged-short>ERROR_TRANSACTIONMANAGER_RECOVERY_NAME_COLLISION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TransactionNotRoot">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TRANSACTION_NOT_ROOT']/*"/>	
            <unmanaged>ERROR_TRANSACTION_NOT_ROOT</unmanaged>	
            <unmanaged-short>ERROR_TRANSACTION_NOT_ROOT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TransactionObjectExpired">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TRANSACTION_OBJECT_EXPIRED']/*"/>	
            <unmanaged>ERROR_TRANSACTION_OBJECT_EXPIRED</unmanaged>	
            <unmanaged-short>ERROR_TRANSACTION_OBJECT_EXPIRED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TransactionResponseNotEnlisted">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TRANSACTION_RESPONSE_NOT_ENLISTED']/*"/>	
            <unmanaged>ERROR_TRANSACTION_RESPONSE_NOT_ENLISTED</unmanaged>	
            <unmanaged-short>ERROR_TRANSACTION_RESPONSE_NOT_ENLISTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TransactionRecordTooLong">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TRANSACTION_RECORD_TOO_LONG']/*"/>	
            <unmanaged>ERROR_TRANSACTION_RECORD_TOO_LONG</unmanaged>	
            <unmanaged-short>ERROR_TRANSACTION_RECORD_TOO_LONG</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ImplicitTransactionNotSupported">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IMPLICIT_TRANSACTION_NOT_SUPPORTED']/*"/>	
            <unmanaged>ERROR_IMPLICIT_TRANSACTION_NOT_SUPPORTED</unmanaged>	
            <unmanaged-short>ERROR_IMPLICIT_TRANSACTION_NOT_SUPPORTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TransactionIntegrityViolated">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TRANSACTION_INTEGRITY_VIOLATED']/*"/>	
            <unmanaged>ERROR_TRANSACTION_INTEGRITY_VIOLATED</unmanaged>	
            <unmanaged-short>ERROR_TRANSACTION_INTEGRITY_VIOLATED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TransactionmanagerIdentityMismatch">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TRANSACTIONMANAGER_IDENTITY_MISMATCH']/*"/>	
            <unmanaged>ERROR_TRANSACTIONMANAGER_IDENTITY_MISMATCH</unmanaged>	
            <unmanaged-short>ERROR_TRANSACTIONMANAGER_IDENTITY_MISMATCH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.RmCannotBeFrozenForSnapshot">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_RM_CANNOT_BE_FROZEN_FOR_SNAPSHOT']/*"/>	
            <unmanaged>ERROR_RM_CANNOT_BE_FROZEN_FOR_SNAPSHOT</unmanaged>	
            <unmanaged-short>ERROR_RM_CANNOT_BE_FROZEN_FOR_SNAPSHOT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TransactionMustWritethrough">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TRANSACTION_MUST_WRITETHROUGH']/*"/>	
            <unmanaged>ERROR_TRANSACTION_MUST_WRITETHROUGH</unmanaged>	
            <unmanaged-short>ERROR_TRANSACTION_MUST_WRITETHROUGH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TransactionNoSuperior">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TRANSACTION_NO_SUPERIOR']/*"/>	
            <unmanaged>ERROR_TRANSACTION_NO_SUPERIOR</unmanaged>	
            <unmanaged-short>ERROR_TRANSACTION_NO_SUPERIOR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.HeuristicDamagePossible">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_HEURISTIC_DAMAGE_POSSIBLE']/*"/>	
            <unmanaged>ERROR_HEURISTIC_DAMAGE_POSSIBLE</unmanaged>	
            <unmanaged-short>ERROR_HEURISTIC_DAMAGE_POSSIBLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TransactionalConflict">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TRANSACTIONAL_CONFLICT']/*"/>	
            <unmanaged>ERROR_TRANSACTIONAL_CONFLICT</unmanaged>	
            <unmanaged-short>ERROR_TRANSACTIONAL_CONFLICT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.RmNotActive">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_RM_NOT_ACTIVE']/*"/>	
            <unmanaged>ERROR_RM_NOT_ACTIVE</unmanaged>	
            <unmanaged-short>ERROR_RM_NOT_ACTIVE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.RmMetadataCorrupt">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_RM_METADATA_CORRUPT']/*"/>	
            <unmanaged>ERROR_RM_METADATA_CORRUPT</unmanaged>	
            <unmanaged-short>ERROR_RM_METADATA_CORRUPT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DirectoryNotRm">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DIRECTORY_NOT_RM']/*"/>	
            <unmanaged>ERROR_DIRECTORY_NOT_RM</unmanaged>	
            <unmanaged-short>ERROR_DIRECTORY_NOT_RM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TransactionsUnsupportedRemote">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TRANSACTIONS_UNSUPPORTED_REMOTE']/*"/>	
            <unmanaged>ERROR_TRANSACTIONS_UNSUPPORTED_REMOTE</unmanaged>	
            <unmanaged-short>ERROR_TRANSACTIONS_UNSUPPORTED_REMOTE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LogResizeInvalidSize">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOG_RESIZE_INVALID_SIZE']/*"/>	
            <unmanaged>ERROR_LOG_RESIZE_INVALID_SIZE</unmanaged>	
            <unmanaged-short>ERROR_LOG_RESIZE_INVALID_SIZE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ObjectNoLongerExists">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_OBJECT_NO_LONGER_EXISTS']/*"/>	
            <unmanaged>ERROR_OBJECT_NO_LONGER_EXISTS</unmanaged>	
            <unmanaged-short>ERROR_OBJECT_NO_LONGER_EXISTS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.StreamMiniversionNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_STREAM_MINIVERSION_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_STREAM_MINIVERSION_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_STREAM_MINIVERSION_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.StreamMiniversionNotValid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_STREAM_MINIVERSION_NOT_VALID']/*"/>	
            <unmanaged>ERROR_STREAM_MINIVERSION_NOT_VALID</unmanaged>	
            <unmanaged-short>ERROR_STREAM_MINIVERSION_NOT_VALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MiniversionInaccessibleFromSpecifiedTransaction">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MINIVERSION_INACCESSIBLE_FROM_SPECIFIED_TRANSACTION']/*"/>	
            <unmanaged>ERROR_MINIVERSION_INACCESSIBLE_FROM_SPECIFIED_TRANSACTION</unmanaged>	
            <unmanaged-short>ERROR_MINIVERSION_INACCESSIBLE_FROM_SPECIFIED_TRANSACTION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CantOpenMiniversionWithModifyIntent">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CANT_OPEN_MINIVERSION_WITH_MODIFY_INTENT']/*"/>	
            <unmanaged>ERROR_CANT_OPEN_MINIVERSION_WITH_MODIFY_INTENT</unmanaged>	
            <unmanaged-short>ERROR_CANT_OPEN_MINIVERSION_WITH_MODIFY_INTENT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CantCreateMoreStreamMiniversions">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CANT_CREATE_MORE_STREAM_MINIVERSIONS']/*"/>	
            <unmanaged>ERROR_CANT_CREATE_MORE_STREAM_MINIVERSIONS</unmanaged>	
            <unmanaged-short>ERROR_CANT_CREATE_MORE_STREAM_MINIVERSIONS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.RemoteFileVersionMismatch">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_REMOTE_FILE_VERSION_MISMATCH']/*"/>	
            <unmanaged>ERROR_REMOTE_FILE_VERSION_MISMATCH</unmanaged>	
            <unmanaged-short>ERROR_REMOTE_FILE_VERSION_MISMATCH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.HandleNoLongerValid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_HANDLE_NO_LONGER_VALID']/*"/>	
            <unmanaged>ERROR_HANDLE_NO_LONGER_VALID</unmanaged>	
            <unmanaged-short>ERROR_HANDLE_NO_LONGER_VALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoTxfMetadata">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_TXF_METADATA']/*"/>	
            <unmanaged>ERROR_NO_TXF_METADATA</unmanaged>	
            <unmanaged-short>ERROR_NO_TXF_METADATA</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LogCorruptionDetected">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOG_CORRUPTION_DETECTED']/*"/>	
            <unmanaged>ERROR_LOG_CORRUPTION_DETECTED</unmanaged>	
            <unmanaged-short>ERROR_LOG_CORRUPTION_DETECTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CantRecoverWithHandleOpen">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CANT_RECOVER_WITH_HANDLE_OPEN']/*"/>	
            <unmanaged>ERROR_CANT_RECOVER_WITH_HANDLE_OPEN</unmanaged>	
            <unmanaged-short>ERROR_CANT_RECOVER_WITH_HANDLE_OPEN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.RmDisconnected">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_RM_DISCONNECTED']/*"/>	
            <unmanaged>ERROR_RM_DISCONNECTED</unmanaged>	
            <unmanaged-short>ERROR_RM_DISCONNECTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EnlistmentNotSuperior">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_ENLISTMENT_NOT_SUPERIOR']/*"/>	
            <unmanaged>ERROR_ENLISTMENT_NOT_SUPERIOR</unmanaged>	
            <unmanaged-short>ERROR_ENLISTMENT_NOT_SUPERIOR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.RecoveryNotNeeded">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_RECOVERY_NOT_NEEDED']/*"/>	
            <unmanaged>ERROR_RECOVERY_NOT_NEEDED</unmanaged>	
            <unmanaged-short>ERROR_RECOVERY_NOT_NEEDED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.RmAlreadyStarted">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_RM_ALREADY_STARTED']/*"/>	
            <unmanaged>ERROR_RM_ALREADY_STARTED</unmanaged>	
            <unmanaged-short>ERROR_RM_ALREADY_STARTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FileIdentityNotPersistent">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FILE_IDENTITY_NOT_PERSISTENT']/*"/>	
            <unmanaged>ERROR_FILE_IDENTITY_NOT_PERSISTENT</unmanaged>	
            <unmanaged-short>ERROR_FILE_IDENTITY_NOT_PERSISTENT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CantBreakTransactionalDependency">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CANT_BREAK_TRANSACTIONAL_DEPENDENCY']/*"/>	
            <unmanaged>ERROR_CANT_BREAK_TRANSACTIONAL_DEPENDENCY</unmanaged>	
            <unmanaged-short>ERROR_CANT_BREAK_TRANSACTIONAL_DEPENDENCY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CantCrossRmBoundary">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CANT_CROSS_RM_BOUNDARY']/*"/>	
            <unmanaged>ERROR_CANT_CROSS_RM_BOUNDARY</unmanaged>	
            <unmanaged-short>ERROR_CANT_CROSS_RM_BOUNDARY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TxfDirNotEmpty">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TXF_DIR_NOT_EMPTY']/*"/>	
            <unmanaged>ERROR_TXF_DIR_NOT_EMPTY</unmanaged>	
            <unmanaged-short>ERROR_TXF_DIR_NOT_EMPTY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IndoubtTransactionsExist">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INDOUBT_TRANSACTIONS_EXIST']/*"/>	
            <unmanaged>ERROR_INDOUBT_TRANSACTIONS_EXIST</unmanaged>	
            <unmanaged-short>ERROR_INDOUBT_TRANSACTIONS_EXIST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TmVolatile">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TM_VOLATILE']/*"/>	
            <unmanaged>ERROR_TM_VOLATILE</unmanaged>	
            <unmanaged-short>ERROR_TM_VOLATILE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.RollbackTimerExpired">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_ROLLBACK_TIMER_EXPIRED']/*"/>	
            <unmanaged>ERROR_ROLLBACK_TIMER_EXPIRED</unmanaged>	
            <unmanaged-short>ERROR_ROLLBACK_TIMER_EXPIRED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TxfAttributeCorrupt">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TXF_ATTRIBUTE_CORRUPT']/*"/>	
            <unmanaged>ERROR_TXF_ATTRIBUTE_CORRUPT</unmanaged>	
            <unmanaged-short>ERROR_TXF_ATTRIBUTE_CORRUPT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EfsNotAllowedInTransaction">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EFS_NOT_ALLOWED_IN_TRANSACTION']/*"/>	
            <unmanaged>ERROR_EFS_NOT_ALLOWED_IN_TRANSACTION</unmanaged>	
            <unmanaged-short>ERROR_EFS_NOT_ALLOWED_IN_TRANSACTION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TransactionalOpenNotAllowed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TRANSACTIONAL_OPEN_NOT_ALLOWED']/*"/>	
            <unmanaged>ERROR_TRANSACTIONAL_OPEN_NOT_ALLOWED</unmanaged>	
            <unmanaged-short>ERROR_TRANSACTIONAL_OPEN_NOT_ALLOWED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.LogGrowthFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_LOG_GROWTH_FAILED']/*"/>	
            <unmanaged>ERROR_LOG_GROWTH_FAILED</unmanaged>	
            <unmanaged-short>ERROR_LOG_GROWTH_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TransactedMappingUnsupportedRemote">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TRANSACTED_MAPPING_UNSUPPORTED_REMOTE']/*"/>	
            <unmanaged>ERROR_TRANSACTED_MAPPING_UNSUPPORTED_REMOTE</unmanaged>	
            <unmanaged-short>ERROR_TRANSACTED_MAPPING_UNSUPPORTED_REMOTE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TxfMetadataAlreadyPresent">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TXF_METADATA_ALREADY_PRESENT']/*"/>	
            <unmanaged>ERROR_TXF_METADATA_ALREADY_PRESENT</unmanaged>	
            <unmanaged-short>ERROR_TXF_METADATA_ALREADY_PRESENT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TransactionScopeCallbacksNotSet">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TRANSACTION_SCOPE_CALLBACKS_NOT_SET']/*"/>	
            <unmanaged>ERROR_TRANSACTION_SCOPE_CALLBACKS_NOT_SET</unmanaged>	
            <unmanaged-short>ERROR_TRANSACTION_SCOPE_CALLBACKS_NOT_SET</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TransactionRequiredPromotion">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TRANSACTION_REQUIRED_PROMOTION']/*"/>	
            <unmanaged>ERROR_TRANSACTION_REQUIRED_PROMOTION</unmanaged>	
            <unmanaged-short>ERROR_TRANSACTION_REQUIRED_PROMOTION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CannotExecuteFileInTransaction">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CANNOT_EXECUTE_FILE_IN_TRANSACTION']/*"/>	
            <unmanaged>ERROR_CANNOT_EXECUTE_FILE_IN_TRANSACTION</unmanaged>	
            <unmanaged-short>ERROR_CANNOT_EXECUTE_FILE_IN_TRANSACTION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TransactionsNotFrozen">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TRANSACTIONS_NOT_FROZEN']/*"/>	
            <unmanaged>ERROR_TRANSACTIONS_NOT_FROZEN</unmanaged>	
            <unmanaged-short>ERROR_TRANSACTIONS_NOT_FROZEN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TransactionFreezeInProgress">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TRANSACTION_FREEZE_IN_PROGRESS']/*"/>	
            <unmanaged>ERROR_TRANSACTION_FREEZE_IN_PROGRESS</unmanaged>	
            <unmanaged-short>ERROR_TRANSACTION_FREEZE_IN_PROGRESS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NotSnapshotVolume">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NOT_SNAPSHOT_VOLUME']/*"/>	
            <unmanaged>ERROR_NOT_SNAPSHOT_VOLUME</unmanaged>	
            <unmanaged-short>ERROR_NOT_SNAPSHOT_VOLUME</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoSavepointWithOpenFiles">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_SAVEPOINT_WITH_OPEN_FILES']/*"/>	
            <unmanaged>ERROR_NO_SAVEPOINT_WITH_OPEN_FILES</unmanaged>	
            <unmanaged-short>ERROR_NO_SAVEPOINT_WITH_OPEN_FILES</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DataLostRepair">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DATA_LOST_REPAIR']/*"/>	
            <unmanaged>ERROR_DATA_LOST_REPAIR</unmanaged>	
            <unmanaged-short>ERROR_DATA_LOST_REPAIR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SparseNotAllowedInTransaction">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SPARSE_NOT_ALLOWED_IN_TRANSACTION']/*"/>	
            <unmanaged>ERROR_SPARSE_NOT_ALLOWED_IN_TRANSACTION</unmanaged>	
            <unmanaged-short>ERROR_SPARSE_NOT_ALLOWED_IN_TRANSACTION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TmIdentityMismatch">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TM_IDENTITY_MISMATCH']/*"/>	
            <unmanaged>ERROR_TM_IDENTITY_MISMATCH</unmanaged>	
            <unmanaged-short>ERROR_TM_IDENTITY_MISMATCH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FloatedSection">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FLOATED_SECTION']/*"/>	
            <unmanaged>ERROR_FLOATED_SECTION</unmanaged>	
            <unmanaged-short>ERROR_FLOATED_SECTION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CannotAcceptTransactedWork">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CANNOT_ACCEPT_TRANSACTED_WORK']/*"/>	
            <unmanaged>ERROR_CANNOT_ACCEPT_TRANSACTED_WORK</unmanaged>	
            <unmanaged-short>ERROR_CANNOT_ACCEPT_TRANSACTED_WORK</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CannotAbortTransactions">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CANNOT_ABORT_TRANSACTIONS']/*"/>	
            <unmanaged>ERROR_CANNOT_ABORT_TRANSACTIONS</unmanaged>	
            <unmanaged-short>ERROR_CANNOT_ABORT_TRANSACTIONS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.BadClusters">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_BAD_CLUSTERS']/*"/>	
            <unmanaged>ERROR_BAD_CLUSTERS</unmanaged>	
            <unmanaged-short>ERROR_BAD_CLUSTERS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CompressionNotAllowedInTransaction">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_COMPRESSION_NOT_ALLOWED_IN_TRANSACTION']/*"/>	
            <unmanaged>ERROR_COMPRESSION_NOT_ALLOWED_IN_TRANSACTION</unmanaged>	
            <unmanaged-short>ERROR_COMPRESSION_NOT_ALLOWED_IN_TRANSACTION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolumeDirty">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLUME_DIRTY']/*"/>	
            <unmanaged>ERROR_VOLUME_DIRTY</unmanaged>	
            <unmanaged-short>ERROR_VOLUME_DIRTY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoLinkTrackingInTransaction">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_LINK_TRACKING_IN_TRANSACTION']/*"/>	
            <unmanaged>ERROR_NO_LINK_TRACKING_IN_TRANSACTION</unmanaged>	
            <unmanaged-short>ERROR_NO_LINK_TRACKING_IN_TRANSACTION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.OperationNotSupportedInTransaction">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_OPERATION_NOT_SUPPORTED_IN_TRANSACTION']/*"/>	
            <unmanaged>ERROR_OPERATION_NOT_SUPPORTED_IN_TRANSACTION</unmanaged>	
            <unmanaged-short>ERROR_OPERATION_NOT_SUPPORTED_IN_TRANSACTION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ExpiredHandle">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EXPIRED_HANDLE']/*"/>	
            <unmanaged>ERROR_EXPIRED_HANDLE</unmanaged>	
            <unmanaged-short>ERROR_EXPIRED_HANDLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TransactionNotEnlisted">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TRANSACTION_NOT_ENLISTED']/*"/>	
            <unmanaged>ERROR_TRANSACTION_NOT_ENLISTED</unmanaged>	
            <unmanaged-short>ERROR_TRANSACTION_NOT_ENLISTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CtxWinstationNameInvalid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CTX_WINSTATION_NAME_INVALID']/*"/>	
            <unmanaged>ERROR_CTX_WINSTATION_NAME_INVALID</unmanaged>	
            <unmanaged-short>ERROR_CTX_WINSTATION_NAME_INVALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CtxInvalidPd">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CTX_INVALID_PD']/*"/>	
            <unmanaged>ERROR_CTX_INVALID_PD</unmanaged>	
            <unmanaged-short>ERROR_CTX_INVALID_PD</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CtxPdNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CTX_PD_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_CTX_PD_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_CTX_PD_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CtxWdNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CTX_WD_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_CTX_WD_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_CTX_WD_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CtxCannotMakeEventlogEntry">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CTX_CANNOT_MAKE_EVENTLOG_ENTRY']/*"/>	
            <unmanaged>ERROR_CTX_CANNOT_MAKE_EVENTLOG_ENTRY</unmanaged>	
            <unmanaged-short>ERROR_CTX_CANNOT_MAKE_EVENTLOG_ENTRY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CtxServiceNameCollision">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CTX_SERVICE_NAME_COLLISION']/*"/>	
            <unmanaged>ERROR_CTX_SERVICE_NAME_COLLISION</unmanaged>	
            <unmanaged-short>ERROR_CTX_SERVICE_NAME_COLLISION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CtxClosePending">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CTX_CLOSE_PENDING']/*"/>	
            <unmanaged>ERROR_CTX_CLOSE_PENDING</unmanaged>	
            <unmanaged-short>ERROR_CTX_CLOSE_PENDING</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CtxNoOutbuf">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CTX_NO_OUTBUF']/*"/>	
            <unmanaged>ERROR_CTX_NO_OUTBUF</unmanaged>	
            <unmanaged-short>ERROR_CTX_NO_OUTBUF</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CtxModemInfNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CTX_MODEM_INF_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_CTX_MODEM_INF_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_CTX_MODEM_INF_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CtxInvalidModemname">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CTX_INVALID_MODEMNAME']/*"/>	
            <unmanaged>ERROR_CTX_INVALID_MODEMNAME</unmanaged>	
            <unmanaged-short>ERROR_CTX_INVALID_MODEMNAME</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CtxModemResponseError">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CTX_MODEM_RESPONSE_ERROR']/*"/>	
            <unmanaged>ERROR_CTX_MODEM_RESPONSE_ERROR</unmanaged>	
            <unmanaged-short>ERROR_CTX_MODEM_RESPONSE_ERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CtxModemResponseTimeout">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CTX_MODEM_RESPONSE_TIMEOUT']/*"/>	
            <unmanaged>ERROR_CTX_MODEM_RESPONSE_TIMEOUT</unmanaged>	
            <unmanaged-short>ERROR_CTX_MODEM_RESPONSE_TIMEOUT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CtxModemResponseNoCarrier">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CTX_MODEM_RESPONSE_NO_CARRIER']/*"/>	
            <unmanaged>ERROR_CTX_MODEM_RESPONSE_NO_CARRIER</unmanaged>	
            <unmanaged-short>ERROR_CTX_MODEM_RESPONSE_NO_CARRIER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CtxModemResponseNoDialtone">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CTX_MODEM_RESPONSE_NO_DIALTONE']/*"/>	
            <unmanaged>ERROR_CTX_MODEM_RESPONSE_NO_DIALTONE</unmanaged>	
            <unmanaged-short>ERROR_CTX_MODEM_RESPONSE_NO_DIALTONE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CtxModemResponseBusy">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CTX_MODEM_RESPONSE_BUSY']/*"/>	
            <unmanaged>ERROR_CTX_MODEM_RESPONSE_BUSY</unmanaged>	
            <unmanaged-short>ERROR_CTX_MODEM_RESPONSE_BUSY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CtxModemResponseVoice">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CTX_MODEM_RESPONSE_VOICE']/*"/>	
            <unmanaged>ERROR_CTX_MODEM_RESPONSE_VOICE</unmanaged>	
            <unmanaged-short>ERROR_CTX_MODEM_RESPONSE_VOICE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CtxTdError">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CTX_TD_ERROR']/*"/>	
            <unmanaged>ERROR_CTX_TD_ERROR</unmanaged>	
            <unmanaged-short>ERROR_CTX_TD_ERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CtxWinstationNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CTX_WINSTATION_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_CTX_WINSTATION_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_CTX_WINSTATION_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CtxWinstationAlreadyExists">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CTX_WINSTATION_ALREADY_EXISTS']/*"/>	
            <unmanaged>ERROR_CTX_WINSTATION_ALREADY_EXISTS</unmanaged>	
            <unmanaged-short>ERROR_CTX_WINSTATION_ALREADY_EXISTS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CtxWinstationBusy">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CTX_WINSTATION_BUSY']/*"/>	
            <unmanaged>ERROR_CTX_WINSTATION_BUSY</unmanaged>	
            <unmanaged-short>ERROR_CTX_WINSTATION_BUSY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CtxBadVideoMode">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CTX_BAD_VIDEO_MODE']/*"/>	
            <unmanaged>ERROR_CTX_BAD_VIDEO_MODE</unmanaged>	
            <unmanaged-short>ERROR_CTX_BAD_VIDEO_MODE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CtxGraphicsInvalid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CTX_GRAPHICS_INVALID']/*"/>	
            <unmanaged>ERROR_CTX_GRAPHICS_INVALID</unmanaged>	
            <unmanaged-short>ERROR_CTX_GRAPHICS_INVALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CtxLogonDisabled">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CTX_LOGON_DISABLED']/*"/>	
            <unmanaged>ERROR_CTX_LOGON_DISABLED</unmanaged>	
            <unmanaged-short>ERROR_CTX_LOGON_DISABLED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CtxNotConsole">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CTX_NOT_CONSOLE']/*"/>	
            <unmanaged>ERROR_CTX_NOT_CONSOLE</unmanaged>	
            <unmanaged-short>ERROR_CTX_NOT_CONSOLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CtxClientQueryTimeout">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CTX_CLIENT_QUERY_TIMEOUT']/*"/>	
            <unmanaged>ERROR_CTX_CLIENT_QUERY_TIMEOUT</unmanaged>	
            <unmanaged-short>ERROR_CTX_CLIENT_QUERY_TIMEOUT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CtxConsoleDisconnect">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CTX_CONSOLE_DISCONNECT']/*"/>	
            <unmanaged>ERROR_CTX_CONSOLE_DISCONNECT</unmanaged>	
            <unmanaged-short>ERROR_CTX_CONSOLE_DISCONNECT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CtxConsoleConnect">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CTX_CONSOLE_CONNECT']/*"/>	
            <unmanaged>ERROR_CTX_CONSOLE_CONNECT</unmanaged>	
            <unmanaged-short>ERROR_CTX_CONSOLE_CONNECT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CtxShadowDenied">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CTX_SHADOW_DENIED']/*"/>	
            <unmanaged>ERROR_CTX_SHADOW_DENIED</unmanaged>	
            <unmanaged-short>ERROR_CTX_SHADOW_DENIED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CtxWinstationAccessDenied">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CTX_WINSTATION_ACCESS_DENIED']/*"/>	
            <unmanaged>ERROR_CTX_WINSTATION_ACCESS_DENIED</unmanaged>	
            <unmanaged-short>ERROR_CTX_WINSTATION_ACCESS_DENIED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CtxInvalidWd">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CTX_INVALID_WD']/*"/>	
            <unmanaged>ERROR_CTX_INVALID_WD</unmanaged>	
            <unmanaged-short>ERROR_CTX_INVALID_WD</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CtxShadowInvalid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CTX_SHADOW_INVALID']/*"/>	
            <unmanaged>ERROR_CTX_SHADOW_INVALID</unmanaged>	
            <unmanaged-short>ERROR_CTX_SHADOW_INVALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CtxShadowDisabled">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CTX_SHADOW_DISABLED']/*"/>	
            <unmanaged>ERROR_CTX_SHADOW_DISABLED</unmanaged>	
            <unmanaged-short>ERROR_CTX_SHADOW_DISABLED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CtxClientLicenseInUse">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CTX_CLIENT_LICENSE_IN_USE']/*"/>	
            <unmanaged>ERROR_CTX_CLIENT_LICENSE_IN_USE</unmanaged>	
            <unmanaged-short>ERROR_CTX_CLIENT_LICENSE_IN_USE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CtxClientLicenseNotSet">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CTX_CLIENT_LICENSE_NOT_SET']/*"/>	
            <unmanaged>ERROR_CTX_CLIENT_LICENSE_NOT_SET</unmanaged>	
            <unmanaged-short>ERROR_CTX_CLIENT_LICENSE_NOT_SET</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CtxLicenseNotAvailable">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CTX_LICENSE_NOT_AVAILABLE']/*"/>	
            <unmanaged>ERROR_CTX_LICENSE_NOT_AVAILABLE</unmanaged>	
            <unmanaged-short>ERROR_CTX_LICENSE_NOT_AVAILABLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CtxLicenseClientInvalid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CTX_LICENSE_CLIENT_INVALID']/*"/>	
            <unmanaged>ERROR_CTX_LICENSE_CLIENT_INVALID</unmanaged>	
            <unmanaged-short>ERROR_CTX_LICENSE_CLIENT_INVALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CtxLicenseExpired">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CTX_LICENSE_EXPIRED']/*"/>	
            <unmanaged>ERROR_CTX_LICENSE_EXPIRED</unmanaged>	
            <unmanaged-short>ERROR_CTX_LICENSE_EXPIRED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CtxShadowNotRunning">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CTX_SHADOW_NOT_RUNNING']/*"/>	
            <unmanaged>ERROR_CTX_SHADOW_NOT_RUNNING</unmanaged>	
            <unmanaged-short>ERROR_CTX_SHADOW_NOT_RUNNING</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CtxShadowEndedByModeChange">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CTX_SHADOW_ENDED_BY_MODE_CHANGE']/*"/>	
            <unmanaged>ERROR_CTX_SHADOW_ENDED_BY_MODE_CHANGE</unmanaged>	
            <unmanaged-short>ERROR_CTX_SHADOW_ENDED_BY_MODE_CHANGE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ActivationCountExceeded">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_ACTIVATION_COUNT_EXCEEDED']/*"/>	
            <unmanaged>ERROR_ACTIVATION_COUNT_EXCEEDED</unmanaged>	
            <unmanaged-short>ERROR_ACTIVATION_COUNT_EXCEEDED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CtxWinstationsDisabled">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CTX_WINSTATIONS_DISABLED']/*"/>	
            <unmanaged>ERROR_CTX_WINSTATIONS_DISABLED</unmanaged>	
            <unmanaged-short>ERROR_CTX_WINSTATIONS_DISABLED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CtxEncryptionLevelRequired">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CTX_ENCRYPTION_LEVEL_REQUIRED']/*"/>	
            <unmanaged>ERROR_CTX_ENCRYPTION_LEVEL_REQUIRED</unmanaged>	
            <unmanaged-short>ERROR_CTX_ENCRYPTION_LEVEL_REQUIRED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CtxSessionInUse">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CTX_SESSION_IN_USE']/*"/>	
            <unmanaged>ERROR_CTX_SESSION_IN_USE</unmanaged>	
            <unmanaged-short>ERROR_CTX_SESSION_IN_USE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CtxNoForceLogoff">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CTX_NO_FORCE_LOGOFF']/*"/>	
            <unmanaged>ERROR_CTX_NO_FORCE_LOGOFF</unmanaged>	
            <unmanaged-short>ERROR_CTX_NO_FORCE_LOGOFF</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CtxAccountRestriction">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CTX_ACCOUNT_RESTRICTION']/*"/>	
            <unmanaged>ERROR_CTX_ACCOUNT_RESTRICTION</unmanaged>	
            <unmanaged-short>ERROR_CTX_ACCOUNT_RESTRICTION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.RdpProtocolError">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_RDP_PROTOCOL_ERROR']/*"/>	
            <unmanaged>ERROR_RDP_PROTOCOL_ERROR</unmanaged>	
            <unmanaged-short>ERROR_RDP_PROTOCOL_ERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CtxCdmConnect">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CTX_CDM_CONNECT']/*"/>	
            <unmanaged>ERROR_CTX_CDM_CONNECT</unmanaged>	
            <unmanaged-short>ERROR_CTX_CDM_CONNECT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CtxCdmDisconnect">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CTX_CDM_DISCONNECT']/*"/>	
            <unmanaged>ERROR_CTX_CDM_DISCONNECT</unmanaged>	
            <unmanaged-short>ERROR_CTX_CDM_DISCONNECT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CtxSecurityLayerError">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CTX_SECURITY_LAYER_ERROR']/*"/>	
            <unmanaged>ERROR_CTX_SECURITY_LAYER_ERROR</unmanaged>	
            <unmanaged-short>ERROR_CTX_SECURITY_LAYER_ERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TsIncompatibleSessions">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TS_INCOMPATIBLE_SESSIONS']/*"/>	
            <unmanaged>ERROR_TS_INCOMPATIBLE_SESSIONS</unmanaged>	
            <unmanaged-short>ERROR_TS_INCOMPATIBLE_SESSIONS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.TsVideoSubsystemError">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_TS_VIDEO_SUBSYSTEM_ERROR']/*"/>	
            <unmanaged>ERROR_TS_VIDEO_SUBSYSTEM_ERROR</unmanaged>	
            <unmanaged-short>ERROR_TS_VIDEO_SUBSYSTEM_ERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsNotInstalled">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_NOT_INSTALLED']/*"/>	
            <unmanaged>ERROR_DS_NOT_INSTALLED</unmanaged>	
            <unmanaged-short>ERROR_DS_NOT_INSTALLED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsMembershipEvaluatedLocally">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_MEMBERSHIP_EVALUATED_LOCALLY']/*"/>	
            <unmanaged>ERROR_DS_MEMBERSHIP_EVALUATED_LOCALLY</unmanaged>	
            <unmanaged-short>ERROR_DS_MEMBERSHIP_EVALUATED_LOCALLY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsNoAttributeOrValue">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_NO_ATTRIBUTE_OR_VALUE']/*"/>	
            <unmanaged>ERROR_DS_NO_ATTRIBUTE_OR_VALUE</unmanaged>	
            <unmanaged-short>ERROR_DS_NO_ATTRIBUTE_OR_VALUE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsInvalidAttributeSyntax">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_INVALID_ATTRIBUTE_SYNTAX']/*"/>	
            <unmanaged>ERROR_DS_INVALID_ATTRIBUTE_SYNTAX</unmanaged>	
            <unmanaged-short>ERROR_DS_INVALID_ATTRIBUTE_SYNTAX</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsAttributeTypeUndefined">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_ATTRIBUTE_TYPE_UNDEFINED']/*"/>	
            <unmanaged>ERROR_DS_ATTRIBUTE_TYPE_UNDEFINED</unmanaged>	
            <unmanaged-short>ERROR_DS_ATTRIBUTE_TYPE_UNDEFINED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsAttributeOrValueExists">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_ATTRIBUTE_OR_VALUE_EXISTS']/*"/>	
            <unmanaged>ERROR_DS_ATTRIBUTE_OR_VALUE_EXISTS</unmanaged>	
            <unmanaged-short>ERROR_DS_ATTRIBUTE_OR_VALUE_EXISTS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsBusy">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_BUSY']/*"/>	
            <unmanaged>ERROR_DS_BUSY</unmanaged>	
            <unmanaged-short>ERROR_DS_BUSY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsUnavailable">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_UNAVAILABLE']/*"/>	
            <unmanaged>ERROR_DS_UNAVAILABLE</unmanaged>	
            <unmanaged-short>ERROR_DS_UNAVAILABLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsNoRidsAllocated">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_NO_RIDS_ALLOCATED']/*"/>	
            <unmanaged>ERROR_DS_NO_RIDS_ALLOCATED</unmanaged>	
            <unmanaged-short>ERROR_DS_NO_RIDS_ALLOCATED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsNoMoreRids">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_NO_MORE_RIDS']/*"/>	
            <unmanaged>ERROR_DS_NO_MORE_RIDS</unmanaged>	
            <unmanaged-short>ERROR_DS_NO_MORE_RIDS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsIncorrectRoleOwner">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_INCORRECT_ROLE_OWNER']/*"/>	
            <unmanaged>ERROR_DS_INCORRECT_ROLE_OWNER</unmanaged>	
            <unmanaged-short>ERROR_DS_INCORRECT_ROLE_OWNER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsRidmgrInitError">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_RIDMGR_INIT_ERROR']/*"/>	
            <unmanaged>ERROR_DS_RIDMGR_INIT_ERROR</unmanaged>	
            <unmanaged-short>ERROR_DS_RIDMGR_INIT_ERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsObjClassViolation">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_OBJ_CLASS_VIOLATION']/*"/>	
            <unmanaged>ERROR_DS_OBJ_CLASS_VIOLATION</unmanaged>	
            <unmanaged-short>ERROR_DS_OBJ_CLASS_VIOLATION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsCantOnNonLeaf">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_CANT_ON_NON_LEAF']/*"/>	
            <unmanaged>ERROR_DS_CANT_ON_NON_LEAF</unmanaged>	
            <unmanaged-short>ERROR_DS_CANT_ON_NON_LEAF</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsCantOnRdn">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_CANT_ON_RDN']/*"/>	
            <unmanaged>ERROR_DS_CANT_ON_RDN</unmanaged>	
            <unmanaged-short>ERROR_DS_CANT_ON_RDN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsCantModObjClass">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_CANT_MOD_OBJ_CLASS']/*"/>	
            <unmanaged>ERROR_DS_CANT_MOD_OBJ_CLASS</unmanaged>	
            <unmanaged-short>ERROR_DS_CANT_MOD_OBJ_CLASS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsCrossDomMoveError">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_CROSS_DOM_MOVE_ERROR']/*"/>	
            <unmanaged>ERROR_DS_CROSS_DOM_MOVE_ERROR</unmanaged>	
            <unmanaged-short>ERROR_DS_CROSS_DOM_MOVE_ERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsGcNotAvailable">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_GC_NOT_AVAILABLE']/*"/>	
            <unmanaged>ERROR_DS_GC_NOT_AVAILABLE</unmanaged>	
            <unmanaged-short>ERROR_DS_GC_NOT_AVAILABLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SharedPolicy">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SHARED_POLICY']/*"/>	
            <unmanaged>ERROR_SHARED_POLICY</unmanaged>	
            <unmanaged-short>ERROR_SHARED_POLICY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PolicyObjectNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_POLICY_OBJECT_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_POLICY_OBJECT_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_POLICY_OBJECT_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PolicyOnlyInDs">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_POLICY_ONLY_IN_DS']/*"/>	
            <unmanaged>ERROR_POLICY_ONLY_IN_DS</unmanaged>	
            <unmanaged-short>ERROR_POLICY_ONLY_IN_DS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PromotionActive">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PROMOTION_ACTIVE']/*"/>	
            <unmanaged>ERROR_PROMOTION_ACTIVE</unmanaged>	
            <unmanaged-short>ERROR_PROMOTION_ACTIVE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoPromotionActive">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_PROMOTION_ACTIVE']/*"/>	
            <unmanaged>ERROR_NO_PROMOTION_ACTIVE</unmanaged>	
            <unmanaged-short>ERROR_NO_PROMOTION_ACTIVE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsOperationsError">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_OPERATIONS_ERROR']/*"/>	
            <unmanaged>ERROR_DS_OPERATIONS_ERROR</unmanaged>	
            <unmanaged-short>ERROR_DS_OPERATIONS_ERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsProtocolError">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_PROTOCOL_ERROR']/*"/>	
            <unmanaged>ERROR_DS_PROTOCOL_ERROR</unmanaged>	
            <unmanaged-short>ERROR_DS_PROTOCOL_ERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsTimelimitExceeded">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_TIMELIMIT_EXCEEDED']/*"/>	
            <unmanaged>ERROR_DS_TIMELIMIT_EXCEEDED</unmanaged>	
            <unmanaged-short>ERROR_DS_TIMELIMIT_EXCEEDED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsSizelimitExceeded">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_SIZELIMIT_EXCEEDED']/*"/>	
            <unmanaged>ERROR_DS_SIZELIMIT_EXCEEDED</unmanaged>	
            <unmanaged-short>ERROR_DS_SIZELIMIT_EXCEEDED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsAdminLimitExceeded">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_ADMIN_LIMIT_EXCEEDED']/*"/>	
            <unmanaged>ERROR_DS_ADMIN_LIMIT_EXCEEDED</unmanaged>	
            <unmanaged-short>ERROR_DS_ADMIN_LIMIT_EXCEEDED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsCompareFalse">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_COMPARE_FALSE']/*"/>	
            <unmanaged>ERROR_DS_COMPARE_FALSE</unmanaged>	
            <unmanaged-short>ERROR_DS_COMPARE_FALSE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsCompareTrue">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_COMPARE_TRUE']/*"/>	
            <unmanaged>ERROR_DS_COMPARE_TRUE</unmanaged>	
            <unmanaged-short>ERROR_DS_COMPARE_TRUE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsAuthMethodNotSupported">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_AUTH_METHOD_NOT_SUPPORTED']/*"/>	
            <unmanaged>ERROR_DS_AUTH_METHOD_NOT_SUPPORTED</unmanaged>	
            <unmanaged-short>ERROR_DS_AUTH_METHOD_NOT_SUPPORTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsStrongAuthRequired">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_STRONG_AUTH_REQUIRED']/*"/>	
            <unmanaged>ERROR_DS_STRONG_AUTH_REQUIRED</unmanaged>	
            <unmanaged-short>ERROR_DS_STRONG_AUTH_REQUIRED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsInappropriateAuth">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_INAPPROPRIATE_AUTH']/*"/>	
            <unmanaged>ERROR_DS_INAPPROPRIATE_AUTH</unmanaged>	
            <unmanaged-short>ERROR_DS_INAPPROPRIATE_AUTH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsAuthUnknown">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_AUTH_UNKNOWN']/*"/>	
            <unmanaged>ERROR_DS_AUTH_UNKNOWN</unmanaged>	
            <unmanaged-short>ERROR_DS_AUTH_UNKNOWN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsReferral">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_REFERRAL']/*"/>	
            <unmanaged>ERROR_DS_REFERRAL</unmanaged>	
            <unmanaged-short>ERROR_DS_REFERRAL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsUnavailableCritExtension">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_UNAVAILABLE_CRIT_EXTENSION']/*"/>	
            <unmanaged>ERROR_DS_UNAVAILABLE_CRIT_EXTENSION</unmanaged>	
            <unmanaged-short>ERROR_DS_UNAVAILABLE_CRIT_EXTENSION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsConfidentialityRequired">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_CONFIDENTIALITY_REQUIRED']/*"/>	
            <unmanaged>ERROR_DS_CONFIDENTIALITY_REQUIRED</unmanaged>	
            <unmanaged-short>ERROR_DS_CONFIDENTIALITY_REQUIRED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsInappropriateMatching">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_INAPPROPRIATE_MATCHING']/*"/>	
            <unmanaged>ERROR_DS_INAPPROPRIATE_MATCHING</unmanaged>	
            <unmanaged-short>ERROR_DS_INAPPROPRIATE_MATCHING</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsConstraintViolation">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_CONSTRAINT_VIOLATION']/*"/>	
            <unmanaged>ERROR_DS_CONSTRAINT_VIOLATION</unmanaged>	
            <unmanaged-short>ERROR_DS_CONSTRAINT_VIOLATION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsNoSuchObject">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_NO_SUCH_OBJECT']/*"/>	
            <unmanaged>ERROR_DS_NO_SUCH_OBJECT</unmanaged>	
            <unmanaged-short>ERROR_DS_NO_SUCH_OBJECT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsAliasProblem">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_ALIAS_PROBLEM']/*"/>	
            <unmanaged>ERROR_DS_ALIAS_PROBLEM</unmanaged>	
            <unmanaged-short>ERROR_DS_ALIAS_PROBLEM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsInvalidDnSyntax">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_INVALID_DN_SYNTAX']/*"/>	
            <unmanaged>ERROR_DS_INVALID_DN_SYNTAX</unmanaged>	
            <unmanaged-short>ERROR_DS_INVALID_DN_SYNTAX</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsIsLeaf">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_IS_LEAF']/*"/>	
            <unmanaged>ERROR_DS_IS_LEAF</unmanaged>	
            <unmanaged-short>ERROR_DS_IS_LEAF</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsAliasDerefProblem">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_ALIAS_DEREF_PROBLEM']/*"/>	
            <unmanaged>ERROR_DS_ALIAS_DEREF_PROBLEM</unmanaged>	
            <unmanaged-short>ERROR_DS_ALIAS_DEREF_PROBLEM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsUnwillingToPerform">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_UNWILLING_TO_PERFORM']/*"/>	
            <unmanaged>ERROR_DS_UNWILLING_TO_PERFORM</unmanaged>	
            <unmanaged-short>ERROR_DS_UNWILLING_TO_PERFORM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsLoopDetect">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_LOOP_DETECT']/*"/>	
            <unmanaged>ERROR_DS_LOOP_DETECT</unmanaged>	
            <unmanaged-short>ERROR_DS_LOOP_DETECT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsNamingViolation">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_NAMING_VIOLATION']/*"/>	
            <unmanaged>ERROR_DS_NAMING_VIOLATION</unmanaged>	
            <unmanaged-short>ERROR_DS_NAMING_VIOLATION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsObjectResultsTooLarge">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_OBJECT_RESULTS_TOO_LARGE']/*"/>	
            <unmanaged>ERROR_DS_OBJECT_RESULTS_TOO_LARGE</unmanaged>	
            <unmanaged-short>ERROR_DS_OBJECT_RESULTS_TOO_LARGE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsAffectsMultipleDsas">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_AFFECTS_MULTIPLE_DSAS']/*"/>	
            <unmanaged>ERROR_DS_AFFECTS_MULTIPLE_DSAS</unmanaged>	
            <unmanaged-short>ERROR_DS_AFFECTS_MULTIPLE_DSAS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsServerDown">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_SERVER_DOWN']/*"/>	
            <unmanaged>ERROR_DS_SERVER_DOWN</unmanaged>	
            <unmanaged-short>ERROR_DS_SERVER_DOWN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsLocalError">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_LOCAL_ERROR']/*"/>	
            <unmanaged>ERROR_DS_LOCAL_ERROR</unmanaged>	
            <unmanaged-short>ERROR_DS_LOCAL_ERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsEncodingError">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_ENCODING_ERROR']/*"/>	
            <unmanaged>ERROR_DS_ENCODING_ERROR</unmanaged>	
            <unmanaged-short>ERROR_DS_ENCODING_ERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDecodingError">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DECODING_ERROR']/*"/>	
            <unmanaged>ERROR_DS_DECODING_ERROR</unmanaged>	
            <unmanaged-short>ERROR_DS_DECODING_ERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsFilterUnknown">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_FILTER_UNKNOWN']/*"/>	
            <unmanaged>ERROR_DS_FILTER_UNKNOWN</unmanaged>	
            <unmanaged-short>ERROR_DS_FILTER_UNKNOWN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsParamError">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_PARAM_ERROR']/*"/>	
            <unmanaged>ERROR_DS_PARAM_ERROR</unmanaged>	
            <unmanaged-short>ERROR_DS_PARAM_ERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsNotSupported">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_NOT_SUPPORTED']/*"/>	
            <unmanaged>ERROR_DS_NOT_SUPPORTED</unmanaged>	
            <unmanaged-short>ERROR_DS_NOT_SUPPORTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsNoResultsReturned">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_NO_RESULTS_RETURNED']/*"/>	
            <unmanaged>ERROR_DS_NO_RESULTS_RETURNED</unmanaged>	
            <unmanaged-short>ERROR_DS_NO_RESULTS_RETURNED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsControlNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_CONTROL_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_DS_CONTROL_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_DS_CONTROL_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsClientLoop">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_CLIENT_LOOP']/*"/>	
            <unmanaged>ERROR_DS_CLIENT_LOOP</unmanaged>	
            <unmanaged-short>ERROR_DS_CLIENT_LOOP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsReferralLimitExceeded">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_REFERRAL_LIMIT_EXCEEDED']/*"/>	
            <unmanaged>ERROR_DS_REFERRAL_LIMIT_EXCEEDED</unmanaged>	
            <unmanaged-short>ERROR_DS_REFERRAL_LIMIT_EXCEEDED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsSortControlMissing">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_SORT_CONTROL_MISSING']/*"/>	
            <unmanaged>ERROR_DS_SORT_CONTROL_MISSING</unmanaged>	
            <unmanaged-short>ERROR_DS_SORT_CONTROL_MISSING</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsOffsetRangeError">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_OFFSET_RANGE_ERROR']/*"/>	
            <unmanaged>ERROR_DS_OFFSET_RANGE_ERROR</unmanaged>	
            <unmanaged-short>ERROR_DS_OFFSET_RANGE_ERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsRidmgrDisabled">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_RIDMGR_DISABLED']/*"/>	
            <unmanaged>ERROR_DS_RIDMGR_DISABLED</unmanaged>	
            <unmanaged-short>ERROR_DS_RIDMGR_DISABLED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsRootMustBeNc">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_ROOT_MUST_BE_NC']/*"/>	
            <unmanaged>ERROR_DS_ROOT_MUST_BE_NC</unmanaged>	
            <unmanaged-short>ERROR_DS_ROOT_MUST_BE_NC</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsAddReplicaInhibited">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_ADD_REPLICA_INHIBITED']/*"/>	
            <unmanaged>ERROR_DS_ADD_REPLICA_INHIBITED</unmanaged>	
            <unmanaged-short>ERROR_DS_ADD_REPLICA_INHIBITED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsAttNotDefInSchema">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_ATT_NOT_DEF_IN_SCHEMA']/*"/>	
            <unmanaged>ERROR_DS_ATT_NOT_DEF_IN_SCHEMA</unmanaged>	
            <unmanaged-short>ERROR_DS_ATT_NOT_DEF_IN_SCHEMA</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsMaximumObjSizeExceeded">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_MAX_OBJ_SIZE_EXCEEDED']/*"/>	
            <unmanaged>ERROR_DS_MAX_OBJ_SIZE_EXCEEDED</unmanaged>	
            <unmanaged-short>ERROR_DS_MAX_OBJ_SIZE_EXCEEDED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsObjStringNameExists">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_OBJ_STRING_NAME_EXISTS']/*"/>	
            <unmanaged>ERROR_DS_OBJ_STRING_NAME_EXISTS</unmanaged>	
            <unmanaged-short>ERROR_DS_OBJ_STRING_NAME_EXISTS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsNoRdnDefinedInSchema">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_NO_RDN_DEFINED_IN_SCHEMA']/*"/>	
            <unmanaged>ERROR_DS_NO_RDN_DEFINED_IN_SCHEMA</unmanaged>	
            <unmanaged-short>ERROR_DS_NO_RDN_DEFINED_IN_SCHEMA</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsRdnDoesntMatchSchema">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_RDN_DOESNT_MATCH_SCHEMA']/*"/>	
            <unmanaged>ERROR_DS_RDN_DOESNT_MATCH_SCHEMA</unmanaged>	
            <unmanaged-short>ERROR_DS_RDN_DOESNT_MATCH_SCHEMA</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsNoRequestedAttsFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_NO_REQUESTED_ATTS_FOUND']/*"/>	
            <unmanaged>ERROR_DS_NO_REQUESTED_ATTS_FOUND</unmanaged>	
            <unmanaged-short>ERROR_DS_NO_REQUESTED_ATTS_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsUserBufferToSmall">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_USER_BUFFER_TO_SMALL']/*"/>	
            <unmanaged>ERROR_DS_USER_BUFFER_TO_SMALL</unmanaged>	
            <unmanaged-short>ERROR_DS_USER_BUFFER_TO_SMALL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsAttIsNotOnObj">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_ATT_IS_NOT_ON_OBJ']/*"/>	
            <unmanaged>ERROR_DS_ATT_IS_NOT_ON_OBJ</unmanaged>	
            <unmanaged-short>ERROR_DS_ATT_IS_NOT_ON_OBJ</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsIllegalModOperation">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_ILLEGAL_MOD_OPERATION']/*"/>	
            <unmanaged>ERROR_DS_ILLEGAL_MOD_OPERATION</unmanaged>	
            <unmanaged-short>ERROR_DS_ILLEGAL_MOD_OPERATION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsObjTooLarge">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_OBJ_TOO_LARGE']/*"/>	
            <unmanaged>ERROR_DS_OBJ_TOO_LARGE</unmanaged>	
            <unmanaged-short>ERROR_DS_OBJ_TOO_LARGE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsBadInstanceType">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_BAD_INSTANCE_TYPE']/*"/>	
            <unmanaged>ERROR_DS_BAD_INSTANCE_TYPE</unmanaged>	
            <unmanaged-short>ERROR_DS_BAD_INSTANCE_TYPE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsMasterdsaRequired">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_MASTERDSA_REQUIRED']/*"/>	
            <unmanaged>ERROR_DS_MASTERDSA_REQUIRED</unmanaged>	
            <unmanaged-short>ERROR_DS_MASTERDSA_REQUIRED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsObjectClassRequired">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_OBJECT_CLASS_REQUIRED']/*"/>	
            <unmanaged>ERROR_DS_OBJECT_CLASS_REQUIRED</unmanaged>	
            <unmanaged-short>ERROR_DS_OBJECT_CLASS_REQUIRED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsMissingRequiredAtt">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_MISSING_REQUIRED_ATT']/*"/>	
            <unmanaged>ERROR_DS_MISSING_REQUIRED_ATT</unmanaged>	
            <unmanaged-short>ERROR_DS_MISSING_REQUIRED_ATT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsAttNotDefForClass">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_ATT_NOT_DEF_FOR_CLASS']/*"/>	
            <unmanaged>ERROR_DS_ATT_NOT_DEF_FOR_CLASS</unmanaged>	
            <unmanaged-short>ERROR_DS_ATT_NOT_DEF_FOR_CLASS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsAttAlreadyExists">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_ATT_ALREADY_EXISTS']/*"/>	
            <unmanaged>ERROR_DS_ATT_ALREADY_EXISTS</unmanaged>	
            <unmanaged-short>ERROR_DS_ATT_ALREADY_EXISTS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsCantAddAttValues">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_CANT_ADD_ATT_VALUES']/*"/>	
            <unmanaged>ERROR_DS_CANT_ADD_ATT_VALUES</unmanaged>	
            <unmanaged-short>ERROR_DS_CANT_ADD_ATT_VALUES</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsSingleValueConstraint">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_SINGLE_VALUE_CONSTRAINT']/*"/>	
            <unmanaged>ERROR_DS_SINGLE_VALUE_CONSTRAINT</unmanaged>	
            <unmanaged-short>ERROR_DS_SINGLE_VALUE_CONSTRAINT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsRangeConstraint">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_RANGE_CONSTRAINT']/*"/>	
            <unmanaged>ERROR_DS_RANGE_CONSTRAINT</unmanaged>	
            <unmanaged-short>ERROR_DS_RANGE_CONSTRAINT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsAttValAlreadyExists">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_ATT_VAL_ALREADY_EXISTS']/*"/>	
            <unmanaged>ERROR_DS_ATT_VAL_ALREADY_EXISTS</unmanaged>	
            <unmanaged-short>ERROR_DS_ATT_VAL_ALREADY_EXISTS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsCantRemMissingAtt">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_CANT_REM_MISSING_ATT']/*"/>	
            <unmanaged>ERROR_DS_CANT_REM_MISSING_ATT</unmanaged>	
            <unmanaged-short>ERROR_DS_CANT_REM_MISSING_ATT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsCantRemMissingAttVal">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_CANT_REM_MISSING_ATT_VAL']/*"/>	
            <unmanaged>ERROR_DS_CANT_REM_MISSING_ATT_VAL</unmanaged>	
            <unmanaged-short>ERROR_DS_CANT_REM_MISSING_ATT_VAL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsRootCantBeSubref">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_ROOT_CANT_BE_SUBREF']/*"/>	
            <unmanaged>ERROR_DS_ROOT_CANT_BE_SUBREF</unmanaged>	
            <unmanaged-short>ERROR_DS_ROOT_CANT_BE_SUBREF</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsNoChaining">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_NO_CHAINING']/*"/>	
            <unmanaged>ERROR_DS_NO_CHAINING</unmanaged>	
            <unmanaged-short>ERROR_DS_NO_CHAINING</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsNoChainedEval">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_NO_CHAINED_EVAL']/*"/>	
            <unmanaged>ERROR_DS_NO_CHAINED_EVAL</unmanaged>	
            <unmanaged-short>ERROR_DS_NO_CHAINED_EVAL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsNoParentObject">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_NO_PARENT_OBJECT']/*"/>	
            <unmanaged>ERROR_DS_NO_PARENT_OBJECT</unmanaged>	
            <unmanaged-short>ERROR_DS_NO_PARENT_OBJECT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsParentIsAnAlias">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_PARENT_IS_AN_ALIAS']/*"/>	
            <unmanaged>ERROR_DS_PARENT_IS_AN_ALIAS</unmanaged>	
            <unmanaged-short>ERROR_DS_PARENT_IS_AN_ALIAS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsCantMixMasterAndReps">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_CANT_MIX_MASTER_AND_REPS']/*"/>	
            <unmanaged>ERROR_DS_CANT_MIX_MASTER_AND_REPS</unmanaged>	
            <unmanaged-short>ERROR_DS_CANT_MIX_MASTER_AND_REPS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsChildrenExist">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_CHILDREN_EXIST']/*"/>	
            <unmanaged>ERROR_DS_CHILDREN_EXIST</unmanaged>	
            <unmanaged-short>ERROR_DS_CHILDREN_EXIST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsObjNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_OBJ_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_DS_OBJ_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_DS_OBJ_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsAliasedObjMissing">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_ALIASED_OBJ_MISSING']/*"/>	
            <unmanaged>ERROR_DS_ALIASED_OBJ_MISSING</unmanaged>	
            <unmanaged-short>ERROR_DS_ALIASED_OBJ_MISSING</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsBadNameSyntax">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_BAD_NAME_SYNTAX']/*"/>	
            <unmanaged>ERROR_DS_BAD_NAME_SYNTAX</unmanaged>	
            <unmanaged-short>ERROR_DS_BAD_NAME_SYNTAX</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsAliasPointsToAlias">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_ALIAS_POINTS_TO_ALIAS']/*"/>	
            <unmanaged>ERROR_DS_ALIAS_POINTS_TO_ALIAS</unmanaged>	
            <unmanaged-short>ERROR_DS_ALIAS_POINTS_TO_ALIAS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsCantDerefAlias">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_CANT_DEREF_ALIAS']/*"/>	
            <unmanaged>ERROR_DS_CANT_DEREF_ALIAS</unmanaged>	
            <unmanaged-short>ERROR_DS_CANT_DEREF_ALIAS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsOutOfScope">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_OUT_OF_SCOPE']/*"/>	
            <unmanaged>ERROR_DS_OUT_OF_SCOPE</unmanaged>	
            <unmanaged-short>ERROR_DS_OUT_OF_SCOPE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsObjectBeingRemoved">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_OBJECT_BEING_REMOVED']/*"/>	
            <unmanaged>ERROR_DS_OBJECT_BEING_REMOVED</unmanaged>	
            <unmanaged-short>ERROR_DS_OBJECT_BEING_REMOVED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsCantDeleteDsaObj">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_CANT_DELETE_DSA_OBJ']/*"/>	
            <unmanaged>ERROR_DS_CANT_DELETE_DSA_OBJ</unmanaged>	
            <unmanaged-short>ERROR_DS_CANT_DELETE_DSA_OBJ</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsGenericError">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_GENERIC_ERROR']/*"/>	
            <unmanaged>ERROR_DS_GENERIC_ERROR</unmanaged>	
            <unmanaged-short>ERROR_DS_GENERIC_ERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDsaMustBeIntMaster">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DSA_MUST_BE_INT_MASTER']/*"/>	
            <unmanaged>ERROR_DS_DSA_MUST_BE_INT_MASTER</unmanaged>	
            <unmanaged-short>ERROR_DS_DSA_MUST_BE_INT_MASTER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsClassNotDsa">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_CLASS_NOT_DSA']/*"/>	
            <unmanaged>ERROR_DS_CLASS_NOT_DSA</unmanaged>	
            <unmanaged-short>ERROR_DS_CLASS_NOT_DSA</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsInsuffAccessRights">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_INSUFF_ACCESS_RIGHTS']/*"/>	
            <unmanaged>ERROR_DS_INSUFF_ACCESS_RIGHTS</unmanaged>	
            <unmanaged-short>ERROR_DS_INSUFF_ACCESS_RIGHTS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsIllegalSuperior">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_ILLEGAL_SUPERIOR']/*"/>	
            <unmanaged>ERROR_DS_ILLEGAL_SUPERIOR</unmanaged>	
            <unmanaged-short>ERROR_DS_ILLEGAL_SUPERIOR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsAttributeOwnedBySam">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_ATTRIBUTE_OWNED_BY_SAM']/*"/>	
            <unmanaged>ERROR_DS_ATTRIBUTE_OWNED_BY_SAM</unmanaged>	
            <unmanaged-short>ERROR_DS_ATTRIBUTE_OWNED_BY_SAM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsNameTooManyParts">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_NAME_TOO_MANY_PARTS']/*"/>	
            <unmanaged>ERROR_DS_NAME_TOO_MANY_PARTS</unmanaged>	
            <unmanaged-short>ERROR_DS_NAME_TOO_MANY_PARTS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsNameTooLong">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_NAME_TOO_LONG']/*"/>	
            <unmanaged>ERROR_DS_NAME_TOO_LONG</unmanaged>	
            <unmanaged-short>ERROR_DS_NAME_TOO_LONG</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsNameValueTooLong">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_NAME_VALUE_TOO_LONG']/*"/>	
            <unmanaged>ERROR_DS_NAME_VALUE_TOO_LONG</unmanaged>	
            <unmanaged-short>ERROR_DS_NAME_VALUE_TOO_LONG</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsNameUnparseable">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_NAME_UNPARSEABLE']/*"/>	
            <unmanaged>ERROR_DS_NAME_UNPARSEABLE</unmanaged>	
            <unmanaged-short>ERROR_DS_NAME_UNPARSEABLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsNameTypeUnknown">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_NAME_TYPE_UNKNOWN']/*"/>	
            <unmanaged>ERROR_DS_NAME_TYPE_UNKNOWN</unmanaged>	
            <unmanaged-short>ERROR_DS_NAME_TYPE_UNKNOWN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsNotAnObject">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_NOT_AN_OBJECT']/*"/>	
            <unmanaged>ERROR_DS_NOT_AN_OBJECT</unmanaged>	
            <unmanaged-short>ERROR_DS_NOT_AN_OBJECT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsSecDescriptionTooShort">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_SEC_DESC_TOO_SHORT']/*"/>	
            <unmanaged>ERROR_DS_SEC_DESC_TOO_SHORT</unmanaged>	
            <unmanaged-short>ERROR_DS_SEC_DESC_TOO_SHORT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsSecDescriptionInvalid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_SEC_DESC_INVALID']/*"/>	
            <unmanaged>ERROR_DS_SEC_DESC_INVALID</unmanaged>	
            <unmanaged-short>ERROR_DS_SEC_DESC_INVALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsNoDeletedName">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_NO_DELETED_NAME']/*"/>	
            <unmanaged>ERROR_DS_NO_DELETED_NAME</unmanaged>	
            <unmanaged-short>ERROR_DS_NO_DELETED_NAME</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsSubrefMustHaveParent">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_SUBREF_MUST_HAVE_PARENT']/*"/>	
            <unmanaged>ERROR_DS_SUBREF_MUST_HAVE_PARENT</unmanaged>	
            <unmanaged-short>ERROR_DS_SUBREF_MUST_HAVE_PARENT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsNcnameMustBeNc">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_NCNAME_MUST_BE_NC']/*"/>	
            <unmanaged>ERROR_DS_NCNAME_MUST_BE_NC</unmanaged>	
            <unmanaged-short>ERROR_DS_NCNAME_MUST_BE_NC</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsCantAddSystemOnly">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_CANT_ADD_SYSTEM_ONLY']/*"/>	
            <unmanaged>ERROR_DS_CANT_ADD_SYSTEM_ONLY</unmanaged>	
            <unmanaged-short>ERROR_DS_CANT_ADD_SYSTEM_ONLY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsClassMustBeConcrete">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_CLASS_MUST_BE_CONCRETE']/*"/>	
            <unmanaged>ERROR_DS_CLASS_MUST_BE_CONCRETE</unmanaged>	
            <unmanaged-short>ERROR_DS_CLASS_MUST_BE_CONCRETE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsInvalidDmd">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_INVALID_DMD']/*"/>	
            <unmanaged>ERROR_DS_INVALID_DMD</unmanaged>	
            <unmanaged-short>ERROR_DS_INVALID_DMD</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsObjGuidExists">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_OBJ_GUID_EXISTS']/*"/>	
            <unmanaged>ERROR_DS_OBJ_GUID_EXISTS</unmanaged>	
            <unmanaged-short>ERROR_DS_OBJ_GUID_EXISTS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsNotOnBacklink">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_NOT_ON_BACKLINK']/*"/>	
            <unmanaged>ERROR_DS_NOT_ON_BACKLINK</unmanaged>	
            <unmanaged-short>ERROR_DS_NOT_ON_BACKLINK</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsNoCrossrefForNc">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_NO_CROSSREF_FOR_NC']/*"/>	
            <unmanaged>ERROR_DS_NO_CROSSREF_FOR_NC</unmanaged>	
            <unmanaged-short>ERROR_DS_NO_CROSSREF_FOR_NC</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsShuttingDown">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_SHUTTING_DOWN']/*"/>	
            <unmanaged>ERROR_DS_SHUTTING_DOWN</unmanaged>	
            <unmanaged-short>ERROR_DS_SHUTTING_DOWN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsUnknownOperation">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_UNKNOWN_OPERATION']/*"/>	
            <unmanaged>ERROR_DS_UNKNOWN_OPERATION</unmanaged>	
            <unmanaged-short>ERROR_DS_UNKNOWN_OPERATION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsInvalidRoleOwner">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_INVALID_ROLE_OWNER']/*"/>	
            <unmanaged>ERROR_DS_INVALID_ROLE_OWNER</unmanaged>	
            <unmanaged-short>ERROR_DS_INVALID_ROLE_OWNER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsCouldntContactFsmo">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_COULDNT_CONTACT_FSMO']/*"/>	
            <unmanaged>ERROR_DS_COULDNT_CONTACT_FSMO</unmanaged>	
            <unmanaged-short>ERROR_DS_COULDNT_CONTACT_FSMO</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsCrossNcDnRename">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_CROSS_NC_DN_RENAME']/*"/>	
            <unmanaged>ERROR_DS_CROSS_NC_DN_RENAME</unmanaged>	
            <unmanaged-short>ERROR_DS_CROSS_NC_DN_RENAME</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsCantModSystemOnly">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_CANT_MOD_SYSTEM_ONLY']/*"/>	
            <unmanaged>ERROR_DS_CANT_MOD_SYSTEM_ONLY</unmanaged>	
            <unmanaged-short>ERROR_DS_CANT_MOD_SYSTEM_ONLY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsReplicatorOnly">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_REPLICATOR_ONLY']/*"/>	
            <unmanaged>ERROR_DS_REPLICATOR_ONLY</unmanaged>	
            <unmanaged-short>ERROR_DS_REPLICATOR_ONLY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsObjClassNotDefined">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_OBJ_CLASS_NOT_DEFINED']/*"/>	
            <unmanaged>ERROR_DS_OBJ_CLASS_NOT_DEFINED</unmanaged>	
            <unmanaged-short>ERROR_DS_OBJ_CLASS_NOT_DEFINED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsObjClassNotSubclass">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_OBJ_CLASS_NOT_SUBCLASS']/*"/>	
            <unmanaged>ERROR_DS_OBJ_CLASS_NOT_SUBCLASS</unmanaged>	
            <unmanaged-short>ERROR_DS_OBJ_CLASS_NOT_SUBCLASS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsNameReferenceInvalid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_NAME_REFERENCE_INVALID']/*"/>	
            <unmanaged>ERROR_DS_NAME_REFERENCE_INVALID</unmanaged>	
            <unmanaged-short>ERROR_DS_NAME_REFERENCE_INVALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsCrossRefExists">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_CROSS_REF_EXISTS']/*"/>	
            <unmanaged>ERROR_DS_CROSS_REF_EXISTS</unmanaged>	
            <unmanaged-short>ERROR_DS_CROSS_REF_EXISTS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsCantDelMasterCrossref">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_CANT_DEL_MASTER_CROSSREF']/*"/>	
            <unmanaged>ERROR_DS_CANT_DEL_MASTER_CROSSREF</unmanaged>	
            <unmanaged-short>ERROR_DS_CANT_DEL_MASTER_CROSSREF</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsSubtreeNotifyNotNcHead">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_SUBTREE_NOTIFY_NOT_NC_HEAD']/*"/>	
            <unmanaged>ERROR_DS_SUBTREE_NOTIFY_NOT_NC_HEAD</unmanaged>	
            <unmanaged-short>ERROR_DS_SUBTREE_NOTIFY_NOT_NC_HEAD</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsNotifyFilterTooComplex">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_NOTIFY_FILTER_TOO_COMPLEX']/*"/>	
            <unmanaged>ERROR_DS_NOTIFY_FILTER_TOO_COMPLEX</unmanaged>	
            <unmanaged-short>ERROR_DS_NOTIFY_FILTER_TOO_COMPLEX</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDupRdn">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DUP_RDN']/*"/>	
            <unmanaged>ERROR_DS_DUP_RDN</unmanaged>	
            <unmanaged-short>ERROR_DS_DUP_RDN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDupOid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DUP_OID']/*"/>	
            <unmanaged>ERROR_DS_DUP_OID</unmanaged>	
            <unmanaged-short>ERROR_DS_DUP_OID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDupMapiId">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DUP_MAPI_ID']/*"/>	
            <unmanaged>ERROR_DS_DUP_MAPI_ID</unmanaged>	
            <unmanaged-short>ERROR_DS_DUP_MAPI_ID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDupSchemaIdGuid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DUP_SCHEMA_ID_GUID']/*"/>	
            <unmanaged>ERROR_DS_DUP_SCHEMA_ID_GUID</unmanaged>	
            <unmanaged-short>ERROR_DS_DUP_SCHEMA_ID_GUID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDupLdapDisplayName">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DUP_LDAP_DISPLAY_NAME']/*"/>	
            <unmanaged>ERROR_DS_DUP_LDAP_DISPLAY_NAME</unmanaged>	
            <unmanaged-short>ERROR_DS_DUP_LDAP_DISPLAY_NAME</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsSemanticAttTest">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_SEMANTIC_ATT_TEST']/*"/>	
            <unmanaged>ERROR_DS_SEMANTIC_ATT_TEST</unmanaged>	
            <unmanaged-short>ERROR_DS_SEMANTIC_ATT_TEST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsSyntaxMismatch">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_SYNTAX_MISMATCH']/*"/>	
            <unmanaged>ERROR_DS_SYNTAX_MISMATCH</unmanaged>	
            <unmanaged-short>ERROR_DS_SYNTAX_MISMATCH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsExistsInMustHave">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_EXISTS_IN_MUST_HAVE']/*"/>	
            <unmanaged>ERROR_DS_EXISTS_IN_MUST_HAVE</unmanaged>	
            <unmanaged-short>ERROR_DS_EXISTS_IN_MUST_HAVE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsExistsInMayHave">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_EXISTS_IN_MAY_HAVE']/*"/>	
            <unmanaged>ERROR_DS_EXISTS_IN_MAY_HAVE</unmanaged>	
            <unmanaged-short>ERROR_DS_EXISTS_IN_MAY_HAVE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsNonexistentMayHave">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_NONEXISTENT_MAY_HAVE']/*"/>	
            <unmanaged>ERROR_DS_NONEXISTENT_MAY_HAVE</unmanaged>	
            <unmanaged-short>ERROR_DS_NONEXISTENT_MAY_HAVE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsNonexistentMustHave">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_NONEXISTENT_MUST_HAVE']/*"/>	
            <unmanaged>ERROR_DS_NONEXISTENT_MUST_HAVE</unmanaged>	
            <unmanaged-short>ERROR_DS_NONEXISTENT_MUST_HAVE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsAuxClsTestFail">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_AUX_CLS_TEST_FAIL']/*"/>	
            <unmanaged>ERROR_DS_AUX_CLS_TEST_FAIL</unmanaged>	
            <unmanaged-short>ERROR_DS_AUX_CLS_TEST_FAIL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsNonexistentPossSup">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_NONEXISTENT_POSS_SUP']/*"/>	
            <unmanaged>ERROR_DS_NONEXISTENT_POSS_SUP</unmanaged>	
            <unmanaged-short>ERROR_DS_NONEXISTENT_POSS_SUP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsSubClsTestFail">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_SUB_CLS_TEST_FAIL']/*"/>	
            <unmanaged>ERROR_DS_SUB_CLS_TEST_FAIL</unmanaged>	
            <unmanaged-short>ERROR_DS_SUB_CLS_TEST_FAIL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsBadRdnAttIdSyntax">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_BAD_RDN_ATT_ID_SYNTAX']/*"/>	
            <unmanaged>ERROR_DS_BAD_RDN_ATT_ID_SYNTAX</unmanaged>	
            <unmanaged-short>ERROR_DS_BAD_RDN_ATT_ID_SYNTAX</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsExistsInAuxCls">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_EXISTS_IN_AUX_CLS']/*"/>	
            <unmanaged>ERROR_DS_EXISTS_IN_AUX_CLS</unmanaged>	
            <unmanaged-short>ERROR_DS_EXISTS_IN_AUX_CLS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsExistsInSubCls">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_EXISTS_IN_SUB_CLS']/*"/>	
            <unmanaged>ERROR_DS_EXISTS_IN_SUB_CLS</unmanaged>	
            <unmanaged-short>ERROR_DS_EXISTS_IN_SUB_CLS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsExistsInPossSup">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_EXISTS_IN_POSS_SUP']/*"/>	
            <unmanaged>ERROR_DS_EXISTS_IN_POSS_SUP</unmanaged>	
            <unmanaged-short>ERROR_DS_EXISTS_IN_POSS_SUP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsRecalcschemaFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_RECALCSCHEMA_FAILED']/*"/>	
            <unmanaged>ERROR_DS_RECALCSCHEMA_FAILED</unmanaged>	
            <unmanaged-short>ERROR_DS_RECALCSCHEMA_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsTreeDeleteNotFinished">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_TREE_DELETE_NOT_FINISHED']/*"/>	
            <unmanaged>ERROR_DS_TREE_DELETE_NOT_FINISHED</unmanaged>	
            <unmanaged-short>ERROR_DS_TREE_DELETE_NOT_FINISHED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsCantDelete">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_CANT_DELETE']/*"/>	
            <unmanaged>ERROR_DS_CANT_DELETE</unmanaged>	
            <unmanaged-short>ERROR_DS_CANT_DELETE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsAttSchemaReqId">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_ATT_SCHEMA_REQ_ID']/*"/>	
            <unmanaged>ERROR_DS_ATT_SCHEMA_REQ_ID</unmanaged>	
            <unmanaged-short>ERROR_DS_ATT_SCHEMA_REQ_ID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsBadAttSchemaSyntax">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_BAD_ATT_SCHEMA_SYNTAX']/*"/>	
            <unmanaged>ERROR_DS_BAD_ATT_SCHEMA_SYNTAX</unmanaged>	
            <unmanaged-short>ERROR_DS_BAD_ATT_SCHEMA_SYNTAX</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsCantCacheAtt">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_CANT_CACHE_ATT']/*"/>	
            <unmanaged>ERROR_DS_CANT_CACHE_ATT</unmanaged>	
            <unmanaged-short>ERROR_DS_CANT_CACHE_ATT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsCantCacheClass">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_CANT_CACHE_CLASS']/*"/>	
            <unmanaged>ERROR_DS_CANT_CACHE_CLASS</unmanaged>	
            <unmanaged-short>ERROR_DS_CANT_CACHE_CLASS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsCantRemoveAttCache">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_CANT_REMOVE_ATT_CACHE']/*"/>	
            <unmanaged>ERROR_DS_CANT_REMOVE_ATT_CACHE</unmanaged>	
            <unmanaged-short>ERROR_DS_CANT_REMOVE_ATT_CACHE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsCantRemoveClassCache">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_CANT_REMOVE_CLASS_CACHE']/*"/>	
            <unmanaged>ERROR_DS_CANT_REMOVE_CLASS_CACHE</unmanaged>	
            <unmanaged-short>ERROR_DS_CANT_REMOVE_CLASS_CACHE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsCantRetrieveDn">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_CANT_RETRIEVE_DN']/*"/>	
            <unmanaged>ERROR_DS_CANT_RETRIEVE_DN</unmanaged>	
            <unmanaged-short>ERROR_DS_CANT_RETRIEVE_DN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsMissingSupref">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_MISSING_SUPREF']/*"/>	
            <unmanaged>ERROR_DS_MISSING_SUPREF</unmanaged>	
            <unmanaged-short>ERROR_DS_MISSING_SUPREF</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsCantRetrieveInstance">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_CANT_RETRIEVE_INSTANCE']/*"/>	
            <unmanaged>ERROR_DS_CANT_RETRIEVE_INSTANCE</unmanaged>	
            <unmanaged-short>ERROR_DS_CANT_RETRIEVE_INSTANCE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsCodeInconsistency">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_CODE_INCONSISTENCY']/*"/>	
            <unmanaged>ERROR_DS_CODE_INCONSISTENCY</unmanaged>	
            <unmanaged-short>ERROR_DS_CODE_INCONSISTENCY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDatabaseError">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DATABASE_ERROR']/*"/>	
            <unmanaged>ERROR_DS_DATABASE_ERROR</unmanaged>	
            <unmanaged-short>ERROR_DS_DATABASE_ERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsGovernsidMissing">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_GOVERNSID_MISSING']/*"/>	
            <unmanaged>ERROR_DS_GOVERNSID_MISSING</unmanaged>	
            <unmanaged-short>ERROR_DS_GOVERNSID_MISSING</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsMissingExpectedAtt">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_MISSING_EXPECTED_ATT']/*"/>	
            <unmanaged>ERROR_DS_MISSING_EXPECTED_ATT</unmanaged>	
            <unmanaged-short>ERROR_DS_MISSING_EXPECTED_ATT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsNcnameMissingCrRef">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_NCNAME_MISSING_CR_REF']/*"/>	
            <unmanaged>ERROR_DS_NCNAME_MISSING_CR_REF</unmanaged>	
            <unmanaged-short>ERROR_DS_NCNAME_MISSING_CR_REF</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsSecurityCheckingError">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_SECURITY_CHECKING_ERROR']/*"/>	
            <unmanaged>ERROR_DS_SECURITY_CHECKING_ERROR</unmanaged>	
            <unmanaged-short>ERROR_DS_SECURITY_CHECKING_ERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsSchemaNotLoaded">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_SCHEMA_NOT_LOADED']/*"/>	
            <unmanaged>ERROR_DS_SCHEMA_NOT_LOADED</unmanaged>	
            <unmanaged-short>ERROR_DS_SCHEMA_NOT_LOADED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsSchemaAllocFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_SCHEMA_ALLOC_FAILED']/*"/>	
            <unmanaged>ERROR_DS_SCHEMA_ALLOC_FAILED</unmanaged>	
            <unmanaged-short>ERROR_DS_SCHEMA_ALLOC_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsAttSchemaReqSyntax">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_ATT_SCHEMA_REQ_SYNTAX']/*"/>	
            <unmanaged>ERROR_DS_ATT_SCHEMA_REQ_SYNTAX</unmanaged>	
            <unmanaged-short>ERROR_DS_ATT_SCHEMA_REQ_SYNTAX</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsGcverifyError">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_GCVERIFY_ERROR']/*"/>	
            <unmanaged>ERROR_DS_GCVERIFY_ERROR</unmanaged>	
            <unmanaged-short>ERROR_DS_GCVERIFY_ERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDraSchemaMismatch">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DRA_SCHEMA_MISMATCH']/*"/>	
            <unmanaged>ERROR_DS_DRA_SCHEMA_MISMATCH</unmanaged>	
            <unmanaged-short>ERROR_DS_DRA_SCHEMA_MISMATCH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsCantFindDsaObj">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_CANT_FIND_DSA_OBJ']/*"/>	
            <unmanaged>ERROR_DS_CANT_FIND_DSA_OBJ</unmanaged>	
            <unmanaged-short>ERROR_DS_CANT_FIND_DSA_OBJ</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsCantFindExpectedNc">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_CANT_FIND_EXPECTED_NC']/*"/>	
            <unmanaged>ERROR_DS_CANT_FIND_EXPECTED_NC</unmanaged>	
            <unmanaged-short>ERROR_DS_CANT_FIND_EXPECTED_NC</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsCantFindNcInCache">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_CANT_FIND_NC_IN_CACHE']/*"/>	
            <unmanaged>ERROR_DS_CANT_FIND_NC_IN_CACHE</unmanaged>	
            <unmanaged-short>ERROR_DS_CANT_FIND_NC_IN_CACHE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsCantRetrieveChild">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_CANT_RETRIEVE_CHILD']/*"/>	
            <unmanaged>ERROR_DS_CANT_RETRIEVE_CHILD</unmanaged>	
            <unmanaged-short>ERROR_DS_CANT_RETRIEVE_CHILD</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsSecurityIllegalModify">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_SECURITY_ILLEGAL_MODIFY']/*"/>	
            <unmanaged>ERROR_DS_SECURITY_ILLEGAL_MODIFY</unmanaged>	
            <unmanaged-short>ERROR_DS_SECURITY_ILLEGAL_MODIFY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsCantReplaceHiddenRec">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_CANT_REPLACE_HIDDEN_REC']/*"/>	
            <unmanaged>ERROR_DS_CANT_REPLACE_HIDDEN_REC</unmanaged>	
            <unmanaged-short>ERROR_DS_CANT_REPLACE_HIDDEN_REC</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsBadHierarchyFile">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_BAD_HIERARCHY_FILE']/*"/>	
            <unmanaged>ERROR_DS_BAD_HIERARCHY_FILE</unmanaged>	
            <unmanaged-short>ERROR_DS_BAD_HIERARCHY_FILE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsBuildHierarchyTableFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_BUILD_HIERARCHY_TABLE_FAILED']/*"/>	
            <unmanaged>ERROR_DS_BUILD_HIERARCHY_TABLE_FAILED</unmanaged>	
            <unmanaged-short>ERROR_DS_BUILD_HIERARCHY_TABLE_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsConfigParamMissing">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_CONFIG_PARAM_MISSING']/*"/>	
            <unmanaged>ERROR_DS_CONFIG_PARAM_MISSING</unmanaged>	
            <unmanaged-short>ERROR_DS_CONFIG_PARAM_MISSING</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsCountingAbIndicesFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_COUNTING_AB_INDICES_FAILED']/*"/>	
            <unmanaged>ERROR_DS_COUNTING_AB_INDICES_FAILED</unmanaged>	
            <unmanaged-short>ERROR_DS_COUNTING_AB_INDICES_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsHierarchyTableMallocFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_HIERARCHY_TABLE_MALLOC_FAILED']/*"/>	
            <unmanaged>ERROR_DS_HIERARCHY_TABLE_MALLOC_FAILED</unmanaged>	
            <unmanaged-short>ERROR_DS_HIERARCHY_TABLE_MALLOC_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsInternalFailure">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_INTERNAL_FAILURE']/*"/>	
            <unmanaged>ERROR_DS_INTERNAL_FAILURE</unmanaged>	
            <unmanaged-short>ERROR_DS_INTERNAL_FAILURE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsUnknownError">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_UNKNOWN_ERROR']/*"/>	
            <unmanaged>ERROR_DS_UNKNOWN_ERROR</unmanaged>	
            <unmanaged-short>ERROR_DS_UNKNOWN_ERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsRootRequiresClassTop">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_ROOT_REQUIRES_CLASS_TOP']/*"/>	
            <unmanaged>ERROR_DS_ROOT_REQUIRES_CLASS_TOP</unmanaged>	
            <unmanaged-short>ERROR_DS_ROOT_REQUIRES_CLASS_TOP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsRefusingFsmoRoles">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_REFUSING_FSMO_ROLES']/*"/>	
            <unmanaged>ERROR_DS_REFUSING_FSMO_ROLES</unmanaged>	
            <unmanaged-short>ERROR_DS_REFUSING_FSMO_ROLES</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsMissingFsmoSettings">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_MISSING_FSMO_SETTINGS']/*"/>	
            <unmanaged>ERROR_DS_MISSING_FSMO_SETTINGS</unmanaged>	
            <unmanaged-short>ERROR_DS_MISSING_FSMO_SETTINGS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsUnableToSurrenderRoles">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_UNABLE_TO_SURRENDER_ROLES']/*"/>	
            <unmanaged>ERROR_DS_UNABLE_TO_SURRENDER_ROLES</unmanaged>	
            <unmanaged-short>ERROR_DS_UNABLE_TO_SURRENDER_ROLES</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDraGeneric">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DRA_GENERIC']/*"/>	
            <unmanaged>ERROR_DS_DRA_GENERIC</unmanaged>	
            <unmanaged-short>ERROR_DS_DRA_GENERIC</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDraInvalidParameter">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DRA_INVALID_PARAMETER']/*"/>	
            <unmanaged>ERROR_DS_DRA_INVALID_PARAMETER</unmanaged>	
            <unmanaged-short>ERROR_DS_DRA_INVALID_PARAMETER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDraBusy">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DRA_BUSY']/*"/>	
            <unmanaged>ERROR_DS_DRA_BUSY</unmanaged>	
            <unmanaged-short>ERROR_DS_DRA_BUSY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDraBadDn">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DRA_BAD_DN']/*"/>	
            <unmanaged>ERROR_DS_DRA_BAD_DN</unmanaged>	
            <unmanaged-short>ERROR_DS_DRA_BAD_DN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDraBadNc">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DRA_BAD_NC']/*"/>	
            <unmanaged>ERROR_DS_DRA_BAD_NC</unmanaged>	
            <unmanaged-short>ERROR_DS_DRA_BAD_NC</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDraDnExists">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DRA_DN_EXISTS']/*"/>	
            <unmanaged>ERROR_DS_DRA_DN_EXISTS</unmanaged>	
            <unmanaged-short>ERROR_DS_DRA_DN_EXISTS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDraInternalError">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DRA_INTERNAL_ERROR']/*"/>	
            <unmanaged>ERROR_DS_DRA_INTERNAL_ERROR</unmanaged>	
            <unmanaged-short>ERROR_DS_DRA_INTERNAL_ERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDraInconsistentDit">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DRA_INCONSISTENT_DIT']/*"/>	
            <unmanaged>ERROR_DS_DRA_INCONSISTENT_DIT</unmanaged>	
            <unmanaged-short>ERROR_DS_DRA_INCONSISTENT_DIT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDraConnectionFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DRA_CONNECTION_FAILED']/*"/>	
            <unmanaged>ERROR_DS_DRA_CONNECTION_FAILED</unmanaged>	
            <unmanaged-short>ERROR_DS_DRA_CONNECTION_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDraBadInstanceType">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DRA_BAD_INSTANCE_TYPE']/*"/>	
            <unmanaged>ERROR_DS_DRA_BAD_INSTANCE_TYPE</unmanaged>	
            <unmanaged-short>ERROR_DS_DRA_BAD_INSTANCE_TYPE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDraOutOfMem">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DRA_OUT_OF_MEM']/*"/>	
            <unmanaged>ERROR_DS_DRA_OUT_OF_MEM</unmanaged>	
            <unmanaged-short>ERROR_DS_DRA_OUT_OF_MEM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDraMailProblem">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DRA_MAIL_PROBLEM']/*"/>	
            <unmanaged>ERROR_DS_DRA_MAIL_PROBLEM</unmanaged>	
            <unmanaged-short>ERROR_DS_DRA_MAIL_PROBLEM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDraRefAlreadyExists">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DRA_REF_ALREADY_EXISTS']/*"/>	
            <unmanaged>ERROR_DS_DRA_REF_ALREADY_EXISTS</unmanaged>	
            <unmanaged-short>ERROR_DS_DRA_REF_ALREADY_EXISTS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDraRefNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DRA_REF_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_DS_DRA_REF_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_DS_DRA_REF_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDraObjIsRepSource">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DRA_OBJ_IS_REP_SOURCE']/*"/>	
            <unmanaged>ERROR_DS_DRA_OBJ_IS_REP_SOURCE</unmanaged>	
            <unmanaged-short>ERROR_DS_DRA_OBJ_IS_REP_SOURCE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDraDbError">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DRA_DB_ERROR']/*"/>	
            <unmanaged>ERROR_DS_DRA_DB_ERROR</unmanaged>	
            <unmanaged-short>ERROR_DS_DRA_DB_ERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDraNoReplica">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DRA_NO_REPLICA']/*"/>	
            <unmanaged>ERROR_DS_DRA_NO_REPLICA</unmanaged>	
            <unmanaged-short>ERROR_DS_DRA_NO_REPLICA</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDraAccessDenied">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DRA_ACCESS_DENIED']/*"/>	
            <unmanaged>ERROR_DS_DRA_ACCESS_DENIED</unmanaged>	
            <unmanaged-short>ERROR_DS_DRA_ACCESS_DENIED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDraNotSupported">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DRA_NOT_SUPPORTED']/*"/>	
            <unmanaged>ERROR_DS_DRA_NOT_SUPPORTED</unmanaged>	
            <unmanaged-short>ERROR_DS_DRA_NOT_SUPPORTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDraRpcCancelled">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DRA_RPC_CANCELLED']/*"/>	
            <unmanaged>ERROR_DS_DRA_RPC_CANCELLED</unmanaged>	
            <unmanaged-short>ERROR_DS_DRA_RPC_CANCELLED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDraSourceDisabled">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DRA_SOURCE_DISABLED']/*"/>	
            <unmanaged>ERROR_DS_DRA_SOURCE_DISABLED</unmanaged>	
            <unmanaged-short>ERROR_DS_DRA_SOURCE_DISABLED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDraSinkDisabled">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DRA_SINK_DISABLED']/*"/>	
            <unmanaged>ERROR_DS_DRA_SINK_DISABLED</unmanaged>	
            <unmanaged-short>ERROR_DS_DRA_SINK_DISABLED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDraNameCollision">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DRA_NAME_COLLISION']/*"/>	
            <unmanaged>ERROR_DS_DRA_NAME_COLLISION</unmanaged>	
            <unmanaged-short>ERROR_DS_DRA_NAME_COLLISION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDraSourceReinstalled">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DRA_SOURCE_REINSTALLED']/*"/>	
            <unmanaged>ERROR_DS_DRA_SOURCE_REINSTALLED</unmanaged>	
            <unmanaged-short>ERROR_DS_DRA_SOURCE_REINSTALLED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDraMissingParent">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DRA_MISSING_PARENT']/*"/>	
            <unmanaged>ERROR_DS_DRA_MISSING_PARENT</unmanaged>	
            <unmanaged-short>ERROR_DS_DRA_MISSING_PARENT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDraPreempted">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DRA_PREEMPTED']/*"/>	
            <unmanaged>ERROR_DS_DRA_PREEMPTED</unmanaged>	
            <unmanaged-short>ERROR_DS_DRA_PREEMPTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDraAbandonSync">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DRA_ABANDON_SYNC']/*"/>	
            <unmanaged>ERROR_DS_DRA_ABANDON_SYNC</unmanaged>	
            <unmanaged-short>ERROR_DS_DRA_ABANDON_SYNC</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDraShutdown">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DRA_SHUTDOWN']/*"/>	
            <unmanaged>ERROR_DS_DRA_SHUTDOWN</unmanaged>	
            <unmanaged-short>ERROR_DS_DRA_SHUTDOWN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDraIncompatiblePartialSet">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DRA_INCOMPATIBLE_PARTIAL_SET']/*"/>	
            <unmanaged>ERROR_DS_DRA_INCOMPATIBLE_PARTIAL_SET</unmanaged>	
            <unmanaged-short>ERROR_DS_DRA_INCOMPATIBLE_PARTIAL_SET</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDraSourceIsPartialReplica">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DRA_SOURCE_IS_PARTIAL_REPLICA']/*"/>	
            <unmanaged>ERROR_DS_DRA_SOURCE_IS_PARTIAL_REPLICA</unmanaged>	
            <unmanaged-short>ERROR_DS_DRA_SOURCE_IS_PARTIAL_REPLICA</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDraExtnConnectionFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DRA_EXTN_CONNECTION_FAILED']/*"/>	
            <unmanaged>ERROR_DS_DRA_EXTN_CONNECTION_FAILED</unmanaged>	
            <unmanaged-short>ERROR_DS_DRA_EXTN_CONNECTION_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsInstallSchemaMismatch">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_INSTALL_SCHEMA_MISMATCH']/*"/>	
            <unmanaged>ERROR_DS_INSTALL_SCHEMA_MISMATCH</unmanaged>	
            <unmanaged-short>ERROR_DS_INSTALL_SCHEMA_MISMATCH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDupLinkId">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DUP_LINK_ID']/*"/>	
            <unmanaged>ERROR_DS_DUP_LINK_ID</unmanaged>	
            <unmanaged-short>ERROR_DS_DUP_LINK_ID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsNameErrorResolving">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_NAME_ERROR_RESOLVING']/*"/>	
            <unmanaged>ERROR_DS_NAME_ERROR_RESOLVING</unmanaged>	
            <unmanaged-short>ERROR_DS_NAME_ERROR_RESOLVING</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsNameErrorNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_NAME_ERROR_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_DS_NAME_ERROR_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_DS_NAME_ERROR_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsNameErrorNotUnique">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_NAME_ERROR_NOT_UNIQUE']/*"/>	
            <unmanaged>ERROR_DS_NAME_ERROR_NOT_UNIQUE</unmanaged>	
            <unmanaged-short>ERROR_DS_NAME_ERROR_NOT_UNIQUE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsNameErrorNoMapping">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_NAME_ERROR_NO_MAPPING']/*"/>	
            <unmanaged>ERROR_DS_NAME_ERROR_NO_MAPPING</unmanaged>	
            <unmanaged-short>ERROR_DS_NAME_ERROR_NO_MAPPING</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsNameErrorDomainOnly">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_NAME_ERROR_DOMAIN_ONLY']/*"/>	
            <unmanaged>ERROR_DS_NAME_ERROR_DOMAIN_ONLY</unmanaged>	
            <unmanaged-short>ERROR_DS_NAME_ERROR_DOMAIN_ONLY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsNameErrorNoSyntacticalMapping">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_NAME_ERROR_NO_SYNTACTICAL_MAPPING']/*"/>	
            <unmanaged>ERROR_DS_NAME_ERROR_NO_SYNTACTICAL_MAPPING</unmanaged>	
            <unmanaged-short>ERROR_DS_NAME_ERROR_NO_SYNTACTICAL_MAPPING</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsConstructedAttMod">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_CONSTRUCTED_ATT_MOD']/*"/>	
            <unmanaged>ERROR_DS_CONSTRUCTED_ATT_MOD</unmanaged>	
            <unmanaged-short>ERROR_DS_CONSTRUCTED_ATT_MOD</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsWrongOmObjClass">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_WRONG_OM_OBJ_CLASS']/*"/>	
            <unmanaged>ERROR_DS_WRONG_OM_OBJ_CLASS</unmanaged>	
            <unmanaged-short>ERROR_DS_WRONG_OM_OBJ_CLASS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDraReplPending">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DRA_REPL_PENDING']/*"/>	
            <unmanaged>ERROR_DS_DRA_REPL_PENDING</unmanaged>	
            <unmanaged-short>ERROR_DS_DRA_REPL_PENDING</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDsRequired">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DS_REQUIRED']/*"/>	
            <unmanaged>ERROR_DS_DS_REQUIRED</unmanaged>	
            <unmanaged-short>ERROR_DS_DS_REQUIRED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsInvalidLdapDisplayName">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_INVALID_LDAP_DISPLAY_NAME']/*"/>	
            <unmanaged>ERROR_DS_INVALID_LDAP_DISPLAY_NAME</unmanaged>	
            <unmanaged-short>ERROR_DS_INVALID_LDAP_DISPLAY_NAME</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsNonBaseSearch">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_NON_BASE_SEARCH']/*"/>	
            <unmanaged>ERROR_DS_NON_BASE_SEARCH</unmanaged>	
            <unmanaged-short>ERROR_DS_NON_BASE_SEARCH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsCantRetrieveAtts">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_CANT_RETRIEVE_ATTS']/*"/>	
            <unmanaged>ERROR_DS_CANT_RETRIEVE_ATTS</unmanaged>	
            <unmanaged-short>ERROR_DS_CANT_RETRIEVE_ATTS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsBacklinkWithoutLink">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_BACKLINK_WITHOUT_LINK']/*"/>	
            <unmanaged>ERROR_DS_BACKLINK_WITHOUT_LINK</unmanaged>	
            <unmanaged-short>ERROR_DS_BACKLINK_WITHOUT_LINK</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsEpochMismatch">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_EPOCH_MISMATCH']/*"/>	
            <unmanaged>ERROR_DS_EPOCH_MISMATCH</unmanaged>	
            <unmanaged-short>ERROR_DS_EPOCH_MISMATCH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsSourceNameMismatch">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_SRC_NAME_MISMATCH']/*"/>	
            <unmanaged>ERROR_DS_SRC_NAME_MISMATCH</unmanaged>	
            <unmanaged-short>ERROR_DS_SRC_NAME_MISMATCH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsSourceAndDstNcIdentical">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_SRC_AND_DST_NC_IDENTICAL']/*"/>	
            <unmanaged>ERROR_DS_SRC_AND_DST_NC_IDENTICAL</unmanaged>	
            <unmanaged-short>ERROR_DS_SRC_AND_DST_NC_IDENTICAL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDstNcMismatch">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DST_NC_MISMATCH']/*"/>	
            <unmanaged>ERROR_DS_DST_NC_MISMATCH</unmanaged>	
            <unmanaged-short>ERROR_DS_DST_NC_MISMATCH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsNotAuthoritiveForDstNc">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_NOT_AUTHORITIVE_FOR_DST_NC']/*"/>	
            <unmanaged>ERROR_DS_NOT_AUTHORITIVE_FOR_DST_NC</unmanaged>	
            <unmanaged-short>ERROR_DS_NOT_AUTHORITIVE_FOR_DST_NC</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsSourceGuidMismatch">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_SRC_GUID_MISMATCH']/*"/>	
            <unmanaged>ERROR_DS_SRC_GUID_MISMATCH</unmanaged>	
            <unmanaged-short>ERROR_DS_SRC_GUID_MISMATCH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsCantMoveDeletedObject">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_CANT_MOVE_DELETED_OBJECT']/*"/>	
            <unmanaged>ERROR_DS_CANT_MOVE_DELETED_OBJECT</unmanaged>	
            <unmanaged-short>ERROR_DS_CANT_MOVE_DELETED_OBJECT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsPdcOperationInProgress">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_PDC_OPERATION_IN_PROGRESS']/*"/>	
            <unmanaged>ERROR_DS_PDC_OPERATION_IN_PROGRESS</unmanaged>	
            <unmanaged-short>ERROR_DS_PDC_OPERATION_IN_PROGRESS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsCrossDomainCleanupReqd">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_CROSS_DOMAIN_CLEANUP_REQD']/*"/>	
            <unmanaged>ERROR_DS_CROSS_DOMAIN_CLEANUP_REQD</unmanaged>	
            <unmanaged-short>ERROR_DS_CROSS_DOMAIN_CLEANUP_REQD</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsIllegalXdomMoveOperation">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_ILLEGAL_XDOM_MOVE_OPERATION']/*"/>	
            <unmanaged>ERROR_DS_ILLEGAL_XDOM_MOVE_OPERATION</unmanaged>	
            <unmanaged-short>ERROR_DS_ILLEGAL_XDOM_MOVE_OPERATION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsCantWithAcctGroupMembershps">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_CANT_WITH_ACCT_GROUP_MEMBERSHPS']/*"/>	
            <unmanaged>ERROR_DS_CANT_WITH_ACCT_GROUP_MEMBERSHPS</unmanaged>	
            <unmanaged-short>ERROR_DS_CANT_WITH_ACCT_GROUP_MEMBERSHPS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsNcMustHaveNcParent">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_NC_MUST_HAVE_NC_PARENT']/*"/>	
            <unmanaged>ERROR_DS_NC_MUST_HAVE_NC_PARENT</unmanaged>	
            <unmanaged-short>ERROR_DS_NC_MUST_HAVE_NC_PARENT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsCrImpossibleToValidate">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE']/*"/>	
            <unmanaged>ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE</unmanaged>	
            <unmanaged-short>ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDstDomainNotNative">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DST_DOMAIN_NOT_NATIVE']/*"/>	
            <unmanaged>ERROR_DS_DST_DOMAIN_NOT_NATIVE</unmanaged>	
            <unmanaged-short>ERROR_DS_DST_DOMAIN_NOT_NATIVE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsMissingInfrastructureContainer">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_MISSING_INFRASTRUCTURE_CONTAINER']/*"/>	
            <unmanaged>ERROR_DS_MISSING_INFRASTRUCTURE_CONTAINER</unmanaged>	
            <unmanaged-short>ERROR_DS_MISSING_INFRASTRUCTURE_CONTAINER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsCantMoveAccountGroup">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_CANT_MOVE_ACCOUNT_GROUP']/*"/>	
            <unmanaged>ERROR_DS_CANT_MOVE_ACCOUNT_GROUP</unmanaged>	
            <unmanaged-short>ERROR_DS_CANT_MOVE_ACCOUNT_GROUP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsCantMoveResourceGroup">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_CANT_MOVE_RESOURCE_GROUP']/*"/>	
            <unmanaged>ERROR_DS_CANT_MOVE_RESOURCE_GROUP</unmanaged>	
            <unmanaged-short>ERROR_DS_CANT_MOVE_RESOURCE_GROUP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsInvalidSearchFlags">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_INVALID_SEARCH_FLAG']/*"/>	
            <unmanaged>ERROR_DS_INVALID_SEARCH_FLAG</unmanaged>	
            <unmanaged-short>ERROR_DS_INVALID_SEARCH_FLAG</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsNoTreeDeleteAboveNc">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_NO_TREE_DELETE_ABOVE_NC']/*"/>	
            <unmanaged>ERROR_DS_NO_TREE_DELETE_ABOVE_NC</unmanaged>	
            <unmanaged-short>ERROR_DS_NO_TREE_DELETE_ABOVE_NC</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsCouldntLockTreeForDelete">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_COULDNT_LOCK_TREE_FOR_DELETE']/*"/>	
            <unmanaged>ERROR_DS_COULDNT_LOCK_TREE_FOR_DELETE</unmanaged>	
            <unmanaged-short>ERROR_DS_COULDNT_LOCK_TREE_FOR_DELETE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsCouldntIdentifyObjectsForTreeDelete">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_COULDNT_IDENTIFY_OBJECTS_FOR_TREE_DELETE']/*"/>	
            <unmanaged>ERROR_DS_COULDNT_IDENTIFY_OBJECTS_FOR_TREE_DELETE</unmanaged>	
            <unmanaged-short>ERROR_DS_COULDNT_IDENTIFY_OBJECTS_FOR_TREE_DELETE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsSamInitFailure">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_SAM_INIT_FAILURE']/*"/>	
            <unmanaged>ERROR_DS_SAM_INIT_FAILURE</unmanaged>	
            <unmanaged-short>ERROR_DS_SAM_INIT_FAILURE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsSensitiveGroupViolation">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_SENSITIVE_GROUP_VIOLATION']/*"/>	
            <unmanaged>ERROR_DS_SENSITIVE_GROUP_VIOLATION</unmanaged>	
            <unmanaged-short>ERROR_DS_SENSITIVE_GROUP_VIOLATION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsCantModPrimarygroupid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_CANT_MOD_PRIMARYGROUPID']/*"/>	
            <unmanaged>ERROR_DS_CANT_MOD_PRIMARYGROUPID</unmanaged>	
            <unmanaged-short>ERROR_DS_CANT_MOD_PRIMARYGROUPID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsIllegalBaseSchemaMod">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_ILLEGAL_BASE_SCHEMA_MOD']/*"/>	
            <unmanaged>ERROR_DS_ILLEGAL_BASE_SCHEMA_MOD</unmanaged>	
            <unmanaged-short>ERROR_DS_ILLEGAL_BASE_SCHEMA_MOD</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsNonsafeSchemaChange">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_NONSAFE_SCHEMA_CHANGE']/*"/>	
            <unmanaged>ERROR_DS_NONSAFE_SCHEMA_CHANGE</unmanaged>	
            <unmanaged-short>ERROR_DS_NONSAFE_SCHEMA_CHANGE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsSchemaUpdateDisallowed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_SCHEMA_UPDATE_DISALLOWED']/*"/>	
            <unmanaged>ERROR_DS_SCHEMA_UPDATE_DISALLOWED</unmanaged>	
            <unmanaged-short>ERROR_DS_SCHEMA_UPDATE_DISALLOWED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsCantCreateUnderSchema">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_CANT_CREATE_UNDER_SCHEMA']/*"/>	
            <unmanaged>ERROR_DS_CANT_CREATE_UNDER_SCHEMA</unmanaged>	
            <unmanaged-short>ERROR_DS_CANT_CREATE_UNDER_SCHEMA</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsInstallNoSourceSchVersion">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_INSTALL_NO_SRC_SCH_VERSION']/*"/>	
            <unmanaged>ERROR_DS_INSTALL_NO_SRC_SCH_VERSION</unmanaged>	
            <unmanaged-short>ERROR_DS_INSTALL_NO_SRC_SCH_VERSION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsInstallNoSchVersionInInifile">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_INSTALL_NO_SCH_VERSION_IN_INIFILE']/*"/>	
            <unmanaged>ERROR_DS_INSTALL_NO_SCH_VERSION_IN_INIFILE</unmanaged>	
            <unmanaged-short>ERROR_DS_INSTALL_NO_SCH_VERSION_IN_INIFILE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsInvalidGroupType">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_INVALID_GROUP_TYPE']/*"/>	
            <unmanaged>ERROR_DS_INVALID_GROUP_TYPE</unmanaged>	
            <unmanaged-short>ERROR_DS_INVALID_GROUP_TYPE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsNoNestGlobalgroupInMixeddomain">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN']/*"/>	
            <unmanaged>ERROR_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN</unmanaged>	
            <unmanaged-short>ERROR_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsNoNestLocalgroupInMixeddomain">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN']/*"/>	
            <unmanaged>ERROR_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN</unmanaged>	
            <unmanaged-short>ERROR_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsGlobalCantHaveLocalMember">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER']/*"/>	
            <unmanaged>ERROR_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER</unmanaged>	
            <unmanaged-short>ERROR_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsGlobalCantHaveUniversalMember">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER']/*"/>	
            <unmanaged>ERROR_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER</unmanaged>	
            <unmanaged-short>ERROR_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsUniversalCantHaveLocalMember">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER']/*"/>	
            <unmanaged>ERROR_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER</unmanaged>	
            <unmanaged-short>ERROR_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsGlobalCantHaveCrossdomainMember">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER']/*"/>	
            <unmanaged>ERROR_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER</unmanaged>	
            <unmanaged-short>ERROR_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsLocalCantHaveCrossdomainLocalMember">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER']/*"/>	
            <unmanaged>ERROR_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER</unmanaged>	
            <unmanaged-short>ERROR_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsHavePrimaryMembers">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_HAVE_PRIMARY_MEMBERS']/*"/>	
            <unmanaged>ERROR_DS_HAVE_PRIMARY_MEMBERS</unmanaged>	
            <unmanaged-short>ERROR_DS_HAVE_PRIMARY_MEMBERS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsStringSdConversionFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_STRING_SD_CONVERSION_FAILED']/*"/>	
            <unmanaged>ERROR_DS_STRING_SD_CONVERSION_FAILED</unmanaged>	
            <unmanaged-short>ERROR_DS_STRING_SD_CONVERSION_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsNamingMasterGc">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_NAMING_MASTER_GC']/*"/>	
            <unmanaged>ERROR_DS_NAMING_MASTER_GC</unmanaged>	
            <unmanaged-short>ERROR_DS_NAMING_MASTER_GC</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDnsLookupFailure">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DNS_LOOKUP_FAILURE']/*"/>	
            <unmanaged>ERROR_DS_DNS_LOOKUP_FAILURE</unmanaged>	
            <unmanaged-short>ERROR_DS_DNS_LOOKUP_FAILURE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsCouldntUpdateSpns">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_COULDNT_UPDATE_SPNS']/*"/>	
            <unmanaged>ERROR_DS_COULDNT_UPDATE_SPNS</unmanaged>	
            <unmanaged-short>ERROR_DS_COULDNT_UPDATE_SPNS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsCantRetrieveSd">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_CANT_RETRIEVE_SD']/*"/>	
            <unmanaged>ERROR_DS_CANT_RETRIEVE_SD</unmanaged>	
            <unmanaged-short>ERROR_DS_CANT_RETRIEVE_SD</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsKeyNotUnique">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_KEY_NOT_UNIQUE']/*"/>	
            <unmanaged>ERROR_DS_KEY_NOT_UNIQUE</unmanaged>	
            <unmanaged-short>ERROR_DS_KEY_NOT_UNIQUE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsWrongLinkedAttSyntax">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_WRONG_LINKED_ATT_SYNTAX']/*"/>	
            <unmanaged>ERROR_DS_WRONG_LINKED_ATT_SYNTAX</unmanaged>	
            <unmanaged-short>ERROR_DS_WRONG_LINKED_ATT_SYNTAX</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsSamNeedBootkeyPassword">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_SAM_NEED_BOOTKEY_PASSWORD']/*"/>	
            <unmanaged>ERROR_DS_SAM_NEED_BOOTKEY_PASSWORD</unmanaged>	
            <unmanaged-short>ERROR_DS_SAM_NEED_BOOTKEY_PASSWORD</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsSamNeedBootkeyFloppy">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_SAM_NEED_BOOTKEY_FLOPPY']/*"/>	
            <unmanaged>ERROR_DS_SAM_NEED_BOOTKEY_FLOPPY</unmanaged>	
            <unmanaged-short>ERROR_DS_SAM_NEED_BOOTKEY_FLOPPY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsCantStart">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_CANT_START']/*"/>	
            <unmanaged>ERROR_DS_CANT_START</unmanaged>	
            <unmanaged-short>ERROR_DS_CANT_START</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsInitFailure">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_INIT_FAILURE']/*"/>	
            <unmanaged>ERROR_DS_INIT_FAILURE</unmanaged>	
            <unmanaged-short>ERROR_DS_INIT_FAILURE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsNoPktPrivacyOnConnection">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_NO_PKT_PRIVACY_ON_CONNECTION']/*"/>	
            <unmanaged>ERROR_DS_NO_PKT_PRIVACY_ON_CONNECTION</unmanaged>	
            <unmanaged-short>ERROR_DS_NO_PKT_PRIVACY_ON_CONNECTION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsSourceDomainInForest">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_SOURCE_DOMAIN_IN_FOREST']/*"/>	
            <unmanaged>ERROR_DS_SOURCE_DOMAIN_IN_FOREST</unmanaged>	
            <unmanaged-short>ERROR_DS_SOURCE_DOMAIN_IN_FOREST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDestinationDomainNotInForest">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DESTINATION_DOMAIN_NOT_IN_FOREST']/*"/>	
            <unmanaged>ERROR_DS_DESTINATION_DOMAIN_NOT_IN_FOREST</unmanaged>	
            <unmanaged-short>ERROR_DS_DESTINATION_DOMAIN_NOT_IN_FOREST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDestinationAuditingNotEnabled">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DESTINATION_AUDITING_NOT_ENABLED']/*"/>	
            <unmanaged>ERROR_DS_DESTINATION_AUDITING_NOT_ENABLED</unmanaged>	
            <unmanaged-short>ERROR_DS_DESTINATION_AUDITING_NOT_ENABLED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsCantFindDeviceContextForSourceDomain">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_CANT_FIND_DC_FOR_SRC_DOMAIN']/*"/>	
            <unmanaged>ERROR_DS_CANT_FIND_DC_FOR_SRC_DOMAIN</unmanaged>	
            <unmanaged-short>ERROR_DS_CANT_FIND_DC_FOR_SRC_DOMAIN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsSourceObjNotGroupOrUser">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_SRC_OBJ_NOT_GROUP_OR_USER']/*"/>	
            <unmanaged>ERROR_DS_SRC_OBJ_NOT_GROUP_OR_USER</unmanaged>	
            <unmanaged-short>ERROR_DS_SRC_OBJ_NOT_GROUP_OR_USER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsSourceSidExistsInForest">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_SRC_SID_EXISTS_IN_FOREST']/*"/>	
            <unmanaged>ERROR_DS_SRC_SID_EXISTS_IN_FOREST</unmanaged>	
            <unmanaged-short>ERROR_DS_SRC_SID_EXISTS_IN_FOREST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsSourceAndDstObjectClassMismatch">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_SRC_AND_DST_OBJECT_CLASS_MISMATCH']/*"/>	
            <unmanaged>ERROR_DS_SRC_AND_DST_OBJECT_CLASS_MISMATCH</unmanaged>	
            <unmanaged-short>ERROR_DS_SRC_AND_DST_OBJECT_CLASS_MISMATCH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SamInitFailure">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SAM_INIT_FAILURE']/*"/>	
            <unmanaged>ERROR_SAM_INIT_FAILURE</unmanaged>	
            <unmanaged-short>ERROR_SAM_INIT_FAILURE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDraSchemaInformationShip">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DRA_SCHEMA_INFO_SHIP']/*"/>	
            <unmanaged>ERROR_DS_DRA_SCHEMA_INFO_SHIP</unmanaged>	
            <unmanaged-short>ERROR_DS_DRA_SCHEMA_INFO_SHIP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDraSchemaConflict">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DRA_SCHEMA_CONFLICT']/*"/>	
            <unmanaged>ERROR_DS_DRA_SCHEMA_CONFLICT</unmanaged>	
            <unmanaged-short>ERROR_DS_DRA_SCHEMA_CONFLICT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDraEarlierSchemaConflict">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DRA_EARLIER_SCHEMA_CONFLICT']/*"/>	
            <unmanaged>ERROR_DS_DRA_EARLIER_SCHEMA_CONFLICT</unmanaged>	
            <unmanaged-short>ERROR_DS_DRA_EARLIER_SCHEMA_CONFLICT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDraObjNcMismatch">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DRA_OBJ_NC_MISMATCH']/*"/>	
            <unmanaged>ERROR_DS_DRA_OBJ_NC_MISMATCH</unmanaged>	
            <unmanaged-short>ERROR_DS_DRA_OBJ_NC_MISMATCH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsNcStillHasDsas">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_NC_STILL_HAS_DSAS']/*"/>	
            <unmanaged>ERROR_DS_NC_STILL_HAS_DSAS</unmanaged>	
            <unmanaged-short>ERROR_DS_NC_STILL_HAS_DSAS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsGcRequired">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_GC_REQUIRED']/*"/>	
            <unmanaged>ERROR_DS_GC_REQUIRED</unmanaged>	
            <unmanaged-short>ERROR_DS_GC_REQUIRED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsLocalMemberOfLocalOnly">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_LOCAL_MEMBER_OF_LOCAL_ONLY']/*"/>	
            <unmanaged>ERROR_DS_LOCAL_MEMBER_OF_LOCAL_ONLY</unmanaged>	
            <unmanaged-short>ERROR_DS_LOCAL_MEMBER_OF_LOCAL_ONLY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsNoFpoInUniversalGroups">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_NO_FPO_IN_UNIVERSAL_GROUPS']/*"/>	
            <unmanaged>ERROR_DS_NO_FPO_IN_UNIVERSAL_GROUPS</unmanaged>	
            <unmanaged-short>ERROR_DS_NO_FPO_IN_UNIVERSAL_GROUPS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsCantAddToGc">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_CANT_ADD_TO_GC']/*"/>	
            <unmanaged>ERROR_DS_CANT_ADD_TO_GC</unmanaged>	
            <unmanaged-short>ERROR_DS_CANT_ADD_TO_GC</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsNoCheckpointWithPdc">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_NO_CHECKPOINT_WITH_PDC']/*"/>	
            <unmanaged>ERROR_DS_NO_CHECKPOINT_WITH_PDC</unmanaged>	
            <unmanaged-short>ERROR_DS_NO_CHECKPOINT_WITH_PDC</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsSourceAuditingNotEnabled">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_SOURCE_AUDITING_NOT_ENABLED']/*"/>	
            <unmanaged>ERROR_DS_SOURCE_AUDITING_NOT_ENABLED</unmanaged>	
            <unmanaged-short>ERROR_DS_SOURCE_AUDITING_NOT_ENABLED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsCantCreateInNondomainNc">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_CANT_CREATE_IN_NONDOMAIN_NC']/*"/>	
            <unmanaged>ERROR_DS_CANT_CREATE_IN_NONDOMAIN_NC</unmanaged>	
            <unmanaged-short>ERROR_DS_CANT_CREATE_IN_NONDOMAIN_NC</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsInvalidNameForSpn">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_INVALID_NAME_FOR_SPN']/*"/>	
            <unmanaged>ERROR_DS_INVALID_NAME_FOR_SPN</unmanaged>	
            <unmanaged-short>ERROR_DS_INVALID_NAME_FOR_SPN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsFilterUsesContructedAttrs">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_FILTER_USES_CONTRUCTED_ATTRS']/*"/>	
            <unmanaged>ERROR_DS_FILTER_USES_CONTRUCTED_ATTRS</unmanaged>	
            <unmanaged-short>ERROR_DS_FILTER_USES_CONTRUCTED_ATTRS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsUnicodepwdNotInQuotes">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_UNICODEPWD_NOT_IN_QUOTES']/*"/>	
            <unmanaged>ERROR_DS_UNICODEPWD_NOT_IN_QUOTES</unmanaged>	
            <unmanaged-short>ERROR_DS_UNICODEPWD_NOT_IN_QUOTES</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsMachineAccountQuotaExceeded">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED']/*"/>	
            <unmanaged>ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED</unmanaged>	
            <unmanaged-short>ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsMustBeRunOnDstDeviceContext">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_MUST_BE_RUN_ON_DST_DC']/*"/>	
            <unmanaged>ERROR_DS_MUST_BE_RUN_ON_DST_DC</unmanaged>	
            <unmanaged-short>ERROR_DS_MUST_BE_RUN_ON_DST_DC</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsSourceDeviceContextMustBeSp4OrGreater">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_SRC_DC_MUST_BE_SP4_OR_GREATER']/*"/>	
            <unmanaged>ERROR_DS_SRC_DC_MUST_BE_SP4_OR_GREATER</unmanaged>	
            <unmanaged-short>ERROR_DS_SRC_DC_MUST_BE_SP4_OR_GREATER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsCantTreeDeleteCriticalObj">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_CANT_TREE_DELETE_CRITICAL_OBJ']/*"/>	
            <unmanaged>ERROR_DS_CANT_TREE_DELETE_CRITICAL_OBJ</unmanaged>	
            <unmanaged-short>ERROR_DS_CANT_TREE_DELETE_CRITICAL_OBJ</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsInitFailureConsole">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_INIT_FAILURE_CONSOLE']/*"/>	
            <unmanaged>ERROR_DS_INIT_FAILURE_CONSOLE</unmanaged>	
            <unmanaged-short>ERROR_DS_INIT_FAILURE_CONSOLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsSamInitFailureConsole">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_SAM_INIT_FAILURE_CONSOLE']/*"/>	
            <unmanaged>ERROR_DS_SAM_INIT_FAILURE_CONSOLE</unmanaged>	
            <unmanaged-short>ERROR_DS_SAM_INIT_FAILURE_CONSOLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsForestVersionTooHigh">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_FOREST_VERSION_TOO_HIGH']/*"/>	
            <unmanaged>ERROR_DS_FOREST_VERSION_TOO_HIGH</unmanaged>	
            <unmanaged-short>ERROR_DS_FOREST_VERSION_TOO_HIGH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDomainVersionTooHigh">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DOMAIN_VERSION_TOO_HIGH']/*"/>	
            <unmanaged>ERROR_DS_DOMAIN_VERSION_TOO_HIGH</unmanaged>	
            <unmanaged-short>ERROR_DS_DOMAIN_VERSION_TOO_HIGH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsForestVersionTooLow">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_FOREST_VERSION_TOO_LOW']/*"/>	
            <unmanaged>ERROR_DS_FOREST_VERSION_TOO_LOW</unmanaged>	
            <unmanaged-short>ERROR_DS_FOREST_VERSION_TOO_LOW</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDomainVersionTooLow">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DOMAIN_VERSION_TOO_LOW']/*"/>	
            <unmanaged>ERROR_DS_DOMAIN_VERSION_TOO_LOW</unmanaged>	
            <unmanaged-short>ERROR_DS_DOMAIN_VERSION_TOO_LOW</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsIncompatibleVersion">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_INCOMPATIBLE_VERSION']/*"/>	
            <unmanaged>ERROR_DS_INCOMPATIBLE_VERSION</unmanaged>	
            <unmanaged-short>ERROR_DS_INCOMPATIBLE_VERSION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsLowDsaVersion">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_LOW_DSA_VERSION']/*"/>	
            <unmanaged>ERROR_DS_LOW_DSA_VERSION</unmanaged>	
            <unmanaged-short>ERROR_DS_LOW_DSA_VERSION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsNoBehaviorVersionInMixeddomain">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_NO_BEHAVIOR_VERSION_IN_MIXEDDOMAIN']/*"/>	
            <unmanaged>ERROR_DS_NO_BEHAVIOR_VERSION_IN_MIXEDDOMAIN</unmanaged>	
            <unmanaged-short>ERROR_DS_NO_BEHAVIOR_VERSION_IN_MIXEDDOMAIN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsNotSupportedSortOrder">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_NOT_SUPPORTED_SORT_ORDER']/*"/>	
            <unmanaged>ERROR_DS_NOT_SUPPORTED_SORT_ORDER</unmanaged>	
            <unmanaged-short>ERROR_DS_NOT_SUPPORTED_SORT_ORDER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsNameNotUnique">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_NAME_NOT_UNIQUE']/*"/>	
            <unmanaged>ERROR_DS_NAME_NOT_UNIQUE</unmanaged>	
            <unmanaged-short>ERROR_DS_NAME_NOT_UNIQUE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsMachineAccountCreatedPrent4">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_MACHINE_ACCOUNT_CREATED_PRENT4']/*"/>	
            <unmanaged>ERROR_DS_MACHINE_ACCOUNT_CREATED_PRENT4</unmanaged>	
            <unmanaged-short>ERROR_DS_MACHINE_ACCOUNT_CREATED_PRENT4</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsOutOfVersionStore">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_OUT_OF_VERSION_STORE']/*"/>	
            <unmanaged>ERROR_DS_OUT_OF_VERSION_STORE</unmanaged>	
            <unmanaged-short>ERROR_DS_OUT_OF_VERSION_STORE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsIncompatibleControlsUsed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_INCOMPATIBLE_CONTROLS_USED']/*"/>	
            <unmanaged>ERROR_DS_INCOMPATIBLE_CONTROLS_USED</unmanaged>	
            <unmanaged-short>ERROR_DS_INCOMPATIBLE_CONTROLS_USED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsNoRefDomain">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_NO_REF_DOMAIN']/*"/>	
            <unmanaged>ERROR_DS_NO_REF_DOMAIN</unmanaged>	
            <unmanaged-short>ERROR_DS_NO_REF_DOMAIN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsReservedLinkId">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_RESERVED_LINK_ID']/*"/>	
            <unmanaged>ERROR_DS_RESERVED_LINK_ID</unmanaged>	
            <unmanaged-short>ERROR_DS_RESERVED_LINK_ID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsLinkIdNotAvailable">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_LINK_ID_NOT_AVAILABLE']/*"/>	
            <unmanaged>ERROR_DS_LINK_ID_NOT_AVAILABLE</unmanaged>	
            <unmanaged-short>ERROR_DS_LINK_ID_NOT_AVAILABLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsAgCantHaveUniversalMember">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_AG_CANT_HAVE_UNIVERSAL_MEMBER']/*"/>	
            <unmanaged>ERROR_DS_AG_CANT_HAVE_UNIVERSAL_MEMBER</unmanaged>	
            <unmanaged-short>ERROR_DS_AG_CANT_HAVE_UNIVERSAL_MEMBER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsModifydnDisallowedByInstanceType">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_MODIFYDN_DISALLOWED_BY_INSTANCE_TYPE']/*"/>	
            <unmanaged>ERROR_DS_MODIFYDN_DISALLOWED_BY_INSTANCE_TYPE</unmanaged>	
            <unmanaged-short>ERROR_DS_MODIFYDN_DISALLOWED_BY_INSTANCE_TYPE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsNoObjectMoveInSchemaNc">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_NO_OBJECT_MOVE_IN_SCHEMA_NC']/*"/>	
            <unmanaged>ERROR_DS_NO_OBJECT_MOVE_IN_SCHEMA_NC</unmanaged>	
            <unmanaged-short>ERROR_DS_NO_OBJECT_MOVE_IN_SCHEMA_NC</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsModifydnDisallowedByFlags">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_MODIFYDN_DISALLOWED_BY_FLAG']/*"/>	
            <unmanaged>ERROR_DS_MODIFYDN_DISALLOWED_BY_FLAG</unmanaged>	
            <unmanaged-short>ERROR_DS_MODIFYDN_DISALLOWED_BY_FLAG</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsModifydnWrongGrandparent">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_MODIFYDN_WRONG_GRANDPARENT']/*"/>	
            <unmanaged>ERROR_DS_MODIFYDN_WRONG_GRANDPARENT</unmanaged>	
            <unmanaged-short>ERROR_DS_MODIFYDN_WRONG_GRANDPARENT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsNameErrorTrustReferral">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_NAME_ERROR_TRUST_REFERRAL']/*"/>	
            <unmanaged>ERROR_DS_NAME_ERROR_TRUST_REFERRAL</unmanaged>	
            <unmanaged-short>ERROR_DS_NAME_ERROR_TRUST_REFERRAL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NotSupportedOnStandardServer">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NOT_SUPPORTED_ON_STANDARD_SERVER']/*"/>	
            <unmanaged>ERROR_NOT_SUPPORTED_ON_STANDARD_SERVER</unmanaged>	
            <unmanaged-short>ERROR_NOT_SUPPORTED_ON_STANDARD_SERVER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsCantAccessRemotePartOfAd">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_CANT_ACCESS_REMOTE_PART_OF_AD']/*"/>	
            <unmanaged>ERROR_DS_CANT_ACCESS_REMOTE_PART_OF_AD</unmanaged>	
            <unmanaged-short>ERROR_DS_CANT_ACCESS_REMOTE_PART_OF_AD</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsCrImpossibleToValidateV2">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE_V2']/*"/>	
            <unmanaged>ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE_V2</unmanaged>	
            <unmanaged-short>ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE_V2</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsThreadLimitExceeded">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_THREAD_LIMIT_EXCEEDED']/*"/>	
            <unmanaged>ERROR_DS_THREAD_LIMIT_EXCEEDED</unmanaged>	
            <unmanaged-short>ERROR_DS_THREAD_LIMIT_EXCEEDED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsNotClosest">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_NOT_CLOSEST']/*"/>	
            <unmanaged>ERROR_DS_NOT_CLOSEST</unmanaged>	
            <unmanaged-short>ERROR_DS_NOT_CLOSEST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsCantDeriveSpnWithoutServerRef">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_CANT_DERIVE_SPN_WITHOUT_SERVER_REF']/*"/>	
            <unmanaged>ERROR_DS_CANT_DERIVE_SPN_WITHOUT_SERVER_REF</unmanaged>	
            <unmanaged-short>ERROR_DS_CANT_DERIVE_SPN_WITHOUT_SERVER_REF</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsSingleUserModeFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_SINGLE_USER_MODE_FAILED']/*"/>	
            <unmanaged>ERROR_DS_SINGLE_USER_MODE_FAILED</unmanaged>	
            <unmanaged-short>ERROR_DS_SINGLE_USER_MODE_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsNtdscriptSyntaxError">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_NTDSCRIPT_SYNTAX_ERROR']/*"/>	
            <unmanaged>ERROR_DS_NTDSCRIPT_SYNTAX_ERROR</unmanaged>	
            <unmanaged-short>ERROR_DS_NTDSCRIPT_SYNTAX_ERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsNtdscriptProcessError">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_NTDSCRIPT_PROCESS_ERROR']/*"/>	
            <unmanaged>ERROR_DS_NTDSCRIPT_PROCESS_ERROR</unmanaged>	
            <unmanaged-short>ERROR_DS_NTDSCRIPT_PROCESS_ERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDifferentReplEpochs">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DIFFERENT_REPL_EPOCHS']/*"/>	
            <unmanaged>ERROR_DS_DIFFERENT_REPL_EPOCHS</unmanaged>	
            <unmanaged-short>ERROR_DS_DIFFERENT_REPL_EPOCHS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDrsExtensionsChanged">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DRS_EXTENSIONS_CHANGED']/*"/>	
            <unmanaged>ERROR_DS_DRS_EXTENSIONS_CHANGED</unmanaged>	
            <unmanaged-short>ERROR_DS_DRS_EXTENSIONS_CHANGED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsReplicaSetChangeNotAllowedOnDisabledCr">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_REPLICA_SET_CHANGE_NOT_ALLOWED_ON_DISABLED_CR']/*"/>	
            <unmanaged>ERROR_DS_REPLICA_SET_CHANGE_NOT_ALLOWED_ON_DISABLED_CR</unmanaged>	
            <unmanaged-short>ERROR_DS_REPLICA_SET_CHANGE_NOT_ALLOWED_ON_DISABLED_CR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsNoMsdsIntid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_NO_MSDS_INTID']/*"/>	
            <unmanaged>ERROR_DS_NO_MSDS_INTID</unmanaged>	
            <unmanaged-short>ERROR_DS_NO_MSDS_INTID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDupMsdsIntid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DUP_MSDS_INTID']/*"/>	
            <unmanaged>ERROR_DS_DUP_MSDS_INTID</unmanaged>	
            <unmanaged-short>ERROR_DS_DUP_MSDS_INTID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsExistsInRdnattid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_EXISTS_IN_RDNATTID']/*"/>	
            <unmanaged>ERROR_DS_EXISTS_IN_RDNATTID</unmanaged>	
            <unmanaged-short>ERROR_DS_EXISTS_IN_RDNATTID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsAuthorizationFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_AUTHORIZATION_FAILED']/*"/>	
            <unmanaged>ERROR_DS_AUTHORIZATION_FAILED</unmanaged>	
            <unmanaged-short>ERROR_DS_AUTHORIZATION_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsInvalidScript">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_INVALID_SCRIPT']/*"/>	
            <unmanaged>ERROR_DS_INVALID_SCRIPT</unmanaged>	
            <unmanaged-short>ERROR_DS_INVALID_SCRIPT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsRemoteCrossrefOperationFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_REMOTE_CROSSREF_OP_FAILED']/*"/>	
            <unmanaged>ERROR_DS_REMOTE_CROSSREF_OP_FAILED</unmanaged>	
            <unmanaged-short>ERROR_DS_REMOTE_CROSSREF_OP_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsCrossRefBusy">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_CROSS_REF_BUSY']/*"/>	
            <unmanaged>ERROR_DS_CROSS_REF_BUSY</unmanaged>	
            <unmanaged-short>ERROR_DS_CROSS_REF_BUSY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsCantDeriveSpnForDeletedDomain">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_CANT_DERIVE_SPN_FOR_DELETED_DOMAIN']/*"/>	
            <unmanaged>ERROR_DS_CANT_DERIVE_SPN_FOR_DELETED_DOMAIN</unmanaged>	
            <unmanaged-short>ERROR_DS_CANT_DERIVE_SPN_FOR_DELETED_DOMAIN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsCantDemoteWithWriteableNc">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_CANT_DEMOTE_WITH_WRITEABLE_NC']/*"/>	
            <unmanaged>ERROR_DS_CANT_DEMOTE_WITH_WRITEABLE_NC</unmanaged>	
            <unmanaged-short>ERROR_DS_CANT_DEMOTE_WITH_WRITEABLE_NC</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDuplicateIdFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DUPLICATE_ID_FOUND']/*"/>	
            <unmanaged>ERROR_DS_DUPLICATE_ID_FOUND</unmanaged>	
            <unmanaged-short>ERROR_DS_DUPLICATE_ID_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsInsufficientAttrToCreateObject">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_INSUFFICIENT_ATTR_TO_CREATE_OBJECT']/*"/>	
            <unmanaged>ERROR_DS_INSUFFICIENT_ATTR_TO_CREATE_OBJECT</unmanaged>	
            <unmanaged-short>ERROR_DS_INSUFFICIENT_ATTR_TO_CREATE_OBJECT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsGroupConversionError">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_GROUP_CONVERSION_ERROR']/*"/>	
            <unmanaged>ERROR_DS_GROUP_CONVERSION_ERROR</unmanaged>	
            <unmanaged-short>ERROR_DS_GROUP_CONVERSION_ERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsCantMoveAppBasicGroup">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_CANT_MOVE_APP_BASIC_GROUP']/*"/>	
            <unmanaged>ERROR_DS_CANT_MOVE_APP_BASIC_GROUP</unmanaged>	
            <unmanaged-short>ERROR_DS_CANT_MOVE_APP_BASIC_GROUP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsCantMoveAppQueryGroup">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_CANT_MOVE_APP_QUERY_GROUP']/*"/>	
            <unmanaged>ERROR_DS_CANT_MOVE_APP_QUERY_GROUP</unmanaged>	
            <unmanaged-short>ERROR_DS_CANT_MOVE_APP_QUERY_GROUP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsRoleNotVerified">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_ROLE_NOT_VERIFIED']/*"/>	
            <unmanaged>ERROR_DS_ROLE_NOT_VERIFIED</unmanaged>	
            <unmanaged-short>ERROR_DS_ROLE_NOT_VERIFIED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsWkoContainerCannotBeSpecial">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_WKO_CONTAINER_CANNOT_BE_SPECIAL']/*"/>	
            <unmanaged>ERROR_DS_WKO_CONTAINER_CANNOT_BE_SPECIAL</unmanaged>	
            <unmanaged-short>ERROR_DS_WKO_CONTAINER_CANNOT_BE_SPECIAL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDomainRenameInProgress">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DOMAIN_RENAME_IN_PROGRESS']/*"/>	
            <unmanaged>ERROR_DS_DOMAIN_RENAME_IN_PROGRESS</unmanaged>	
            <unmanaged-short>ERROR_DS_DOMAIN_RENAME_IN_PROGRESS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsExistingAdChildNc">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_EXISTING_AD_CHILD_NC']/*"/>	
            <unmanaged>ERROR_DS_EXISTING_AD_CHILD_NC</unmanaged>	
            <unmanaged-short>ERROR_DS_EXISTING_AD_CHILD_NC</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsReplLifetimeExceeded">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_REPL_LIFETIME_EXCEEDED']/*"/>	
            <unmanaged>ERROR_DS_REPL_LIFETIME_EXCEEDED</unmanaged>	
            <unmanaged-short>ERROR_DS_REPL_LIFETIME_EXCEEDED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDisallowedInSystemContainer">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DISALLOWED_IN_SYSTEM_CONTAINER']/*"/>	
            <unmanaged>ERROR_DS_DISALLOWED_IN_SYSTEM_CONTAINER</unmanaged>	
            <unmanaged-short>ERROR_DS_DISALLOWED_IN_SYSTEM_CONTAINER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsLdapSendQueueFull">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_LDAP_SEND_QUEUE_FULL']/*"/>	
            <unmanaged>ERROR_DS_LDAP_SEND_QUEUE_FULL</unmanaged>	
            <unmanaged-short>ERROR_DS_LDAP_SEND_QUEUE_FULL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDraOutScheduleWindow">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DRA_OUT_SCHEDULE_WINDOW']/*"/>	
            <unmanaged>ERROR_DS_DRA_OUT_SCHEDULE_WINDOW</unmanaged>	
            <unmanaged-short>ERROR_DS_DRA_OUT_SCHEDULE_WINDOW</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsPolicyNotKnown">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_POLICY_NOT_KNOWN']/*"/>	
            <unmanaged>ERROR_DS_POLICY_NOT_KNOWN</unmanaged>	
            <unmanaged-short>ERROR_DS_POLICY_NOT_KNOWN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoSiteSettingsObject">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_SITE_SETTINGS_OBJECT']/*"/>	
            <unmanaged>ERROR_NO_SITE_SETTINGS_OBJECT</unmanaged>	
            <unmanaged-short>ERROR_NO_SITE_SETTINGS_OBJECT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoSecrets">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_SECRETS']/*"/>	
            <unmanaged>ERROR_NO_SECRETS</unmanaged>	
            <unmanaged-short>ERROR_NO_SECRETS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NoWritableDeviceContextFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NO_WRITABLE_DC_FOUND']/*"/>	
            <unmanaged>ERROR_NO_WRITABLE_DC_FOUND</unmanaged>	
            <unmanaged-short>ERROR_NO_WRITABLE_DC_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsNoServerObject">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_NO_SERVER_OBJECT']/*"/>	
            <unmanaged>ERROR_DS_NO_SERVER_OBJECT</unmanaged>	
            <unmanaged-short>ERROR_DS_NO_SERVER_OBJECT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsNoNtdsaObject">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_NO_NTDSA_OBJECT']/*"/>	
            <unmanaged>ERROR_DS_NO_NTDSA_OBJECT</unmanaged>	
            <unmanaged-short>ERROR_DS_NO_NTDSA_OBJECT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsNonAsqSearch">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_NON_ASQ_SEARCH']/*"/>	
            <unmanaged>ERROR_DS_NON_ASQ_SEARCH</unmanaged>	
            <unmanaged-short>ERROR_DS_NON_ASQ_SEARCH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsAuditFailure">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_AUDIT_FAILURE']/*"/>	
            <unmanaged>ERROR_DS_AUDIT_FAILURE</unmanaged>	
            <unmanaged-short>ERROR_DS_AUDIT_FAILURE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsInvalidSearchFlagsSubtree">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_INVALID_SEARCH_FLAG_SUBTREE']/*"/>	
            <unmanaged>ERROR_DS_INVALID_SEARCH_FLAG_SUBTREE</unmanaged>	
            <unmanaged-short>ERROR_DS_INVALID_SEARCH_FLAG_SUBTREE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsInvalidSearchFlagsTuple">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_INVALID_SEARCH_FLAG_TUPLE']/*"/>	
            <unmanaged>ERROR_DS_INVALID_SEARCH_FLAG_TUPLE</unmanaged>	
            <unmanaged-short>ERROR_DS_INVALID_SEARCH_FLAG_TUPLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsHierarchyTableTooDeep">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_HIERARCHY_TABLE_TOO_DEEP']/*"/>	
            <unmanaged>ERROR_DS_HIERARCHY_TABLE_TOO_DEEP</unmanaged>	
            <unmanaged-short>ERROR_DS_HIERARCHY_TABLE_TOO_DEEP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDraCorruptUtdVector">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DRA_CORRUPT_UTD_VECTOR']/*"/>	
            <unmanaged>ERROR_DS_DRA_CORRUPT_UTD_VECTOR</unmanaged>	
            <unmanaged-short>ERROR_DS_DRA_CORRUPT_UTD_VECTOR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDraSecretsDenied">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DRA_SECRETS_DENIED']/*"/>	
            <unmanaged>ERROR_DS_DRA_SECRETS_DENIED</unmanaged>	
            <unmanaged-short>ERROR_DS_DRA_SECRETS_DENIED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsReservedMapiId">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_RESERVED_MAPI_ID']/*"/>	
            <unmanaged>ERROR_DS_RESERVED_MAPI_ID</unmanaged>	
            <unmanaged-short>ERROR_DS_RESERVED_MAPI_ID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsMapiIdNotAvailable">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_MAPI_ID_NOT_AVAILABLE']/*"/>	
            <unmanaged>ERROR_DS_MAPI_ID_NOT_AVAILABLE</unmanaged>	
            <unmanaged-short>ERROR_DS_MAPI_ID_NOT_AVAILABLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDraMissingKrbtgtSecret">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DRA_MISSING_KRBTGT_SECRET']/*"/>	
            <unmanaged>ERROR_DS_DRA_MISSING_KRBTGT_SECRET</unmanaged>	
            <unmanaged-short>ERROR_DS_DRA_MISSING_KRBTGT_SECRET</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDomainNameExistsInForest">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DOMAIN_NAME_EXISTS_IN_FOREST']/*"/>	
            <unmanaged>ERROR_DS_DOMAIN_NAME_EXISTS_IN_FOREST</unmanaged>	
            <unmanaged-short>ERROR_DS_DOMAIN_NAME_EXISTS_IN_FOREST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsFlatNameExistsInForest">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_FLAT_NAME_EXISTS_IN_FOREST']/*"/>	
            <unmanaged>ERROR_DS_FLAT_NAME_EXISTS_IN_FOREST</unmanaged>	
            <unmanaged-short>ERROR_DS_FLAT_NAME_EXISTS_IN_FOREST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidUserPrincipalName">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_USER_PRINCIPAL_NAME']/*"/>	
            <unmanaged>ERROR_INVALID_USER_PRINCIPAL_NAME</unmanaged>	
            <unmanaged-short>ERROR_INVALID_USER_PRINCIPAL_NAME</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsOidMappedGroupCantHaveMembers">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_OID_MAPPED_GROUP_CANT_HAVE_MEMBERS']/*"/>	
            <unmanaged>ERROR_DS_OID_MAPPED_GROUP_CANT_HAVE_MEMBERS</unmanaged>	
            <unmanaged-short>ERROR_DS_OID_MAPPED_GROUP_CANT_HAVE_MEMBERS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsOidNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_OID_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_DS_OID_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_DS_OID_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDraRecycledTarget">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DRA_RECYCLED_TARGET']/*"/>	
            <unmanaged>ERROR_DS_DRA_RECYCLED_TARGET</unmanaged>	
            <unmanaged-short>ERROR_DS_DRA_RECYCLED_TARGET</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsDisallowedNcRedirect">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_DISALLOWED_NC_REDIRECT']/*"/>	
            <unmanaged>ERROR_DS_DISALLOWED_NC_REDIRECT</unmanaged>	
            <unmanaged-short>ERROR_DS_DISALLOWED_NC_REDIRECT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsHighAdldsFfl">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_HIGH_ADLDS_FFL']/*"/>	
            <unmanaged>ERROR_DS_HIGH_ADLDS_FFL</unmanaged>	
            <unmanaged-short>ERROR_DS_HIGH_ADLDS_FFL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsHighDsaVersion">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_HIGH_DSA_VERSION']/*"/>	
            <unmanaged>ERROR_DS_HIGH_DSA_VERSION</unmanaged>	
            <unmanaged-short>ERROR_DS_HIGH_DSA_VERSION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsLowAdldsFfl">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_LOW_ADLDS_FFL']/*"/>	
            <unmanaged>ERROR_DS_LOW_ADLDS_FFL</unmanaged>	
            <unmanaged-short>ERROR_DS_LOW_ADLDS_FFL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DomainSidSameAsLocalWorkstation">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DOMAIN_SID_SAME_AS_LOCAL_WORKSTATION']/*"/>	
            <unmanaged>ERROR_DOMAIN_SID_SAME_AS_LOCAL_WORKSTATION</unmanaged>	
            <unmanaged-short>ERROR_DOMAIN_SID_SAME_AS_LOCAL_WORKSTATION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DsUndeleteSamValidationFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DS_UNDELETE_SAM_VALIDATION_FAILED']/*"/>	
            <unmanaged>ERROR_DS_UNDELETE_SAM_VALIDATION_FAILED</unmanaged>	
            <unmanaged-short>ERROR_DS_UNDELETE_SAM_VALIDATION_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IncorrectAccountType">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INCORRECT_ACCOUNT_TYPE']/*"/>	
            <unmanaged>ERROR_INCORRECT_ACCOUNT_TYPE</unmanaged>	
            <unmanaged-short>ERROR_INCORRECT_ACCOUNT_TYPE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecQmPolicyExists">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_QM_POLICY_EXISTS']/*"/>	
            <unmanaged>ERROR_IPSEC_QM_POLICY_EXISTS</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_QM_POLICY_EXISTS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecQmPolicyNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_QM_POLICY_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_IPSEC_QM_POLICY_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_QM_POLICY_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecQmPolicyInUse">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_QM_POLICY_IN_USE']/*"/>	
            <unmanaged>ERROR_IPSEC_QM_POLICY_IN_USE</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_QM_POLICY_IN_USE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecMmPolicyExists">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_MM_POLICY_EXISTS']/*"/>	
            <unmanaged>ERROR_IPSEC_MM_POLICY_EXISTS</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_MM_POLICY_EXISTS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecMmPolicyNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_MM_POLICY_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_IPSEC_MM_POLICY_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_MM_POLICY_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecMmPolicyInUse">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_MM_POLICY_IN_USE']/*"/>	
            <unmanaged>ERROR_IPSEC_MM_POLICY_IN_USE</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_MM_POLICY_IN_USE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecMmFilterExists">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_MM_FILTER_EXISTS']/*"/>	
            <unmanaged>ERROR_IPSEC_MM_FILTER_EXISTS</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_MM_FILTER_EXISTS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecMmFilterNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_MM_FILTER_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_IPSEC_MM_FILTER_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_MM_FILTER_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecTransportFilterExists">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_TRANSPORT_FILTER_EXISTS']/*"/>	
            <unmanaged>ERROR_IPSEC_TRANSPORT_FILTER_EXISTS</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_TRANSPORT_FILTER_EXISTS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecTransportFilterNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_TRANSPORT_FILTER_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_IPSEC_TRANSPORT_FILTER_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_TRANSPORT_FILTER_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecMmAuthExists">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_MM_AUTH_EXISTS']/*"/>	
            <unmanaged>ERROR_IPSEC_MM_AUTH_EXISTS</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_MM_AUTH_EXISTS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecMmAuthNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_MM_AUTH_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_IPSEC_MM_AUTH_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_MM_AUTH_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecMmAuthInUse">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_MM_AUTH_IN_USE']/*"/>	
            <unmanaged>ERROR_IPSEC_MM_AUTH_IN_USE</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_MM_AUTH_IN_USE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecDefaultMmPolicyNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_DEFAULT_MM_POLICY_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_IPSEC_DEFAULT_MM_POLICY_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_DEFAULT_MM_POLICY_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecDefaultMmAuthNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_DEFAULT_MM_AUTH_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_IPSEC_DEFAULT_MM_AUTH_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_DEFAULT_MM_AUTH_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecDefaultQmPolicyNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_DEFAULT_QM_POLICY_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_IPSEC_DEFAULT_QM_POLICY_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_DEFAULT_QM_POLICY_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecTunnelFilterExists">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_TUNNEL_FILTER_EXISTS']/*"/>	
            <unmanaged>ERROR_IPSEC_TUNNEL_FILTER_EXISTS</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_TUNNEL_FILTER_EXISTS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecTunnelFilterNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_TUNNEL_FILTER_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_IPSEC_TUNNEL_FILTER_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_TUNNEL_FILTER_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecMmFilterPendingDeletion">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_MM_FILTER_PENDING_DELETION']/*"/>	
            <unmanaged>ERROR_IPSEC_MM_FILTER_PENDING_DELETION</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_MM_FILTER_PENDING_DELETION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecTransportFilterPendingDeletion">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_TRANSPORT_FILTER_PENDING_DELETION']/*"/>	
            <unmanaged>ERROR_IPSEC_TRANSPORT_FILTER_PENDING_DELETION</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_TRANSPORT_FILTER_PENDING_DELETION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecTunnelFilterPendingDeletion">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_TUNNEL_FILTER_PENDING_DELETION']/*"/>	
            <unmanaged>ERROR_IPSEC_TUNNEL_FILTER_PENDING_DELETION</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_TUNNEL_FILTER_PENDING_DELETION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecMmPolicyPendingDeletion">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_MM_POLICY_PENDING_DELETION']/*"/>	
            <unmanaged>ERROR_IPSEC_MM_POLICY_PENDING_DELETION</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_MM_POLICY_PENDING_DELETION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecMmAuthPendingDeletion">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_MM_AUTH_PENDING_DELETION']/*"/>	
            <unmanaged>ERROR_IPSEC_MM_AUTH_PENDING_DELETION</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_MM_AUTH_PENDING_DELETION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecQmPolicyPendingDeletion">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_QM_POLICY_PENDING_DELETION']/*"/>	
            <unmanaged>ERROR_IPSEC_QM_POLICY_PENDING_DELETION</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_QM_POLICY_PENDING_DELETION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeNegStatusBegin">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_NEG_STATUS_BEGIN']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_NEG_STATUS_BEGIN</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_NEG_STATUS_BEGIN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeAuthFail">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_AUTH_FAIL']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_AUTH_FAIL</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_AUTH_FAIL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeAttribFail">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_ATTRIB_FAIL']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_ATTRIB_FAIL</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_ATTRIB_FAIL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeNegotiationPending">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_NEGOTIATION_PENDING']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_NEGOTIATION_PENDING</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_NEGOTIATION_PENDING</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeGeneralProcessingError">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_GENERAL_PROCESSING_ERROR']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_GENERAL_PROCESSING_ERROR</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_GENERAL_PROCESSING_ERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeTimedOut">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_TIMED_OUT']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_TIMED_OUT</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_TIMED_OUT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeNoCert">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_NO_CERT']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_NO_CERT</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_NO_CERT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeSaDeleted">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_SA_DELETED']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_SA_DELETED</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_SA_DELETED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeSaReaped">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_SA_REAPED']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_SA_REAPED</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_SA_REAPED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeMmAcquireDrop">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_MM_ACQUIRE_DROP']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_MM_ACQUIRE_DROP</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_MM_ACQUIRE_DROP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeQmAcquireDrop">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_QM_ACQUIRE_DROP']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_QM_ACQUIRE_DROP</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_QM_ACQUIRE_DROP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeQueueDropMm">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_QUEUE_DROP_MM']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_QUEUE_DROP_MM</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_QUEUE_DROP_MM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeQueueDropNoMm">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_QUEUE_DROP_NO_MM']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_QUEUE_DROP_NO_MM</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_QUEUE_DROP_NO_MM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeDropNoResponse">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_DROP_NO_RESPONSE']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_DROP_NO_RESPONSE</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_DROP_NO_RESPONSE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeMmDelayDrop">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_MM_DELAY_DROP']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_MM_DELAY_DROP</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_MM_DELAY_DROP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeQmDelayDrop">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_QM_DELAY_DROP']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_QM_DELAY_DROP</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_QM_DELAY_DROP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeError">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_ERROR']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_ERROR</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_ERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeCrlFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_CRL_FAILED']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_CRL_FAILED</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_CRL_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeInvalidKeyUsage">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_INVALID_KEY_USAGE']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_INVALID_KEY_USAGE</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_INVALID_KEY_USAGE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeInvalidCertType">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_INVALID_CERT_TYPE']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_INVALID_CERT_TYPE</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_INVALID_CERT_TYPE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeNoPrivateKey">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_NO_PRIVATE_KEY']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_NO_PRIVATE_KEY</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_NO_PRIVATE_KEY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeSimultaneousRekey">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_SIMULTANEOUS_REKEY']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_SIMULTANEOUS_REKEY</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_SIMULTANEOUS_REKEY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeDhFail">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_DH_FAIL']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_DH_FAIL</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_DH_FAIL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeCriticalPayloadNotRecognized">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_CRITICAL_PAYLOAD_NOT_RECOGNIZED']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_CRITICAL_PAYLOAD_NOT_RECOGNIZED</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_CRITICAL_PAYLOAD_NOT_RECOGNIZED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeInvalidHeader">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_INVALID_HEADER']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_INVALID_HEADER</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_INVALID_HEADER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeNoPolicy">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_NO_POLICY']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_NO_POLICY</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_NO_POLICY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeInvalidSignature">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_INVALID_SIGNATURE']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_INVALID_SIGNATURE</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_INVALID_SIGNATURE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeKerberosError">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_KERBEROS_ERROR']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_KERBEROS_ERROR</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_KERBEROS_ERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeNoPublicKey">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_NO_PUBLIC_KEY']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_NO_PUBLIC_KEY</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_NO_PUBLIC_KEY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeProcessErr">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_PROCESS_ERR']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_PROCESS_ERR</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_PROCESS_ERR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeProcessErrSa">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_PROCESS_ERR_SA']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_PROCESS_ERR_SA</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_PROCESS_ERR_SA</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeProcessErrProp">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_PROCESS_ERR_PROP']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_PROCESS_ERR_PROP</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_PROCESS_ERR_PROP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeProcessErrTrans">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_PROCESS_ERR_TRANS']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_PROCESS_ERR_TRANS</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_PROCESS_ERR_TRANS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeProcessErrKe">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_PROCESS_ERR_KE']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_PROCESS_ERR_KE</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_PROCESS_ERR_KE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeProcessErrId">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_PROCESS_ERR_ID']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_PROCESS_ERR_ID</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_PROCESS_ERR_ID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeProcessErrCert">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_PROCESS_ERR_CERT']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_PROCESS_ERR_CERT</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_PROCESS_ERR_CERT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeProcessErrCertReq">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_PROCESS_ERR_CERT_REQ']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_PROCESS_ERR_CERT_REQ</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_PROCESS_ERR_CERT_REQ</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeProcessErrHash">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_PROCESS_ERR_HASH']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_PROCESS_ERR_HASH</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_PROCESS_ERR_HASH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeProcessErrSig">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_PROCESS_ERR_SIG']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_PROCESS_ERR_SIG</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_PROCESS_ERR_SIG</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeProcessErrNonce">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_PROCESS_ERR_NONCE']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_PROCESS_ERR_NONCE</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_PROCESS_ERR_NONCE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeProcessErrNotify">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_PROCESS_ERR_NOTIFY']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_PROCESS_ERR_NOTIFY</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_PROCESS_ERR_NOTIFY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeProcessErrDelete">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_PROCESS_ERR_DELETE']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_PROCESS_ERR_DELETE</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_PROCESS_ERR_DELETE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeProcessErrVendor">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_PROCESS_ERR_VENDOR']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_PROCESS_ERR_VENDOR</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_PROCESS_ERR_VENDOR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeInvalidPayload">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_INVALID_PAYLOAD']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_INVALID_PAYLOAD</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_INVALID_PAYLOAD</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeLoadSoftSa">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_LOAD_SOFT_SA']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_LOAD_SOFT_SA</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_LOAD_SOFT_SA</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeSoftSaTornDown">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_SOFT_SA_TORN_DOWN']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_SOFT_SA_TORN_DOWN</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_SOFT_SA_TORN_DOWN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeInvalidCookie">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_INVALID_COOKIE']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_INVALID_COOKIE</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_INVALID_COOKIE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeNoPeerCert">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_NO_PEER_CERT']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_NO_PEER_CERT</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_NO_PEER_CERT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkePeerCrlFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_PEER_CRL_FAILED']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_PEER_CRL_FAILED</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_PEER_CRL_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkePolicyChange">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_POLICY_CHANGE']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_POLICY_CHANGE</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_POLICY_CHANGE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeNoMmPolicy">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_NO_MM_POLICY']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_NO_MM_POLICY</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_NO_MM_POLICY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeNotcbpriv">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_NOTCBPRIV']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_NOTCBPRIV</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_NOTCBPRIV</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeSecloadfail">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_SECLOADFAIL']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_SECLOADFAIL</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_SECLOADFAIL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeFailsspinit">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_FAILSSPINIT']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_FAILSSPINIT</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_FAILSSPINIT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeFailqueryssp">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_FAILQUERYSSP']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_FAILQUERYSSP</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_FAILQUERYSSP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeSrvacqfail">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_SRVACQFAIL']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_SRVACQFAIL</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_SRVACQFAIL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeSrvquerycred">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_SRVQUERYCRED']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_SRVQUERYCRED</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_SRVQUERYCRED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeGetspifail">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_GETSPIFAIL']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_GETSPIFAIL</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_GETSPIFAIL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeInvalidFilter">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_INVALID_FILTER']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_INVALID_FILTER</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_INVALID_FILTER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeOutOfMemory">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_OUT_OF_MEMORY']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_OUT_OF_MEMORY</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_OUT_OF_MEMORY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeAddUpdateKeyFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_ADD_UPDATE_KEY_FAILED']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_ADD_UPDATE_KEY_FAILED</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_ADD_UPDATE_KEY_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeInvalidPolicy">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_INVALID_POLICY']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_INVALID_POLICY</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_INVALID_POLICY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeUnknownDoi">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_UNKNOWN_DOI']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_UNKNOWN_DOI</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_UNKNOWN_DOI</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeInvalidSituation">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_INVALID_SITUATION']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_INVALID_SITUATION</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_INVALID_SITUATION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeDhFailure">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_DH_FAILURE']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_DH_FAILURE</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_DH_FAILURE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeInvalidGroup">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_INVALID_GROUP']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_INVALID_GROUP</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_INVALID_GROUP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeEncrypt">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_ENCRYPT']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_ENCRYPT</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_ENCRYPT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeDecrypt">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_DECRYPT']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_DECRYPT</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_DECRYPT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkePolicyMatch">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_POLICY_MATCH']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_POLICY_MATCH</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_POLICY_MATCH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeUnsupportedId">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_UNSUPPORTED_ID']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_UNSUPPORTED_ID</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_UNSUPPORTED_ID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeInvalidHash">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_INVALID_HASH']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_INVALID_HASH</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_INVALID_HASH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeInvalidHashAlg">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_INVALID_HASH_ALG']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_INVALID_HASH_ALG</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_INVALID_HASH_ALG</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeInvalidHashSize">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_INVALID_HASH_SIZE']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_INVALID_HASH_SIZE</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_INVALID_HASH_SIZE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeInvalidEncryptAlg">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_INVALID_ENCRYPT_ALG']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_INVALID_ENCRYPT_ALG</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_INVALID_ENCRYPT_ALG</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeInvalidAuthAlg">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_INVALID_AUTH_ALG']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_INVALID_AUTH_ALG</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_INVALID_AUTH_ALG</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeInvalidSig">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_INVALID_SIG']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_INVALID_SIG</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_INVALID_SIG</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeLoadFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_LOAD_FAILED']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_LOAD_FAILED</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_LOAD_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeRpcDelete">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_RPC_DELETE']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_RPC_DELETE</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_RPC_DELETE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeBenignReinit">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_BENIGN_REINIT']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_BENIGN_REINIT</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_BENIGN_REINIT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeInvalidResponderLifetimeNotify">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_INVALID_RESPONDER_LIFETIME_NOTIFY']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_INVALID_RESPONDER_LIFETIME_NOTIFY</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_INVALID_RESPONDER_LIFETIME_NOTIFY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeInvalidMajorVersion">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_INVALID_MAJOR_VERSION']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_INVALID_MAJOR_VERSION</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_INVALID_MAJOR_VERSION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeInvalidCertKeylen">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_INVALID_CERT_KEYLEN']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_INVALID_CERT_KEYLEN</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_INVALID_CERT_KEYLEN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeMmLimit">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_MM_LIMIT']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_MM_LIMIT</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_MM_LIMIT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeNegotiationDisabled">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_NEGOTIATION_DISABLED']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_NEGOTIATION_DISABLED</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_NEGOTIATION_DISABLED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeQmLimit">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_QM_LIMIT']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_QM_LIMIT</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_QM_LIMIT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeMmExpired">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_MM_EXPIRED']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_MM_EXPIRED</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_MM_EXPIRED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkePeerMmAssumedInvalid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_PEER_MM_ASSUMED_INVALID']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_PEER_MM_ASSUMED_INVALID</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_PEER_MM_ASSUMED_INVALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeCertChainPolicyMismatch">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_CERT_CHAIN_POLICY_MISMATCH']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_CERT_CHAIN_POLICY_MISMATCH</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_CERT_CHAIN_POLICY_MISMATCH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeUnexpectedMessageId">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_UNEXPECTED_MESSAGE_ID']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_UNEXPECTED_MESSAGE_ID</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_UNEXPECTED_MESSAGE_ID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeInvalidAuthPayload">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_INVALID_AUTH_PAYLOAD']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_INVALID_AUTH_PAYLOAD</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_INVALID_AUTH_PAYLOAD</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeDosCookieSent">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_DOS_COOKIE_SENT']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_DOS_COOKIE_SENT</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_DOS_COOKIE_SENT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeShuttingDown">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_SHUTTING_DOWN']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_SHUTTING_DOWN</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_SHUTTING_DOWN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeCgaAuthFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_CGA_AUTH_FAILED']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_CGA_AUTH_FAILED</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_CGA_AUTH_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeProcessErrNatoa">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_PROCESS_ERR_NATOA']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_PROCESS_ERR_NATOA</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_PROCESS_ERR_NATOA</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeInvalidMmForQm">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_INVALID_MM_FOR_QM']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_INVALID_MM_FOR_QM</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_INVALID_MM_FOR_QM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeQmExpired">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_QM_EXPIRED']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_QM_EXPIRED</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_QM_EXPIRED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeTooManyFilters">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_TOO_MANY_FILTERS']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_TOO_MANY_FILTERS</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_TOO_MANY_FILTERS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeNegStatusEnd">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_NEG_STATUS_END']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_NEG_STATUS_END</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_NEG_STATUS_END</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeKillDummyNapTunnel">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_KILL_DUMMY_NAP_TUNNEL']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_KILL_DUMMY_NAP_TUNNEL</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_KILL_DUMMY_NAP_TUNNEL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeInnerIpAssignmentFailure">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_INNER_IP_ASSIGNMENT_FAILURE']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_INNER_IP_ASSIGNMENT_FAILURE</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_INNER_IP_ASSIGNMENT_FAILURE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeRequireCpPayloadMissing">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_REQUIRE_CP_PAYLOAD_MISSING']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_REQUIRE_CP_PAYLOAD_MISSING</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_REQUIRE_CP_PAYLOAD_MISSING</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecKeyModuleImpersonationNegotiationPending">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_KEY_MODULE_IMPERSONATION_NEGOTIATION_PENDING']/*"/>	
            <unmanaged>ERROR_IPSEC_KEY_MODULE_IMPERSONATION_NEGOTIATION_PENDING</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_KEY_MODULE_IMPERSONATION_NEGOTIATION_PENDING</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeCoexistenceSuppress">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_COEXISTENCE_SUPPRESS']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_COEXISTENCE_SUPPRESS</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_COEXISTENCE_SUPPRESS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeRatelimitDrop">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_RATELIMIT_DROP']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_RATELIMIT_DROP</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_RATELIMIT_DROP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkePeerDoesntSupportMobike">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_PEER_DOESNT_SUPPORT_MOBIKE']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_PEER_DOESNT_SUPPORT_MOBIKE</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_PEER_DOESNT_SUPPORT_MOBIKE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeAuthorizationFailure">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_AUTHORIZATION_FAILURE']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_AUTHORIZATION_FAILURE</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_AUTHORIZATION_FAILURE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeStrongCredAuthorizationFailure">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_STRONG_CRED_AUTHORIZATION_FAILURE']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_STRONG_CRED_AUTHORIZATION_FAILURE</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_STRONG_CRED_AUTHORIZATION_FAILURE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeAuthorizationFailureWithOptionalRetry">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_AUTHORIZATION_FAILURE_WITH_OPTIONAL_RETRY']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_AUTHORIZATION_FAILURE_WITH_OPTIONAL_RETRY</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_AUTHORIZATION_FAILURE_WITH_OPTIONAL_RETRY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeStrongCredAuthorizationAndCertmapFailure">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_STRONG_CRED_AUTHORIZATION_AND_CERTMAP_FAILURE']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_STRONG_CRED_AUTHORIZATION_AND_CERTMAP_FAILURE</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_STRONG_CRED_AUTHORIZATION_AND_CERTMAP_FAILURE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIkeNegStatusExtendedEnd">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_IKE_NEG_STATUS_EXTENDED_END']/*"/>	
            <unmanaged>ERROR_IPSEC_IKE_NEG_STATUS_EXTENDED_END</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_IKE_NEG_STATUS_EXTENDED_END</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecBadSpi">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_BAD_SPI']/*"/>	
            <unmanaged>ERROR_IPSEC_BAD_SPI</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_BAD_SPI</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecSaLifetimeExpired">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_SA_LIFETIME_EXPIRED']/*"/>	
            <unmanaged>ERROR_IPSEC_SA_LIFETIME_EXPIRED</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_SA_LIFETIME_EXPIRED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecWrongSa">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_WRONG_SA']/*"/>	
            <unmanaged>ERROR_IPSEC_WRONG_SA</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_WRONG_SA</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecReplayCheckFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_REPLAY_CHECK_FAILED']/*"/>	
            <unmanaged>ERROR_IPSEC_REPLAY_CHECK_FAILED</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_REPLAY_CHECK_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecInvalidPacket">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_INVALID_PACKET']/*"/>	
            <unmanaged>ERROR_IPSEC_INVALID_PACKET</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_INVALID_PACKET</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecIntegrityCheckFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_INTEGRITY_CHECK_FAILED']/*"/>	
            <unmanaged>ERROR_IPSEC_INTEGRITY_CHECK_FAILED</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_INTEGRITY_CHECK_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecClearTextDrop">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_CLEAR_TEXT_DROP']/*"/>	
            <unmanaged>ERROR_IPSEC_CLEAR_TEXT_DROP</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_CLEAR_TEXT_DROP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecAuthFirewallDrop">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_AUTH_FIREWALL_DROP']/*"/>	
            <unmanaged>ERROR_IPSEC_AUTH_FIREWALL_DROP</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_AUTH_FIREWALL_DROP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecThrottleDrop">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_THROTTLE_DROP']/*"/>	
            <unmanaged>ERROR_IPSEC_THROTTLE_DROP</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_THROTTLE_DROP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecDospBlock">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_DOSP_BLOCK']/*"/>	
            <unmanaged>ERROR_IPSEC_DOSP_BLOCK</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_DOSP_BLOCK</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecDospReceivedMulticast">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_DOSP_RECEIVED_MULTICAST']/*"/>	
            <unmanaged>ERROR_IPSEC_DOSP_RECEIVED_MULTICAST</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_DOSP_RECEIVED_MULTICAST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecDospInvalidPacket">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_DOSP_INVALID_PACKET']/*"/>	
            <unmanaged>ERROR_IPSEC_DOSP_INVALID_PACKET</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_DOSP_INVALID_PACKET</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecDospStateLookupFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_DOSP_STATE_LOOKUP_FAILED']/*"/>	
            <unmanaged>ERROR_IPSEC_DOSP_STATE_LOOKUP_FAILED</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_DOSP_STATE_LOOKUP_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecDospMaximumEntries">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_DOSP_MAX_ENTRIES']/*"/>	
            <unmanaged>ERROR_IPSEC_DOSP_MAX_ENTRIES</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_DOSP_MAX_ENTRIES</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecDospKeymodNotAllowed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_DOSP_KEYMOD_NOT_ALLOWED']/*"/>	
            <unmanaged>ERROR_IPSEC_DOSP_KEYMOD_NOT_ALLOWED</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_DOSP_KEYMOD_NOT_ALLOWED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecDospNotInstalled">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_DOSP_NOT_INSTALLED']/*"/>	
            <unmanaged>ERROR_IPSEC_DOSP_NOT_INSTALLED</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_DOSP_NOT_INSTALLED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.IpsecDospMaximumPerIpRatelimitQueues">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_IPSEC_DOSP_MAX_PER_IP_RATELIMIT_QUEUES']/*"/>	
            <unmanaged>ERROR_IPSEC_DOSP_MAX_PER_IP_RATELIMIT_QUEUES</unmanaged>	
            <unmanaged-short>ERROR_IPSEC_DOSP_MAX_PER_IP_RATELIMIT_QUEUES</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsSectionNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_SECTION_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_SXS_SECTION_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_SXS_SECTION_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsCantGenActctx">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_CANT_GEN_ACTCTX']/*"/>	
            <unmanaged>ERROR_SXS_CANT_GEN_ACTCTX</unmanaged>	
            <unmanaged-short>ERROR_SXS_CANT_GEN_ACTCTX</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsInvalidActctxdataFormat">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_INVALID_ACTCTXDATA_FORMAT']/*"/>	
            <unmanaged>ERROR_SXS_INVALID_ACTCTXDATA_FORMAT</unmanaged>	
            <unmanaged-short>ERROR_SXS_INVALID_ACTCTXDATA_FORMAT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsAssemblyNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_ASSEMBLY_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_SXS_ASSEMBLY_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_SXS_ASSEMBLY_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsManifestFormatError">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_MANIFEST_FORMAT_ERROR']/*"/>	
            <unmanaged>ERROR_SXS_MANIFEST_FORMAT_ERROR</unmanaged>	
            <unmanaged-short>ERROR_SXS_MANIFEST_FORMAT_ERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsManifestParseError">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_MANIFEST_PARSE_ERROR']/*"/>	
            <unmanaged>ERROR_SXS_MANIFEST_PARSE_ERROR</unmanaged>	
            <unmanaged-short>ERROR_SXS_MANIFEST_PARSE_ERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsActivationContextDisabled">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_ACTIVATION_CONTEXT_DISABLED']/*"/>	
            <unmanaged>ERROR_SXS_ACTIVATION_CONTEXT_DISABLED</unmanaged>	
            <unmanaged-short>ERROR_SXS_ACTIVATION_CONTEXT_DISABLED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsKeyNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_KEY_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_SXS_KEY_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_SXS_KEY_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsVersionConflict">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_VERSION_CONFLICT']/*"/>	
            <unmanaged>ERROR_SXS_VERSION_CONFLICT</unmanaged>	
            <unmanaged-short>ERROR_SXS_VERSION_CONFLICT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsWrongSectionType">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_WRONG_SECTION_TYPE']/*"/>	
            <unmanaged>ERROR_SXS_WRONG_SECTION_TYPE</unmanaged>	
            <unmanaged-short>ERROR_SXS_WRONG_SECTION_TYPE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsThreadQueriesDisabled">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_THREAD_QUERIES_DISABLED']/*"/>	
            <unmanaged>ERROR_SXS_THREAD_QUERIES_DISABLED</unmanaged>	
            <unmanaged-short>ERROR_SXS_THREAD_QUERIES_DISABLED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsProcessDefaultAlreadySet">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_PROCESS_DEFAULT_ALREADY_SET']/*"/>	
            <unmanaged>ERROR_SXS_PROCESS_DEFAULT_ALREADY_SET</unmanaged>	
            <unmanaged-short>ERROR_SXS_PROCESS_DEFAULT_ALREADY_SET</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsUnknownEncodingGroup">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_UNKNOWN_ENCODING_GROUP']/*"/>	
            <unmanaged>ERROR_SXS_UNKNOWN_ENCODING_GROUP</unmanaged>	
            <unmanaged-short>ERROR_SXS_UNKNOWN_ENCODING_GROUP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsUnknownEncoding">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_UNKNOWN_ENCODING']/*"/>	
            <unmanaged>ERROR_SXS_UNKNOWN_ENCODING</unmanaged>	
            <unmanaged-short>ERROR_SXS_UNKNOWN_ENCODING</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsInvalidXmlNamespaceUri">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_INVALID_XML_NAMESPACE_URI']/*"/>	
            <unmanaged>ERROR_SXS_INVALID_XML_NAMESPACE_URI</unmanaged>	
            <unmanaged-short>ERROR_SXS_INVALID_XML_NAMESPACE_URI</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsRootManifestDependencyNotInstalled">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_ROOT_MANIFEST_DEPENDENCY_NOT_INSTALLED']/*"/>	
            <unmanaged>ERROR_SXS_ROOT_MANIFEST_DEPENDENCY_NOT_INSTALLED</unmanaged>	
            <unmanaged-short>ERROR_SXS_ROOT_MANIFEST_DEPENDENCY_NOT_INSTALLED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsLeafManifestDependencyNotInstalled">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_LEAF_MANIFEST_DEPENDENCY_NOT_INSTALLED']/*"/>	
            <unmanaged>ERROR_SXS_LEAF_MANIFEST_DEPENDENCY_NOT_INSTALLED</unmanaged>	
            <unmanaged-short>ERROR_SXS_LEAF_MANIFEST_DEPENDENCY_NOT_INSTALLED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsInvalidAssemblyIdentityAttribute">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE']/*"/>	
            <unmanaged>ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE</unmanaged>	
            <unmanaged-short>ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsManifestMissingRequiredDefaultNamespace">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_MANIFEST_MISSING_REQUIRED_DEFAULT_NAMESPACE']/*"/>	
            <unmanaged>ERROR_SXS_MANIFEST_MISSING_REQUIRED_DEFAULT_NAMESPACE</unmanaged>	
            <unmanaged-short>ERROR_SXS_MANIFEST_MISSING_REQUIRED_DEFAULT_NAMESPACE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsManifestInvalidRequiredDefaultNamespace">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_MANIFEST_INVALID_REQUIRED_DEFAULT_NAMESPACE']/*"/>	
            <unmanaged>ERROR_SXS_MANIFEST_INVALID_REQUIRED_DEFAULT_NAMESPACE</unmanaged>	
            <unmanaged-short>ERROR_SXS_MANIFEST_INVALID_REQUIRED_DEFAULT_NAMESPACE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsPrivateManifestCrossPathWithReparsePoint">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_PRIVATE_MANIFEST_CROSS_PATH_WITH_REPARSE_POINT']/*"/>	
            <unmanaged>ERROR_SXS_PRIVATE_MANIFEST_CROSS_PATH_WITH_REPARSE_POINT</unmanaged>	
            <unmanaged-short>ERROR_SXS_PRIVATE_MANIFEST_CROSS_PATH_WITH_REPARSE_POINT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsDuplicateDllName">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_DUPLICATE_DLL_NAME']/*"/>	
            <unmanaged>ERROR_SXS_DUPLICATE_DLL_NAME</unmanaged>	
            <unmanaged-short>ERROR_SXS_DUPLICATE_DLL_NAME</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsDuplicateWindowclassName">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_DUPLICATE_WINDOWCLASS_NAME']/*"/>	
            <unmanaged>ERROR_SXS_DUPLICATE_WINDOWCLASS_NAME</unmanaged>	
            <unmanaged-short>ERROR_SXS_DUPLICATE_WINDOWCLASS_NAME</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsDuplicateClsid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_DUPLICATE_CLSID']/*"/>	
            <unmanaged>ERROR_SXS_DUPLICATE_CLSID</unmanaged>	
            <unmanaged-short>ERROR_SXS_DUPLICATE_CLSID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsDuplicateIid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_DUPLICATE_IID']/*"/>	
            <unmanaged>ERROR_SXS_DUPLICATE_IID</unmanaged>	
            <unmanaged-short>ERROR_SXS_DUPLICATE_IID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsDuplicateTlbid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_DUPLICATE_TLBID']/*"/>	
            <unmanaged>ERROR_SXS_DUPLICATE_TLBID</unmanaged>	
            <unmanaged-short>ERROR_SXS_DUPLICATE_TLBID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsDuplicateProgid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_DUPLICATE_PROGID']/*"/>	
            <unmanaged>ERROR_SXS_DUPLICATE_PROGID</unmanaged>	
            <unmanaged-short>ERROR_SXS_DUPLICATE_PROGID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsDuplicateAssemblyName">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_DUPLICATE_ASSEMBLY_NAME']/*"/>	
            <unmanaged>ERROR_SXS_DUPLICATE_ASSEMBLY_NAME</unmanaged>	
            <unmanaged-short>ERROR_SXS_DUPLICATE_ASSEMBLY_NAME</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsFileHashMismatch">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_FILE_HASH_MISMATCH']/*"/>	
            <unmanaged>ERROR_SXS_FILE_HASH_MISMATCH</unmanaged>	
            <unmanaged-short>ERROR_SXS_FILE_HASH_MISMATCH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsPolicyParseError">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_POLICY_PARSE_ERROR']/*"/>	
            <unmanaged>ERROR_SXS_POLICY_PARSE_ERROR</unmanaged>	
            <unmanaged-short>ERROR_SXS_POLICY_PARSE_ERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsXmlEMissingquote">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_XML_E_MISSINGQUOTE']/*"/>	
            <unmanaged>ERROR_SXS_XML_E_MISSINGQUOTE</unmanaged>	
            <unmanaged-short>ERROR_SXS_XML_E_MISSINGQUOTE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsXmlECommentsyntax">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_XML_E_COMMENTSYNTAX']/*"/>	
            <unmanaged>ERROR_SXS_XML_E_COMMENTSYNTAX</unmanaged>	
            <unmanaged-short>ERROR_SXS_XML_E_COMMENTSYNTAX</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsXmlEBadstartnamechar">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_XML_E_BADSTARTNAMECHAR']/*"/>	
            <unmanaged>ERROR_SXS_XML_E_BADSTARTNAMECHAR</unmanaged>	
            <unmanaged-short>ERROR_SXS_XML_E_BADSTARTNAMECHAR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsXmlEBadnamechar">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_XML_E_BADNAMECHAR']/*"/>	
            <unmanaged>ERROR_SXS_XML_E_BADNAMECHAR</unmanaged>	
            <unmanaged-short>ERROR_SXS_XML_E_BADNAMECHAR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsXmlEBadcharinstring">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_XML_E_BADCHARINSTRING']/*"/>	
            <unmanaged>ERROR_SXS_XML_E_BADCHARINSTRING</unmanaged>	
            <unmanaged-short>ERROR_SXS_XML_E_BADCHARINSTRING</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsXmlEXmldeclsyntax">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_XML_E_XMLDECLSYNTAX']/*"/>	
            <unmanaged>ERROR_SXS_XML_E_XMLDECLSYNTAX</unmanaged>	
            <unmanaged-short>ERROR_SXS_XML_E_XMLDECLSYNTAX</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsXmlEBadchardata">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_XML_E_BADCHARDATA']/*"/>	
            <unmanaged>ERROR_SXS_XML_E_BADCHARDATA</unmanaged>	
            <unmanaged-short>ERROR_SXS_XML_E_BADCHARDATA</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsXmlEMissingwhitespace">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_XML_E_MISSINGWHITESPACE']/*"/>	
            <unmanaged>ERROR_SXS_XML_E_MISSINGWHITESPACE</unmanaged>	
            <unmanaged-short>ERROR_SXS_XML_E_MISSINGWHITESPACE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsXmlEExpectingtagend">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_XML_E_EXPECTINGTAGEND']/*"/>	
            <unmanaged>ERROR_SXS_XML_E_EXPECTINGTAGEND</unmanaged>	
            <unmanaged-short>ERROR_SXS_XML_E_EXPECTINGTAGEND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsXmlEMissingsemicolon">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_XML_E_MISSINGSEMICOLON']/*"/>	
            <unmanaged>ERROR_SXS_XML_E_MISSINGSEMICOLON</unmanaged>	
            <unmanaged-short>ERROR_SXS_XML_E_MISSINGSEMICOLON</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsXmlEUnbalancedparen">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_XML_E_UNBALANCEDPAREN']/*"/>	
            <unmanaged>ERROR_SXS_XML_E_UNBALANCEDPAREN</unmanaged>	
            <unmanaged-short>ERROR_SXS_XML_E_UNBALANCEDPAREN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsXmlEInternalerror">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_XML_E_INTERNALERROR']/*"/>	
            <unmanaged>ERROR_SXS_XML_E_INTERNALERROR</unmanaged>	
            <unmanaged-short>ERROR_SXS_XML_E_INTERNALERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsXmlEUnexpectedWhitespace">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_XML_E_UNEXPECTED_WHITESPACE']/*"/>	
            <unmanaged>ERROR_SXS_XML_E_UNEXPECTED_WHITESPACE</unmanaged>	
            <unmanaged-short>ERROR_SXS_XML_E_UNEXPECTED_WHITESPACE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsXmlEIncompleteEncoding">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_XML_E_INCOMPLETE_ENCODING']/*"/>	
            <unmanaged>ERROR_SXS_XML_E_INCOMPLETE_ENCODING</unmanaged>	
            <unmanaged-short>ERROR_SXS_XML_E_INCOMPLETE_ENCODING</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsXmlEMissingParen">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_XML_E_MISSING_PAREN']/*"/>	
            <unmanaged>ERROR_SXS_XML_E_MISSING_PAREN</unmanaged>	
            <unmanaged-short>ERROR_SXS_XML_E_MISSING_PAREN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsXmlEExpectingclosequote">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_XML_E_EXPECTINGCLOSEQUOTE']/*"/>	
            <unmanaged>ERROR_SXS_XML_E_EXPECTINGCLOSEQUOTE</unmanaged>	
            <unmanaged-short>ERROR_SXS_XML_E_EXPECTINGCLOSEQUOTE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsXmlEMultipleColons">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_XML_E_MULTIPLE_COLONS']/*"/>	
            <unmanaged>ERROR_SXS_XML_E_MULTIPLE_COLONS</unmanaged>	
            <unmanaged-short>ERROR_SXS_XML_E_MULTIPLE_COLONS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsXmlEInvalidDecimal">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_XML_E_INVALID_DECIMAL']/*"/>	
            <unmanaged>ERROR_SXS_XML_E_INVALID_DECIMAL</unmanaged>	
            <unmanaged-short>ERROR_SXS_XML_E_INVALID_DECIMAL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsXmlEInvalidHexidecimal">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_XML_E_INVALID_HEXIDECIMAL']/*"/>	
            <unmanaged>ERROR_SXS_XML_E_INVALID_HEXIDECIMAL</unmanaged>	
            <unmanaged-short>ERROR_SXS_XML_E_INVALID_HEXIDECIMAL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsXmlEInvalidUnicode">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_XML_E_INVALID_UNICODE']/*"/>	
            <unmanaged>ERROR_SXS_XML_E_INVALID_UNICODE</unmanaged>	
            <unmanaged-short>ERROR_SXS_XML_E_INVALID_UNICODE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsXmlEWhitespaceorquestionmark">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_XML_E_WHITESPACEORQUESTIONMARK']/*"/>	
            <unmanaged>ERROR_SXS_XML_E_WHITESPACEORQUESTIONMARK</unmanaged>	
            <unmanaged-short>ERROR_SXS_XML_E_WHITESPACEORQUESTIONMARK</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsXmlEUnexpectedendtag">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_XML_E_UNEXPECTEDENDTAG']/*"/>	
            <unmanaged>ERROR_SXS_XML_E_UNEXPECTEDENDTAG</unmanaged>	
            <unmanaged-short>ERROR_SXS_XML_E_UNEXPECTEDENDTAG</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsXmlEUnclosedtag">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_XML_E_UNCLOSEDTAG']/*"/>	
            <unmanaged>ERROR_SXS_XML_E_UNCLOSEDTAG</unmanaged>	
            <unmanaged-short>ERROR_SXS_XML_E_UNCLOSEDTAG</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsXmlEDuplicateattribute">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_XML_E_DUPLICATEATTRIBUTE']/*"/>	
            <unmanaged>ERROR_SXS_XML_E_DUPLICATEATTRIBUTE</unmanaged>	
            <unmanaged-short>ERROR_SXS_XML_E_DUPLICATEATTRIBUTE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsXmlEMultipleroots">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_XML_E_MULTIPLEROOTS']/*"/>	
            <unmanaged>ERROR_SXS_XML_E_MULTIPLEROOTS</unmanaged>	
            <unmanaged-short>ERROR_SXS_XML_E_MULTIPLEROOTS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsXmlEInvalidatrootlevel">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_XML_E_INVALIDATROOTLEVEL']/*"/>	
            <unmanaged>ERROR_SXS_XML_E_INVALIDATROOTLEVEL</unmanaged>	
            <unmanaged-short>ERROR_SXS_XML_E_INVALIDATROOTLEVEL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsXmlEBadxmldecl">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_XML_E_BADXMLDECL']/*"/>	
            <unmanaged>ERROR_SXS_XML_E_BADXMLDECL</unmanaged>	
            <unmanaged-short>ERROR_SXS_XML_E_BADXMLDECL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsXmlEMissingroot">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_XML_E_MISSINGROOT']/*"/>	
            <unmanaged>ERROR_SXS_XML_E_MISSINGROOT</unmanaged>	
            <unmanaged-short>ERROR_SXS_XML_E_MISSINGROOT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsXmlEUnexpectedeof">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_XML_E_UNEXPECTEDEOF']/*"/>	
            <unmanaged>ERROR_SXS_XML_E_UNEXPECTEDEOF</unmanaged>	
            <unmanaged-short>ERROR_SXS_XML_E_UNEXPECTEDEOF</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsXmlEBadperefinsubset">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_XML_E_BADPEREFINSUBSET']/*"/>	
            <unmanaged>ERROR_SXS_XML_E_BADPEREFINSUBSET</unmanaged>	
            <unmanaged-short>ERROR_SXS_XML_E_BADPEREFINSUBSET</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsXmlEUnclosedstarttag">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_XML_E_UNCLOSEDSTARTTAG']/*"/>	
            <unmanaged>ERROR_SXS_XML_E_UNCLOSEDSTARTTAG</unmanaged>	
            <unmanaged-short>ERROR_SXS_XML_E_UNCLOSEDSTARTTAG</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsXmlEUnclosedendtag">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_XML_E_UNCLOSEDENDTAG']/*"/>	
            <unmanaged>ERROR_SXS_XML_E_UNCLOSEDENDTAG</unmanaged>	
            <unmanaged-short>ERROR_SXS_XML_E_UNCLOSEDENDTAG</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsXmlEUnclosedstring">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_XML_E_UNCLOSEDSTRING']/*"/>	
            <unmanaged>ERROR_SXS_XML_E_UNCLOSEDSTRING</unmanaged>	
            <unmanaged-short>ERROR_SXS_XML_E_UNCLOSEDSTRING</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsXmlEUnclosedcomment">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_XML_E_UNCLOSEDCOMMENT']/*"/>	
            <unmanaged>ERROR_SXS_XML_E_UNCLOSEDCOMMENT</unmanaged>	
            <unmanaged-short>ERROR_SXS_XML_E_UNCLOSEDCOMMENT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsXmlEUncloseddecl">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_XML_E_UNCLOSEDDECL']/*"/>	
            <unmanaged>ERROR_SXS_XML_E_UNCLOSEDDECL</unmanaged>	
            <unmanaged-short>ERROR_SXS_XML_E_UNCLOSEDDECL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsXmlEUnclosedcdata">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_XML_E_UNCLOSEDCDATA']/*"/>	
            <unmanaged>ERROR_SXS_XML_E_UNCLOSEDCDATA</unmanaged>	
            <unmanaged-short>ERROR_SXS_XML_E_UNCLOSEDCDATA</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsXmlEReservednamespace">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_XML_E_RESERVEDNAMESPACE']/*"/>	
            <unmanaged>ERROR_SXS_XML_E_RESERVEDNAMESPACE</unmanaged>	
            <unmanaged-short>ERROR_SXS_XML_E_RESERVEDNAMESPACE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsXmlEInvalidencoding">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_XML_E_INVALIDENCODING']/*"/>	
            <unmanaged>ERROR_SXS_XML_E_INVALIDENCODING</unmanaged>	
            <unmanaged-short>ERROR_SXS_XML_E_INVALIDENCODING</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsXmlEInvalidswitch">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_XML_E_INVALIDSWITCH']/*"/>	
            <unmanaged>ERROR_SXS_XML_E_INVALIDSWITCH</unmanaged>	
            <unmanaged-short>ERROR_SXS_XML_E_INVALIDSWITCH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsXmlEBadxmlcase">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_XML_E_BADXMLCASE']/*"/>	
            <unmanaged>ERROR_SXS_XML_E_BADXMLCASE</unmanaged>	
            <unmanaged-short>ERROR_SXS_XML_E_BADXMLCASE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsXmlEInvalidStandalone">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_XML_E_INVALID_STANDALONE']/*"/>	
            <unmanaged>ERROR_SXS_XML_E_INVALID_STANDALONE</unmanaged>	
            <unmanaged-short>ERROR_SXS_XML_E_INVALID_STANDALONE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsXmlEUnexpectedStandalone">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_XML_E_UNEXPECTED_STANDALONE']/*"/>	
            <unmanaged>ERROR_SXS_XML_E_UNEXPECTED_STANDALONE</unmanaged>	
            <unmanaged-short>ERROR_SXS_XML_E_UNEXPECTED_STANDALONE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsXmlEInvalidVersion">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_XML_E_INVALID_VERSION']/*"/>	
            <unmanaged>ERROR_SXS_XML_E_INVALID_VERSION</unmanaged>	
            <unmanaged-short>ERROR_SXS_XML_E_INVALID_VERSION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsXmlEMissingequals">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_XML_E_MISSINGEQUALS']/*"/>	
            <unmanaged>ERROR_SXS_XML_E_MISSINGEQUALS</unmanaged>	
            <unmanaged-short>ERROR_SXS_XML_E_MISSINGEQUALS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsProtectionRecoveryFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_PROTECTION_RECOVERY_FAILED']/*"/>	
            <unmanaged>ERROR_SXS_PROTECTION_RECOVERY_FAILED</unmanaged>	
            <unmanaged-short>ERROR_SXS_PROTECTION_RECOVERY_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsProtectionPublicKeyTooShort">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_PROTECTION_PUBLIC_KEY_TOO_SHORT']/*"/>	
            <unmanaged>ERROR_SXS_PROTECTION_PUBLIC_KEY_TOO_SHORT</unmanaged>	
            <unmanaged-short>ERROR_SXS_PROTECTION_PUBLIC_KEY_TOO_SHORT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsProtectionCatalogNotValid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_PROTECTION_CATALOG_NOT_VALID']/*"/>	
            <unmanaged>ERROR_SXS_PROTECTION_CATALOG_NOT_VALID</unmanaged>	
            <unmanaged-short>ERROR_SXS_PROTECTION_CATALOG_NOT_VALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsUntranslatableHresult">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_UNTRANSLATABLE_HRESULT']/*"/>	
            <unmanaged>ERROR_SXS_UNTRANSLATABLE_HRESULT</unmanaged>	
            <unmanaged-short>ERROR_SXS_UNTRANSLATABLE_HRESULT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsProtectionCatalogFileMissing">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_PROTECTION_CATALOG_FILE_MISSING']/*"/>	
            <unmanaged>ERROR_SXS_PROTECTION_CATALOG_FILE_MISSING</unmanaged>	
            <unmanaged-short>ERROR_SXS_PROTECTION_CATALOG_FILE_MISSING</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsMissingAssemblyIdentityAttribute">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_MISSING_ASSEMBLY_IDENTITY_ATTRIBUTE']/*"/>	
            <unmanaged>ERROR_SXS_MISSING_ASSEMBLY_IDENTITY_ATTRIBUTE</unmanaged>	
            <unmanaged-short>ERROR_SXS_MISSING_ASSEMBLY_IDENTITY_ATTRIBUTE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsInvalidAssemblyIdentityAttributeName">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE_NAME']/*"/>	
            <unmanaged>ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE_NAME</unmanaged>	
            <unmanaged-short>ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE_NAME</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsAssemblyMissing">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_ASSEMBLY_MISSING']/*"/>	
            <unmanaged>ERROR_SXS_ASSEMBLY_MISSING</unmanaged>	
            <unmanaged-short>ERROR_SXS_ASSEMBLY_MISSING</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsCorruptActivationStack">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_CORRUPT_ACTIVATION_STACK']/*"/>	
            <unmanaged>ERROR_SXS_CORRUPT_ACTIVATION_STACK</unmanaged>	
            <unmanaged-short>ERROR_SXS_CORRUPT_ACTIVATION_STACK</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsCorruption">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_CORRUPTION']/*"/>	
            <unmanaged>ERROR_SXS_CORRUPTION</unmanaged>	
            <unmanaged-short>ERROR_SXS_CORRUPTION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsEarlyDeactivation">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_EARLY_DEACTIVATION']/*"/>	
            <unmanaged>ERROR_SXS_EARLY_DEACTIVATION</unmanaged>	
            <unmanaged-short>ERROR_SXS_EARLY_DEACTIVATION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsInvalidDeactivation">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_INVALID_DEACTIVATION']/*"/>	
            <unmanaged>ERROR_SXS_INVALID_DEACTIVATION</unmanaged>	
            <unmanaged-short>ERROR_SXS_INVALID_DEACTIVATION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsMultipleDeactivation">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_MULTIPLE_DEACTIVATION']/*"/>	
            <unmanaged>ERROR_SXS_MULTIPLE_DEACTIVATION</unmanaged>	
            <unmanaged-short>ERROR_SXS_MULTIPLE_DEACTIVATION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsProcessTerminationRequested">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_PROCESS_TERMINATION_REQUESTED']/*"/>	
            <unmanaged>ERROR_SXS_PROCESS_TERMINATION_REQUESTED</unmanaged>	
            <unmanaged-short>ERROR_SXS_PROCESS_TERMINATION_REQUESTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsReleaseActivationContext">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_RELEASE_ACTIVATION_CONTEXT']/*"/>	
            <unmanaged>ERROR_SXS_RELEASE_ACTIVATION_CONTEXT</unmanaged>	
            <unmanaged-short>ERROR_SXS_RELEASE_ACTIVATION_CONTEXT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsSystemDefaultActivationContextEmpty">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_SYSTEM_DEFAULT_ACTIVATION_CONTEXT_EMPTY']/*"/>	
            <unmanaged>ERROR_SXS_SYSTEM_DEFAULT_ACTIVATION_CONTEXT_EMPTY</unmanaged>	
            <unmanaged-short>ERROR_SXS_SYSTEM_DEFAULT_ACTIVATION_CONTEXT_EMPTY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsInvalidIdentityAttributeValue">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_INVALID_IDENTITY_ATTRIBUTE_VALUE']/*"/>	
            <unmanaged>ERROR_SXS_INVALID_IDENTITY_ATTRIBUTE_VALUE</unmanaged>	
            <unmanaged-short>ERROR_SXS_INVALID_IDENTITY_ATTRIBUTE_VALUE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsInvalidIdentityAttributeName">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_INVALID_IDENTITY_ATTRIBUTE_NAME']/*"/>	
            <unmanaged>ERROR_SXS_INVALID_IDENTITY_ATTRIBUTE_NAME</unmanaged>	
            <unmanaged-short>ERROR_SXS_INVALID_IDENTITY_ATTRIBUTE_NAME</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsIdentityDuplicateAttribute">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_IDENTITY_DUPLICATE_ATTRIBUTE']/*"/>	
            <unmanaged>ERROR_SXS_IDENTITY_DUPLICATE_ATTRIBUTE</unmanaged>	
            <unmanaged-short>ERROR_SXS_IDENTITY_DUPLICATE_ATTRIBUTE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsIdentityParseError">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_IDENTITY_PARSE_ERROR']/*"/>	
            <unmanaged>ERROR_SXS_IDENTITY_PARSE_ERROR</unmanaged>	
            <unmanaged-short>ERROR_SXS_IDENTITY_PARSE_ERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MalformedSubstitutionString">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MALFORMED_SUBSTITUTION_STRING']/*"/>	
            <unmanaged>ERROR_MALFORMED_SUBSTITUTION_STRING</unmanaged>	
            <unmanaged-short>ERROR_MALFORMED_SUBSTITUTION_STRING</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsIncorrectPublicKeyToken">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_INCORRECT_PUBLIC_KEY_TOKEN']/*"/>	
            <unmanaged>ERROR_SXS_INCORRECT_PUBLIC_KEY_TOKEN</unmanaged>	
            <unmanaged-short>ERROR_SXS_INCORRECT_PUBLIC_KEY_TOKEN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.UnmappedSubstitutionString">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_UNMAPPED_SUBSTITUTION_STRING']/*"/>	
            <unmanaged>ERROR_UNMAPPED_SUBSTITUTION_STRING</unmanaged>	
            <unmanaged-short>ERROR_UNMAPPED_SUBSTITUTION_STRING</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsAssemblyNotLocked">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_ASSEMBLY_NOT_LOCKED']/*"/>	
            <unmanaged>ERROR_SXS_ASSEMBLY_NOT_LOCKED</unmanaged>	
            <unmanaged-short>ERROR_SXS_ASSEMBLY_NOT_LOCKED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsComponentStoreCorrupt">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_COMPONENT_STORE_CORRUPT']/*"/>	
            <unmanaged>ERROR_SXS_COMPONENT_STORE_CORRUPT</unmanaged>	
            <unmanaged-short>ERROR_SXS_COMPONENT_STORE_CORRUPT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.AdvancedInstallerFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_ADVANCED_INSTALLER_FAILED']/*"/>	
            <unmanaged>ERROR_ADVANCED_INSTALLER_FAILED</unmanaged>	
            <unmanaged-short>ERROR_ADVANCED_INSTALLER_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.XmlEncodingMismatch">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_XML_ENCODING_MISMATCH']/*"/>	
            <unmanaged>ERROR_XML_ENCODING_MISMATCH</unmanaged>	
            <unmanaged-short>ERROR_XML_ENCODING_MISMATCH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsManifestIdentitySameButContentsDifferent">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_MANIFEST_IDENTITY_SAME_BUT_CONTENTS_DIFFERENT']/*"/>	
            <unmanaged>ERROR_SXS_MANIFEST_IDENTITY_SAME_BUT_CONTENTS_DIFFERENT</unmanaged>	
            <unmanaged-short>ERROR_SXS_MANIFEST_IDENTITY_SAME_BUT_CONTENTS_DIFFERENT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsIdentitiesDifferent">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_IDENTITIES_DIFFERENT']/*"/>	
            <unmanaged>ERROR_SXS_IDENTITIES_DIFFERENT</unmanaged>	
            <unmanaged-short>ERROR_SXS_IDENTITIES_DIFFERENT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsAssemblyIsNotADeployment">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_ASSEMBLY_IS_NOT_A_DEPLOYMENT']/*"/>	
            <unmanaged>ERROR_SXS_ASSEMBLY_IS_NOT_A_DEPLOYMENT</unmanaged>	
            <unmanaged-short>ERROR_SXS_ASSEMBLY_IS_NOT_A_DEPLOYMENT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsFileNotPartOfAssembly">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_FILE_NOT_PART_OF_ASSEMBLY']/*"/>	
            <unmanaged>ERROR_SXS_FILE_NOT_PART_OF_ASSEMBLY</unmanaged>	
            <unmanaged-short>ERROR_SXS_FILE_NOT_PART_OF_ASSEMBLY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsManifestTooBig">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_MANIFEST_TOO_BIG']/*"/>	
            <unmanaged>ERROR_SXS_MANIFEST_TOO_BIG</unmanaged>	
            <unmanaged-short>ERROR_SXS_MANIFEST_TOO_BIG</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsSettingNotRegistered">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_SETTING_NOT_REGISTERED']/*"/>	
            <unmanaged>ERROR_SXS_SETTING_NOT_REGISTERED</unmanaged>	
            <unmanaged-short>ERROR_SXS_SETTING_NOT_REGISTERED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsTransactionClosureIncomplete">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_TRANSACTION_CLOSURE_INCOMPLETE']/*"/>	
            <unmanaged>ERROR_SXS_TRANSACTION_CLOSURE_INCOMPLETE</unmanaged>	
            <unmanaged-short>ERROR_SXS_TRANSACTION_CLOSURE_INCOMPLETE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SmiPrimitiveInstallerFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SMI_PRIMITIVE_INSTALLER_FAILED']/*"/>	
            <unmanaged>ERROR_SMI_PRIMITIVE_INSTALLER_FAILED</unmanaged>	
            <unmanaged-short>ERROR_SMI_PRIMITIVE_INSTALLER_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GenericCommandFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GENERIC_COMMAND_FAILED']/*"/>	
            <unmanaged>ERROR_GENERIC_COMMAND_FAILED</unmanaged>	
            <unmanaged-short>ERROR_GENERIC_COMMAND_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SxsFileHashMissing">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SXS_FILE_HASH_MISSING']/*"/>	
            <unmanaged>ERROR_SXS_FILE_HASH_MISSING</unmanaged>	
            <unmanaged-short>ERROR_SXS_FILE_HASH_MISSING</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EvtInvalidChannelPath">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EVT_INVALID_CHANNEL_PATH']/*"/>	
            <unmanaged>ERROR_EVT_INVALID_CHANNEL_PATH</unmanaged>	
            <unmanaged-short>ERROR_EVT_INVALID_CHANNEL_PATH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EvtInvalidQuery">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EVT_INVALID_QUERY']/*"/>	
            <unmanaged>ERROR_EVT_INVALID_QUERY</unmanaged>	
            <unmanaged-short>ERROR_EVT_INVALID_QUERY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EvtPublisherMetadataNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EVT_PUBLISHER_METADATA_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_EVT_PUBLISHER_METADATA_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_EVT_PUBLISHER_METADATA_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EvtEventTemplateNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EVT_EVENT_TEMPLATE_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_EVT_EVENT_TEMPLATE_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_EVT_EVENT_TEMPLATE_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EvtInvalidPublisherName">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EVT_INVALID_PUBLISHER_NAME']/*"/>	
            <unmanaged>ERROR_EVT_INVALID_PUBLISHER_NAME</unmanaged>	
            <unmanaged-short>ERROR_EVT_INVALID_PUBLISHER_NAME</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EvtInvalidEventData">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EVT_INVALID_EVENT_DATA']/*"/>	
            <unmanaged>ERROR_EVT_INVALID_EVENT_DATA</unmanaged>	
            <unmanaged-short>ERROR_EVT_INVALID_EVENT_DATA</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EvtChannelNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EVT_CHANNEL_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_EVT_CHANNEL_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_EVT_CHANNEL_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EvtMalformedXmlText">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EVT_MALFORMED_XML_TEXT']/*"/>	
            <unmanaged>ERROR_EVT_MALFORMED_XML_TEXT</unmanaged>	
            <unmanaged-short>ERROR_EVT_MALFORMED_XML_TEXT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EvtSubscriptionToDirectChannel">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EVT_SUBSCRIPTION_TO_DIRECT_CHANNEL']/*"/>	
            <unmanaged>ERROR_EVT_SUBSCRIPTION_TO_DIRECT_CHANNEL</unmanaged>	
            <unmanaged-short>ERROR_EVT_SUBSCRIPTION_TO_DIRECT_CHANNEL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EvtConfigurationError">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EVT_CONFIGURATION_ERROR']/*"/>	
            <unmanaged>ERROR_EVT_CONFIGURATION_ERROR</unmanaged>	
            <unmanaged-short>ERROR_EVT_CONFIGURATION_ERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EvtQueryResultStale">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EVT_QUERY_RESULT_STALE']/*"/>	
            <unmanaged>ERROR_EVT_QUERY_RESULT_STALE</unmanaged>	
            <unmanaged-short>ERROR_EVT_QUERY_RESULT_STALE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EvtQueryResultInvalidPosition">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EVT_QUERY_RESULT_INVALID_POSITION']/*"/>	
            <unmanaged>ERROR_EVT_QUERY_RESULT_INVALID_POSITION</unmanaged>	
            <unmanaged-short>ERROR_EVT_QUERY_RESULT_INVALID_POSITION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EvtNonValidatingMsxml">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EVT_NON_VALIDATING_MSXML']/*"/>	
            <unmanaged>ERROR_EVT_NON_VALIDATING_MSXML</unmanaged>	
            <unmanaged-short>ERROR_EVT_NON_VALIDATING_MSXML</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EvtFilterAlreadyscoped">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EVT_FILTER_ALREADYSCOPED']/*"/>	
            <unmanaged>ERROR_EVT_FILTER_ALREADYSCOPED</unmanaged>	
            <unmanaged-short>ERROR_EVT_FILTER_ALREADYSCOPED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EvtFilterNoteltset">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EVT_FILTER_NOTELTSET']/*"/>	
            <unmanaged>ERROR_EVT_FILTER_NOTELTSET</unmanaged>	
            <unmanaged-short>ERROR_EVT_FILTER_NOTELTSET</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EvtFilterInvarg">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EVT_FILTER_INVARG']/*"/>	
            <unmanaged>ERROR_EVT_FILTER_INVARG</unmanaged>	
            <unmanaged-short>ERROR_EVT_FILTER_INVARG</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EvtFilterInvtest">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EVT_FILTER_INVTEST']/*"/>	
            <unmanaged>ERROR_EVT_FILTER_INVTEST</unmanaged>	
            <unmanaged-short>ERROR_EVT_FILTER_INVTEST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EvtFilterInvtype">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EVT_FILTER_INVTYPE']/*"/>	
            <unmanaged>ERROR_EVT_FILTER_INVTYPE</unmanaged>	
            <unmanaged-short>ERROR_EVT_FILTER_INVTYPE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EvtFilterParseerr">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EVT_FILTER_PARSEERR']/*"/>	
            <unmanaged>ERROR_EVT_FILTER_PARSEERR</unmanaged>	
            <unmanaged-short>ERROR_EVT_FILTER_PARSEERR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EvtFilterUnsupportedop">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EVT_FILTER_UNSUPPORTEDOP']/*"/>	
            <unmanaged>ERROR_EVT_FILTER_UNSUPPORTEDOP</unmanaged>	
            <unmanaged-short>ERROR_EVT_FILTER_UNSUPPORTEDOP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EvtFilterUnexpectedtoken">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EVT_FILTER_UNEXPECTEDTOKEN']/*"/>	
            <unmanaged>ERROR_EVT_FILTER_UNEXPECTEDTOKEN</unmanaged>	
            <unmanaged-short>ERROR_EVT_FILTER_UNEXPECTEDTOKEN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EvtInvalidOperationOverEnabledDirectChannel">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EVT_INVALID_OPERATION_OVER_ENABLED_DIRECT_CHANNEL']/*"/>	
            <unmanaged>ERROR_EVT_INVALID_OPERATION_OVER_ENABLED_DIRECT_CHANNEL</unmanaged>	
            <unmanaged-short>ERROR_EVT_INVALID_OPERATION_OVER_ENABLED_DIRECT_CHANNEL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EvtInvalidChannelPropertyValue">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EVT_INVALID_CHANNEL_PROPERTY_VALUE']/*"/>	
            <unmanaged>ERROR_EVT_INVALID_CHANNEL_PROPERTY_VALUE</unmanaged>	
            <unmanaged-short>ERROR_EVT_INVALID_CHANNEL_PROPERTY_VALUE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EvtInvalidPublisherPropertyValue">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EVT_INVALID_PUBLISHER_PROPERTY_VALUE']/*"/>	
            <unmanaged>ERROR_EVT_INVALID_PUBLISHER_PROPERTY_VALUE</unmanaged>	
            <unmanaged-short>ERROR_EVT_INVALID_PUBLISHER_PROPERTY_VALUE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EvtChannelCannotActivate">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EVT_CHANNEL_CANNOT_ACTIVATE']/*"/>	
            <unmanaged>ERROR_EVT_CHANNEL_CANNOT_ACTIVATE</unmanaged>	
            <unmanaged-short>ERROR_EVT_CHANNEL_CANNOT_ACTIVATE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EvtFilterTooComplex">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EVT_FILTER_TOO_COMPLEX']/*"/>	
            <unmanaged>ERROR_EVT_FILTER_TOO_COMPLEX</unmanaged>	
            <unmanaged-short>ERROR_EVT_FILTER_TOO_COMPLEX</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EvtMessageNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EVT_MESSAGE_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_EVT_MESSAGE_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_EVT_MESSAGE_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EvtMessageIdNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EVT_MESSAGE_ID_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_EVT_MESSAGE_ID_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_EVT_MESSAGE_ID_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EvtUnresolvedValueInsert">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EVT_UNRESOLVED_VALUE_INSERT']/*"/>	
            <unmanaged>ERROR_EVT_UNRESOLVED_VALUE_INSERT</unmanaged>	
            <unmanaged-short>ERROR_EVT_UNRESOLVED_VALUE_INSERT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EvtUnresolvedParameterInsert">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EVT_UNRESOLVED_PARAMETER_INSERT']/*"/>	
            <unmanaged>ERROR_EVT_UNRESOLVED_PARAMETER_INSERT</unmanaged>	
            <unmanaged-short>ERROR_EVT_UNRESOLVED_PARAMETER_INSERT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EvtMaximumInsertsReached">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EVT_MAX_INSERTS_REACHED']/*"/>	
            <unmanaged>ERROR_EVT_MAX_INSERTS_REACHED</unmanaged>	
            <unmanaged-short>ERROR_EVT_MAX_INSERTS_REACHED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EvtEventDefinitionNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EVT_EVENT_DEFINITION_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_EVT_EVENT_DEFINITION_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_EVT_EVENT_DEFINITION_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EvtMessageLocaleNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EVT_MESSAGE_LOCALE_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_EVT_MESSAGE_LOCALE_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_EVT_MESSAGE_LOCALE_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EvtVersionTooOld">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EVT_VERSION_TOO_OLD']/*"/>	
            <unmanaged>ERROR_EVT_VERSION_TOO_OLD</unmanaged>	
            <unmanaged-short>ERROR_EVT_VERSION_TOO_OLD</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EvtVersionTooNew">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EVT_VERSION_TOO_NEW']/*"/>	
            <unmanaged>ERROR_EVT_VERSION_TOO_NEW</unmanaged>	
            <unmanaged-short>ERROR_EVT_VERSION_TOO_NEW</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EvtCannotOpenChannelOfQuery">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EVT_CANNOT_OPEN_CHANNEL_OF_QUERY']/*"/>	
            <unmanaged>ERROR_EVT_CANNOT_OPEN_CHANNEL_OF_QUERY</unmanaged>	
            <unmanaged-short>ERROR_EVT_CANNOT_OPEN_CHANNEL_OF_QUERY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EvtPublisherDisabled">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EVT_PUBLISHER_DISABLED']/*"/>	
            <unmanaged>ERROR_EVT_PUBLISHER_DISABLED</unmanaged>	
            <unmanaged-short>ERROR_EVT_PUBLISHER_DISABLED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EvtFilterOutOfRange">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EVT_FILTER_OUT_OF_RANGE']/*"/>	
            <unmanaged>ERROR_EVT_FILTER_OUT_OF_RANGE</unmanaged>	
            <unmanaged-short>ERROR_EVT_FILTER_OUT_OF_RANGE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EcSubscriptionCannotActivate">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EC_SUBSCRIPTION_CANNOT_ACTIVATE']/*"/>	
            <unmanaged>ERROR_EC_SUBSCRIPTION_CANNOT_ACTIVATE</unmanaged>	
            <unmanaged-short>ERROR_EC_SUBSCRIPTION_CANNOT_ACTIVATE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EcLogDisabled">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EC_LOG_DISABLED']/*"/>	
            <unmanaged>ERROR_EC_LOG_DISABLED</unmanaged>	
            <unmanaged-short>ERROR_EC_LOG_DISABLED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EcCircularForwarding">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EC_CIRCULAR_FORWARDING']/*"/>	
            <unmanaged>ERROR_EC_CIRCULAR_FORWARDING</unmanaged>	
            <unmanaged-short>ERROR_EC_CIRCULAR_FORWARDING</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EcCredstoreFull">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EC_CREDSTORE_FULL']/*"/>	
            <unmanaged>ERROR_EC_CREDSTORE_FULL</unmanaged>	
            <unmanaged-short>ERROR_EC_CREDSTORE_FULL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EcCredNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EC_CRED_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_EC_CRED_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_EC_CRED_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.EcNoActiveChannel">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_EC_NO_ACTIVE_CHANNEL']/*"/>	
            <unmanaged>ERROR_EC_NO_ACTIVE_CHANNEL</unmanaged>	
            <unmanaged-short>ERROR_EC_NO_ACTIVE_CHANNEL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MuiFileNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MUI_FILE_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_MUI_FILE_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_MUI_FILE_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MuiInvalidFile">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MUI_INVALID_FILE']/*"/>	
            <unmanaged>ERROR_MUI_INVALID_FILE</unmanaged>	
            <unmanaged-short>ERROR_MUI_INVALID_FILE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MuiInvalidRcConfig">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MUI_INVALID_RC_CONFIG']/*"/>	
            <unmanaged>ERROR_MUI_INVALID_RC_CONFIG</unmanaged>	
            <unmanaged-short>ERROR_MUI_INVALID_RC_CONFIG</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MuiInvalidLocaleName">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MUI_INVALID_LOCALE_NAME']/*"/>	
            <unmanaged>ERROR_MUI_INVALID_LOCALE_NAME</unmanaged>	
            <unmanaged-short>ERROR_MUI_INVALID_LOCALE_NAME</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MuiInvalidUltimatefallbackName">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MUI_INVALID_ULTIMATEFALLBACK_NAME']/*"/>	
            <unmanaged>ERROR_MUI_INVALID_ULTIMATEFALLBACK_NAME</unmanaged>	
            <unmanaged-short>ERROR_MUI_INVALID_ULTIMATEFALLBACK_NAME</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MuiFileNotLoaded">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MUI_FILE_NOT_LOADED']/*"/>	
            <unmanaged>ERROR_MUI_FILE_NOT_LOADED</unmanaged>	
            <unmanaged-short>ERROR_MUI_FILE_NOT_LOADED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ResourceEnumUserStop">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_RESOURCE_ENUM_USER_STOP']/*"/>	
            <unmanaged>ERROR_RESOURCE_ENUM_USER_STOP</unmanaged>	
            <unmanaged-short>ERROR_RESOURCE_ENUM_USER_STOP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MuiIntlsettingsUilangNotInstalled">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MUI_INTLSETTINGS_UILANG_NOT_INSTALLED']/*"/>	
            <unmanaged>ERROR_MUI_INTLSETTINGS_UILANG_NOT_INSTALLED</unmanaged>	
            <unmanaged-short>ERROR_MUI_INTLSETTINGS_UILANG_NOT_INSTALLED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MuiIntlsettingsInvalidLocaleName">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MUI_INTLSETTINGS_INVALID_LOCALE_NAME']/*"/>	
            <unmanaged>ERROR_MUI_INTLSETTINGS_INVALID_LOCALE_NAME</unmanaged>	
            <unmanaged-short>ERROR_MUI_INTLSETTINGS_INVALID_LOCALE_NAME</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MrmRuntimeNoDefaultOrNeutralResource">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MRM_RUNTIME_NO_DEFAULT_OR_NEUTRAL_RESOURCE']/*"/>	
            <unmanaged>ERROR_MRM_RUNTIME_NO_DEFAULT_OR_NEUTRAL_RESOURCE</unmanaged>	
            <unmanaged-short>ERROR_MRM_RUNTIME_NO_DEFAULT_OR_NEUTRAL_RESOURCE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MrmInvalidPriconfig">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MRM_INVALID_PRICONFIG']/*"/>	
            <unmanaged>ERROR_MRM_INVALID_PRICONFIG</unmanaged>	
            <unmanaged-short>ERROR_MRM_INVALID_PRICONFIG</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MrmInvalidFileType">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MRM_INVALID_FILE_TYPE']/*"/>	
            <unmanaged>ERROR_MRM_INVALID_FILE_TYPE</unmanaged>	
            <unmanaged-short>ERROR_MRM_INVALID_FILE_TYPE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MrmUnknownQualifier">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MRM_UNKNOWN_QUALIFIER']/*"/>	
            <unmanaged>ERROR_MRM_UNKNOWN_QUALIFIER</unmanaged>	
            <unmanaged-short>ERROR_MRM_UNKNOWN_QUALIFIER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MrmInvalidQualifierValue">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MRM_INVALID_QUALIFIER_VALUE']/*"/>	
            <unmanaged>ERROR_MRM_INVALID_QUALIFIER_VALUE</unmanaged>	
            <unmanaged-short>ERROR_MRM_INVALID_QUALIFIER_VALUE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MrmNoCandidate">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MRM_NO_CANDIDATE']/*"/>	
            <unmanaged>ERROR_MRM_NO_CANDIDATE</unmanaged>	
            <unmanaged-short>ERROR_MRM_NO_CANDIDATE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MrmNoMatchOrDefaultCandidate">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MRM_NO_MATCH_OR_DEFAULT_CANDIDATE']/*"/>	
            <unmanaged>ERROR_MRM_NO_MATCH_OR_DEFAULT_CANDIDATE</unmanaged>	
            <unmanaged-short>ERROR_MRM_NO_MATCH_OR_DEFAULT_CANDIDATE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MrmResourceTypeMismatch">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MRM_RESOURCE_TYPE_MISMATCH']/*"/>	
            <unmanaged>ERROR_MRM_RESOURCE_TYPE_MISMATCH</unmanaged>	
            <unmanaged-short>ERROR_MRM_RESOURCE_TYPE_MISMATCH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MrmDuplicateMapName">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MRM_DUPLICATE_MAP_NAME']/*"/>	
            <unmanaged>ERROR_MRM_DUPLICATE_MAP_NAME</unmanaged>	
            <unmanaged-short>ERROR_MRM_DUPLICATE_MAP_NAME</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MrmDuplicateEntry">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MRM_DUPLICATE_ENTRY']/*"/>	
            <unmanaged>ERROR_MRM_DUPLICATE_ENTRY</unmanaged>	
            <unmanaged-short>ERROR_MRM_DUPLICATE_ENTRY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MrmInvalidResourceIdentifier">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MRM_INVALID_RESOURCE_IDENTIFIER']/*"/>	
            <unmanaged>ERROR_MRM_INVALID_RESOURCE_IDENTIFIER</unmanaged>	
            <unmanaged-short>ERROR_MRM_INVALID_RESOURCE_IDENTIFIER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MrmFilepathTooLong">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MRM_FILEPATH_TOO_LONG']/*"/>	
            <unmanaged>ERROR_MRM_FILEPATH_TOO_LONG</unmanaged>	
            <unmanaged-short>ERROR_MRM_FILEPATH_TOO_LONG</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MrmUnsupportedDirectoryType">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MRM_UNSUPPORTED_DIRECTORY_TYPE']/*"/>	
            <unmanaged>ERROR_MRM_UNSUPPORTED_DIRECTORY_TYPE</unmanaged>	
            <unmanaged-short>ERROR_MRM_UNSUPPORTED_DIRECTORY_TYPE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MrmInvalidPriFile">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MRM_INVALID_PRI_FILE']/*"/>	
            <unmanaged>ERROR_MRM_INVALID_PRI_FILE</unmanaged>	
            <unmanaged-short>ERROR_MRM_INVALID_PRI_FILE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MrmNamedResourceNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MRM_NAMED_RESOURCE_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_MRM_NAMED_RESOURCE_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_MRM_NAMED_RESOURCE_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MrmMapNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MRM_MAP_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_MRM_MAP_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_MRM_MAP_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MrmUnsupportedProfileType">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MRM_UNSUPPORTED_PROFILE_TYPE']/*"/>	
            <unmanaged>ERROR_MRM_UNSUPPORTED_PROFILE_TYPE</unmanaged>	
            <unmanaged-short>ERROR_MRM_UNSUPPORTED_PROFILE_TYPE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MrmInvalidQualifierOperator">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MRM_INVALID_QUALIFIER_OPERATOR']/*"/>	
            <unmanaged>ERROR_MRM_INVALID_QUALIFIER_OPERATOR</unmanaged>	
            <unmanaged-short>ERROR_MRM_INVALID_QUALIFIER_OPERATOR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MrmIndeterminateQualifierValue">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MRM_INDETERMINATE_QUALIFIER_VALUE']/*"/>	
            <unmanaged>ERROR_MRM_INDETERMINATE_QUALIFIER_VALUE</unmanaged>	
            <unmanaged-short>ERROR_MRM_INDETERMINATE_QUALIFIER_VALUE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MrmAutomergeEnabled">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MRM_AUTOMERGE_ENABLED']/*"/>	
            <unmanaged>ERROR_MRM_AUTOMERGE_ENABLED</unmanaged>	
            <unmanaged-short>ERROR_MRM_AUTOMERGE_ENABLED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MrmTooManyResources">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MRM_TOO_MANY_RESOURCES']/*"/>	
            <unmanaged>ERROR_MRM_TOO_MANY_RESOURCES</unmanaged>	
            <unmanaged-short>ERROR_MRM_TOO_MANY_RESOURCES</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.McaInvalidCapabilitiesString">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MCA_INVALID_CAPABILITIES_STRING']/*"/>	
            <unmanaged>ERROR_MCA_INVALID_CAPABILITIES_STRING</unmanaged>	
            <unmanaged-short>ERROR_MCA_INVALID_CAPABILITIES_STRING</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.McaInvalidVcpVersion">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MCA_INVALID_VCP_VERSION']/*"/>	
            <unmanaged>ERROR_MCA_INVALID_VCP_VERSION</unmanaged>	
            <unmanaged-short>ERROR_MCA_INVALID_VCP_VERSION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.McaMonitorViolatesMccsSpecification">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MCA_MONITOR_VIOLATES_MCCS_SPECIFICATION']/*"/>	
            <unmanaged>ERROR_MCA_MONITOR_VIOLATES_MCCS_SPECIFICATION</unmanaged>	
            <unmanaged-short>ERROR_MCA_MONITOR_VIOLATES_MCCS_SPECIFICATION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.McaMccsVersionMismatch">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MCA_MCCS_VERSION_MISMATCH']/*"/>	
            <unmanaged>ERROR_MCA_MCCS_VERSION_MISMATCH</unmanaged>	
            <unmanaged-short>ERROR_MCA_MCCS_VERSION_MISMATCH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.McaUnsupportedMccsVersion">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MCA_UNSUPPORTED_MCCS_VERSION']/*"/>	
            <unmanaged>ERROR_MCA_UNSUPPORTED_MCCS_VERSION</unmanaged>	
            <unmanaged-short>ERROR_MCA_UNSUPPORTED_MCCS_VERSION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.McaInternalError">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MCA_INTERNAL_ERROR']/*"/>	
            <unmanaged>ERROR_MCA_INTERNAL_ERROR</unmanaged>	
            <unmanaged-short>ERROR_MCA_INTERNAL_ERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.McaInvalidTechnologyTypeReturned">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MCA_INVALID_TECHNOLOGY_TYPE_RETURNED']/*"/>	
            <unmanaged>ERROR_MCA_INVALID_TECHNOLOGY_TYPE_RETURNED</unmanaged>	
            <unmanaged-short>ERROR_MCA_INVALID_TECHNOLOGY_TYPE_RETURNED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.McaUnsupportedColorTemperature">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MCA_UNSUPPORTED_COLOR_TEMPERATURE']/*"/>	
            <unmanaged>ERROR_MCA_UNSUPPORTED_COLOR_TEMPERATURE</unmanaged>	
            <unmanaged-short>ERROR_MCA_UNSUPPORTED_COLOR_TEMPERATURE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.AmbiguousSystemDevice">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_AMBIGUOUS_SYSTEM_DEVICE']/*"/>	
            <unmanaged>ERROR_AMBIGUOUS_SYSTEM_DEVICE</unmanaged>	
            <unmanaged-short>ERROR_AMBIGUOUS_SYSTEM_DEVICE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SystemDeviceNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SYSTEM_DEVICE_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_SYSTEM_DEVICE_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_SYSTEM_DEVICE_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.HashNotSupported">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_HASH_NOT_SUPPORTED']/*"/>	
            <unmanaged>ERROR_HASH_NOT_SUPPORTED</unmanaged>	
            <unmanaged-short>ERROR_HASH_NOT_SUPPORTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.HashNotPresent">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_HASH_NOT_PRESENT']/*"/>	
            <unmanaged>ERROR_HASH_NOT_PRESENT</unmanaged>	
            <unmanaged-short>ERROR_HASH_NOT_PRESENT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SecondaryIcProviderNotRegistered">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SECONDARY_IC_PROVIDER_NOT_REGISTERED']/*"/>	
            <unmanaged>ERROR_SECONDARY_IC_PROVIDER_NOT_REGISTERED</unmanaged>	
            <unmanaged-short>ERROR_SECONDARY_IC_PROVIDER_NOT_REGISTERED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GpioClientInformationInvalid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GPIO_CLIENT_INFORMATION_INVALID']/*"/>	
            <unmanaged>ERROR_GPIO_CLIENT_INFORMATION_INVALID</unmanaged>	
            <unmanaged-short>ERROR_GPIO_CLIENT_INFORMATION_INVALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GpioVersionNotSupported">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GPIO_VERSION_NOT_SUPPORTED']/*"/>	
            <unmanaged>ERROR_GPIO_VERSION_NOT_SUPPORTED</unmanaged>	
            <unmanaged-short>ERROR_GPIO_VERSION_NOT_SUPPORTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GpioInvalidRegistrationPacket">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GPIO_INVALID_REGISTRATION_PACKET']/*"/>	
            <unmanaged>ERROR_GPIO_INVALID_REGISTRATION_PACKET</unmanaged>	
            <unmanaged-short>ERROR_GPIO_INVALID_REGISTRATION_PACKET</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GpioOperationDenied">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GPIO_OPERATION_DENIED']/*"/>	
            <unmanaged>ERROR_GPIO_OPERATION_DENIED</unmanaged>	
            <unmanaged-short>ERROR_GPIO_OPERATION_DENIED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GpioIncompatibleConnectMode">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GPIO_INCOMPATIBLE_CONNECT_MODE']/*"/>	
            <unmanaged>ERROR_GPIO_INCOMPATIBLE_CONNECT_MODE</unmanaged>	
            <unmanaged-short>ERROR_GPIO_INCOMPATIBLE_CONNECT_MODE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GpioInterruptAlreadyUnmasked">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GPIO_INTERRUPT_ALREADY_UNMASKED']/*"/>	
            <unmanaged>ERROR_GPIO_INTERRUPT_ALREADY_UNMASKED</unmanaged>	
            <unmanaged-short>ERROR_GPIO_INTERRUPT_ALREADY_UNMASKED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CannotSwitchRunlevel">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CANNOT_SWITCH_RUNLEVEL']/*"/>	
            <unmanaged>ERROR_CANNOT_SWITCH_RUNLEVEL</unmanaged>	
            <unmanaged-short>ERROR_CANNOT_SWITCH_RUNLEVEL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidRunlevelSetting">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_RUNLEVEL_SETTING']/*"/>	
            <unmanaged>ERROR_INVALID_RUNLEVEL_SETTING</unmanaged>	
            <unmanaged-short>ERROR_INVALID_RUNLEVEL_SETTING</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.RunlevelSwitchTimeout">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_RUNLEVEL_SWITCH_TIMEOUT']/*"/>	
            <unmanaged>ERROR_RUNLEVEL_SWITCH_TIMEOUT</unmanaged>	
            <unmanaged-short>ERROR_RUNLEVEL_SWITCH_TIMEOUT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.RunlevelSwitchAgentTimeout">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_RUNLEVEL_SWITCH_AGENT_TIMEOUT']/*"/>	
            <unmanaged>ERROR_RUNLEVEL_SWITCH_AGENT_TIMEOUT</unmanaged>	
            <unmanaged-short>ERROR_RUNLEVEL_SWITCH_AGENT_TIMEOUT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.RunlevelSwitchInProgress">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_RUNLEVEL_SWITCH_IN_PROGRESS']/*"/>	
            <unmanaged>ERROR_RUNLEVEL_SWITCH_IN_PROGRESS</unmanaged>	
            <unmanaged-short>ERROR_RUNLEVEL_SWITCH_IN_PROGRESS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ServicesFailedAutostart">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SERVICES_FAILED_AUTOSTART']/*"/>	
            <unmanaged>ERROR_SERVICES_FAILED_AUTOSTART</unmanaged>	
            <unmanaged-short>ERROR_SERVICES_FAILED_AUTOSTART</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ComTaskStopPending">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_COM_TASK_STOP_PENDING']/*"/>	
            <unmanaged>ERROR_COM_TASK_STOP_PENDING</unmanaged>	
            <unmanaged-short>ERROR_COM_TASK_STOP_PENDING</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InstallOpenPackageFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INSTALL_OPEN_PACKAGE_FAILED']/*"/>	
            <unmanaged>ERROR_INSTALL_OPEN_PACKAGE_FAILED</unmanaged>	
            <unmanaged-short>ERROR_INSTALL_OPEN_PACKAGE_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InstallPackageNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INSTALL_PACKAGE_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_INSTALL_PACKAGE_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_INSTALL_PACKAGE_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InstallInvalidPackage">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INSTALL_INVALID_PACKAGE']/*"/>	
            <unmanaged>ERROR_INSTALL_INVALID_PACKAGE</unmanaged>	
            <unmanaged-short>ERROR_INSTALL_INVALID_PACKAGE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InstallResolveDependencyFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INSTALL_RESOLVE_DEPENDENCY_FAILED']/*"/>	
            <unmanaged>ERROR_INSTALL_RESOLVE_DEPENDENCY_FAILED</unmanaged>	
            <unmanaged-short>ERROR_INSTALL_RESOLVE_DEPENDENCY_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InstallOutOfDiskSpace">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INSTALL_OUT_OF_DISK_SPACE']/*"/>	
            <unmanaged>ERROR_INSTALL_OUT_OF_DISK_SPACE</unmanaged>	
            <unmanaged-short>ERROR_INSTALL_OUT_OF_DISK_SPACE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InstallNetworkFailure">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INSTALL_NETWORK_FAILURE']/*"/>	
            <unmanaged>ERROR_INSTALL_NETWORK_FAILURE</unmanaged>	
            <unmanaged-short>ERROR_INSTALL_NETWORK_FAILURE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InstallRegistrationFailure">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INSTALL_REGISTRATION_FAILURE']/*"/>	
            <unmanaged>ERROR_INSTALL_REGISTRATION_FAILURE</unmanaged>	
            <unmanaged-short>ERROR_INSTALL_REGISTRATION_FAILURE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InstallDeregistrationFailure">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INSTALL_DEREGISTRATION_FAILURE']/*"/>	
            <unmanaged>ERROR_INSTALL_DEREGISTRATION_FAILURE</unmanaged>	
            <unmanaged-short>ERROR_INSTALL_DEREGISTRATION_FAILURE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InstallCancel">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INSTALL_CANCEL']/*"/>	
            <unmanaged>ERROR_INSTALL_CANCEL</unmanaged>	
            <unmanaged-short>ERROR_INSTALL_CANCEL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InstallFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INSTALL_FAILED']/*"/>	
            <unmanaged>ERROR_INSTALL_FAILED</unmanaged>	
            <unmanaged-short>ERROR_INSTALL_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.RemoveFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_REMOVE_FAILED']/*"/>	
            <unmanaged>ERROR_REMOVE_FAILED</unmanaged>	
            <unmanaged-short>ERROR_REMOVE_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PackageAlreadyExists">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PACKAGE_ALREADY_EXISTS']/*"/>	
            <unmanaged>ERROR_PACKAGE_ALREADY_EXISTS</unmanaged>	
            <unmanaged-short>ERROR_PACKAGE_ALREADY_EXISTS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NeedsRemediation">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NEEDS_REMEDIATION']/*"/>	
            <unmanaged>ERROR_NEEDS_REMEDIATION</unmanaged>	
            <unmanaged-short>ERROR_NEEDS_REMEDIATION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InstallPrerequisiteFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INSTALL_PREREQUISITE_FAILED']/*"/>	
            <unmanaged>ERROR_INSTALL_PREREQUISITE_FAILED</unmanaged>	
            <unmanaged-short>ERROR_INSTALL_PREREQUISITE_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PackageRepositoryCorrupted">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PACKAGE_REPOSITORY_CORRUPTED']/*"/>	
            <unmanaged>ERROR_PACKAGE_REPOSITORY_CORRUPTED</unmanaged>	
            <unmanaged-short>ERROR_PACKAGE_REPOSITORY_CORRUPTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InstallPolicyFailure">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INSTALL_POLICY_FAILURE']/*"/>	
            <unmanaged>ERROR_INSTALL_POLICY_FAILURE</unmanaged>	
            <unmanaged-short>ERROR_INSTALL_POLICY_FAILURE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PackageUpdating">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PACKAGE_UPDATING']/*"/>	
            <unmanaged>ERROR_PACKAGE_UPDATING</unmanaged>	
            <unmanaged-short>ERROR_PACKAGE_UPDATING</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DeploymentBlockedByPolicy">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DEPLOYMENT_BLOCKED_BY_POLICY']/*"/>	
            <unmanaged>ERROR_DEPLOYMENT_BLOCKED_BY_POLICY</unmanaged>	
            <unmanaged-short>ERROR_DEPLOYMENT_BLOCKED_BY_POLICY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.PackagesInUse">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_PACKAGES_IN_USE']/*"/>	
            <unmanaged>ERROR_PACKAGES_IN_USE</unmanaged>	
            <unmanaged-short>ERROR_PACKAGES_IN_USE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.RecoveryFileCorrupt">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_RECOVERY_FILE_CORRUPT']/*"/>	
            <unmanaged>ERROR_RECOVERY_FILE_CORRUPT</unmanaged>	
            <unmanaged-short>ERROR_RECOVERY_FILE_CORRUPT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InvalidStagedSignature">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INVALID_STAGED_SIGNATURE']/*"/>	
            <unmanaged>ERROR_INVALID_STAGED_SIGNATURE</unmanaged>	
            <unmanaged-short>ERROR_INVALID_STAGED_SIGNATURE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DeletingExistingApplicationdataStoreFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DELETING_EXISTING_APPLICATIONDATA_STORE_FAILED']/*"/>	
            <unmanaged>ERROR_DELETING_EXISTING_APPLICATIONDATA_STORE_FAILED</unmanaged>	
            <unmanaged-short>ERROR_DELETING_EXISTING_APPLICATIONDATA_STORE_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InstallPackageDowngrade">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INSTALL_PACKAGE_DOWNGRADE']/*"/>	
            <unmanaged>ERROR_INSTALL_PACKAGE_DOWNGRADE</unmanaged>	
            <unmanaged-short>ERROR_INSTALL_PACKAGE_DOWNGRADE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SystemNeedsRemediation">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SYSTEM_NEEDS_REMEDIATION']/*"/>	
            <unmanaged>ERROR_SYSTEM_NEEDS_REMEDIATION</unmanaged>	
            <unmanaged-short>ERROR_SYSTEM_NEEDS_REMEDIATION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.AppxIntegrityFailureClrNgen">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_APPX_INTEGRITY_FAILURE_CLR_NGEN']/*"/>	
            <unmanaged>ERROR_APPX_INTEGRITY_FAILURE_CLR_NGEN</unmanaged>	
            <unmanaged-short>ERROR_APPX_INTEGRITY_FAILURE_CLR_NGEN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ResiliencyFileCorrupt">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_RESILIENCY_FILE_CORRUPT']/*"/>	
            <unmanaged>ERROR_RESILIENCY_FILE_CORRUPT</unmanaged>	
            <unmanaged-short>ERROR_RESILIENCY_FILE_CORRUPT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.InstallFirewallServiceNotRunning">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_INSTALL_FIREWALL_SERVICE_NOT_RUNNING']/*"/>	
            <unmanaged>ERROR_INSTALL_FIREWALL_SERVICE_NOT_RUNNING</unmanaged>	
            <unmanaged-short>ERROR_INSTALL_FIREWALL_SERVICE_NOT_RUNNING</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.StateLoadStoreFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_STATE_LOAD_STORE_FAILED']/*"/>	
            <unmanaged>ERROR_STATE_LOAD_STORE_FAILED</unmanaged>	
            <unmanaged-short>ERROR_STATE_LOAD_STORE_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.StateGetVersionFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_STATE_GET_VERSION_FAILED']/*"/>	
            <unmanaged>ERROR_STATE_GET_VERSION_FAILED</unmanaged>	
            <unmanaged-short>ERROR_STATE_GET_VERSION_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.StateSetVersionFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_STATE_SET_VERSION_FAILED']/*"/>	
            <unmanaged>ERROR_STATE_SET_VERSION_FAILED</unmanaged>	
            <unmanaged-short>ERROR_STATE_SET_VERSION_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.StateStructuredResetFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_STATE_STRUCTURED_RESET_FAILED']/*"/>	
            <unmanaged>ERROR_STATE_STRUCTURED_RESET_FAILED</unmanaged>	
            <unmanaged-short>ERROR_STATE_STRUCTURED_RESET_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.StateOpenContainerFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_STATE_OPEN_CONTAINER_FAILED']/*"/>	
            <unmanaged>ERROR_STATE_OPEN_CONTAINER_FAILED</unmanaged>	
            <unmanaged-short>ERROR_STATE_OPEN_CONTAINER_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.StateCreateContainerFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_STATE_CREATE_CONTAINER_FAILED']/*"/>	
            <unmanaged>ERROR_STATE_CREATE_CONTAINER_FAILED</unmanaged>	
            <unmanaged-short>ERROR_STATE_CREATE_CONTAINER_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.StateDeleteContainerFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_STATE_DELETE_CONTAINER_FAILED']/*"/>	
            <unmanaged>ERROR_STATE_DELETE_CONTAINER_FAILED</unmanaged>	
            <unmanaged-short>ERROR_STATE_DELETE_CONTAINER_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.StateReadSettingFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_STATE_READ_SETTING_FAILED']/*"/>	
            <unmanaged>ERROR_STATE_READ_SETTING_FAILED</unmanaged>	
            <unmanaged-short>ERROR_STATE_READ_SETTING_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.StateWriteSettingFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_STATE_WRITE_SETTING_FAILED']/*"/>	
            <unmanaged>ERROR_STATE_WRITE_SETTING_FAILED</unmanaged>	
            <unmanaged-short>ERROR_STATE_WRITE_SETTING_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.StateDeleteSettingFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_STATE_DELETE_SETTING_FAILED']/*"/>	
            <unmanaged>ERROR_STATE_DELETE_SETTING_FAILED</unmanaged>	
            <unmanaged-short>ERROR_STATE_DELETE_SETTING_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.StateQuerySettingFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_STATE_QUERY_SETTING_FAILED']/*"/>	
            <unmanaged>ERROR_STATE_QUERY_SETTING_FAILED</unmanaged>	
            <unmanaged-short>ERROR_STATE_QUERY_SETTING_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.StateReadCompositeSettingFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_STATE_READ_COMPOSITE_SETTING_FAILED']/*"/>	
            <unmanaged>ERROR_STATE_READ_COMPOSITE_SETTING_FAILED</unmanaged>	
            <unmanaged-short>ERROR_STATE_READ_COMPOSITE_SETTING_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.StateWriteCompositeSettingFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_STATE_WRITE_COMPOSITE_SETTING_FAILED']/*"/>	
            <unmanaged>ERROR_STATE_WRITE_COMPOSITE_SETTING_FAILED</unmanaged>	
            <unmanaged-short>ERROR_STATE_WRITE_COMPOSITE_SETTING_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.StateEnumerateContainerFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_STATE_ENUMERATE_CONTAINER_FAILED']/*"/>	
            <unmanaged>ERROR_STATE_ENUMERATE_CONTAINER_FAILED</unmanaged>	
            <unmanaged-short>ERROR_STATE_ENUMERATE_CONTAINER_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.StateEnumerateSettingsFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_STATE_ENUMERATE_SETTINGS_FAILED']/*"/>	
            <unmanaged>ERROR_STATE_ENUMERATE_SETTINGS_FAILED</unmanaged>	
            <unmanaged-short>ERROR_STATE_ENUMERATE_SETTINGS_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.StateCompositeSettingValueSizeLimitExceeded">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_STATE_COMPOSITE_SETTING_VALUE_SIZE_LIMIT_EXCEEDED']/*"/>	
            <unmanaged>ERROR_STATE_COMPOSITE_SETTING_VALUE_SIZE_LIMIT_EXCEEDED</unmanaged>	
            <unmanaged-short>ERROR_STATE_COMPOSITE_SETTING_VALUE_SIZE_LIMIT_EXCEEDED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.StateSettingValueSizeLimitExceeded">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_STATE_SETTING_VALUE_SIZE_LIMIT_EXCEEDED']/*"/>	
            <unmanaged>ERROR_STATE_SETTING_VALUE_SIZE_LIMIT_EXCEEDED</unmanaged>	
            <unmanaged-short>ERROR_STATE_SETTING_VALUE_SIZE_LIMIT_EXCEEDED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.StateSettingNameSizeLimitExceeded">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_STATE_SETTING_NAME_SIZE_LIMIT_EXCEEDED']/*"/>	
            <unmanaged>ERROR_STATE_SETTING_NAME_SIZE_LIMIT_EXCEEDED</unmanaged>	
            <unmanaged-short>ERROR_STATE_SETTING_NAME_SIZE_LIMIT_EXCEEDED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.StateContainerNameSizeLimitExceeded">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_STATE_CONTAINER_NAME_SIZE_LIMIT_EXCEEDED']/*"/>	
            <unmanaged>ERROR_STATE_CONTAINER_NAME_SIZE_LIMIT_EXCEEDED</unmanaged>	
            <unmanaged-short>ERROR_STATE_CONTAINER_NAME_SIZE_LIMIT_EXCEEDED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.ApiUnavailable">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_API_UNAVAILABLE']/*"/>	
            <unmanaged>ERROR_API_UNAVAILABLE</unmanaged>	
            <unmanaged-short>ERROR_API_UNAVAILABLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.AuditingDisabled">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_AUDITING_DISABLED']/*"/>	
            <unmanaged>ERROR_AUDITING_DISABLED</unmanaged>	
            <unmanaged-short>ERROR_AUDITING_DISABLED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.AllSidsFiltered">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_ALL_SIDS_FILTERED']/*"/>	
            <unmanaged>ERROR_ALL_SIDS_FILTERED</unmanaged>	
            <unmanaged-short>ERROR_ALL_SIDS_FILTERED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.BizrulesNotEnabled">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_BIZRULES_NOT_ENABLED']/*"/>	
            <unmanaged>ERROR_BIZRULES_NOT_ENABLED</unmanaged>	
            <unmanaged-short>ERROR_BIZRULES_NOT_ENABLED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CredRequiresConfirmation">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CRED_REQUIRES_CONFIRMATION']/*"/>	
            <unmanaged>ERROR_CRED_REQUIRES_CONFIRMATION</unmanaged>	
            <unmanaged-short>ERROR_CRED_REQUIRES_CONFIRMATION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FltIoComplete">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FLT_IO_COMPLETE']/*"/>	
            <unmanaged>ERROR_FLT_IO_COMPLETE</unmanaged>	
            <unmanaged-short>ERROR_FLT_IO_COMPLETE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FltNoHandlerDefined">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FLT_NO_HANDLER_DEFINED']/*"/>	
            <unmanaged>ERROR_FLT_NO_HANDLER_DEFINED</unmanaged>	
            <unmanaged-short>ERROR_FLT_NO_HANDLER_DEFINED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FltContextAlreadyDefined">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FLT_CONTEXT_ALREADY_DEFINED']/*"/>	
            <unmanaged>ERROR_FLT_CONTEXT_ALREADY_DEFINED</unmanaged>	
            <unmanaged-short>ERROR_FLT_CONTEXT_ALREADY_DEFINED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FltInvalidAsynchronousRequest">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FLT_INVALID_ASYNCHRONOUS_REQUEST']/*"/>	
            <unmanaged>ERROR_FLT_INVALID_ASYNCHRONOUS_REQUEST</unmanaged>	
            <unmanaged-short>ERROR_FLT_INVALID_ASYNCHRONOUS_REQUEST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FltDisallowFastIo">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FLT_DISALLOW_FAST_IO']/*"/>	
            <unmanaged>ERROR_FLT_DISALLOW_FAST_IO</unmanaged>	
            <unmanaged-short>ERROR_FLT_DISALLOW_FAST_IO</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FltInvalidNameRequest">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FLT_INVALID_NAME_REQUEST']/*"/>	
            <unmanaged>ERROR_FLT_INVALID_NAME_REQUEST</unmanaged>	
            <unmanaged-short>ERROR_FLT_INVALID_NAME_REQUEST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FltNotSafeToPostOperation">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FLT_NOT_SAFE_TO_POST_OPERATION']/*"/>	
            <unmanaged>ERROR_FLT_NOT_SAFE_TO_POST_OPERATION</unmanaged>	
            <unmanaged-short>ERROR_FLT_NOT_SAFE_TO_POST_OPERATION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FltNotInitialized">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FLT_NOT_INITIALIZED']/*"/>	
            <unmanaged>ERROR_FLT_NOT_INITIALIZED</unmanaged>	
            <unmanaged-short>ERROR_FLT_NOT_INITIALIZED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FltFilterNotReady">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FLT_FILTER_NOT_READY']/*"/>	
            <unmanaged>ERROR_FLT_FILTER_NOT_READY</unmanaged>	
            <unmanaged-short>ERROR_FLT_FILTER_NOT_READY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FltPostOperationCleanup">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FLT_POST_OPERATION_CLEANUP']/*"/>	
            <unmanaged>ERROR_FLT_POST_OPERATION_CLEANUP</unmanaged>	
            <unmanaged-short>ERROR_FLT_POST_OPERATION_CLEANUP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FltInternalError">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FLT_INTERNAL_ERROR']/*"/>	
            <unmanaged>ERROR_FLT_INTERNAL_ERROR</unmanaged>	
            <unmanaged-short>ERROR_FLT_INTERNAL_ERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FltDeletingObject">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FLT_DELETING_OBJECT']/*"/>	
            <unmanaged>ERROR_FLT_DELETING_OBJECT</unmanaged>	
            <unmanaged-short>ERROR_FLT_DELETING_OBJECT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FltMustBeNonpagedPool">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FLT_MUST_BE_NONPAGED_POOL']/*"/>	
            <unmanaged>ERROR_FLT_MUST_BE_NONPAGED_POOL</unmanaged>	
            <unmanaged-short>ERROR_FLT_MUST_BE_NONPAGED_POOL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FltDuplicateEntry">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FLT_DUPLICATE_ENTRY']/*"/>	
            <unmanaged>ERROR_FLT_DUPLICATE_ENTRY</unmanaged>	
            <unmanaged-short>ERROR_FLT_DUPLICATE_ENTRY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FltCbdqDisabled">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FLT_CBDQ_DISABLED']/*"/>	
            <unmanaged>ERROR_FLT_CBDQ_DISABLED</unmanaged>	
            <unmanaged-short>ERROR_FLT_CBDQ_DISABLED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FltDoNotAttach">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FLT_DO_NOT_ATTACH']/*"/>	
            <unmanaged>ERROR_FLT_DO_NOT_ATTACH</unmanaged>	
            <unmanaged-short>ERROR_FLT_DO_NOT_ATTACH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FltDoNotDetach">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FLT_DO_NOT_DETACH']/*"/>	
            <unmanaged>ERROR_FLT_DO_NOT_DETACH</unmanaged>	
            <unmanaged-short>ERROR_FLT_DO_NOT_DETACH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FltInstanceAltitudeCollision">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FLT_INSTANCE_ALTITUDE_COLLISION']/*"/>	
            <unmanaged>ERROR_FLT_INSTANCE_ALTITUDE_COLLISION</unmanaged>	
            <unmanaged-short>ERROR_FLT_INSTANCE_ALTITUDE_COLLISION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FltInstanceNameCollision">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FLT_INSTANCE_NAME_COLLISION']/*"/>	
            <unmanaged>ERROR_FLT_INSTANCE_NAME_COLLISION</unmanaged>	
            <unmanaged-short>ERROR_FLT_INSTANCE_NAME_COLLISION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FltFilterNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FLT_FILTER_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_FLT_FILTER_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_FLT_FILTER_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FltVolumeNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FLT_VOLUME_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_FLT_VOLUME_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_FLT_VOLUME_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FltInstanceNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FLT_INSTANCE_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_FLT_INSTANCE_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_FLT_INSTANCE_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FltContextAllocationNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FLT_CONTEXT_ALLOCATION_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_FLT_CONTEXT_ALLOCATION_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_FLT_CONTEXT_ALLOCATION_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FltInvalidContextRegistration">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FLT_INVALID_CONTEXT_REGISTRATION']/*"/>	
            <unmanaged>ERROR_FLT_INVALID_CONTEXT_REGISTRATION</unmanaged>	
            <unmanaged-short>ERROR_FLT_INVALID_CONTEXT_REGISTRATION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FltNameCacheMiss">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FLT_NAME_CACHE_MISS']/*"/>	
            <unmanaged>ERROR_FLT_NAME_CACHE_MISS</unmanaged>	
            <unmanaged-short>ERROR_FLT_NAME_CACHE_MISS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FltNoDeviceObject">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FLT_NO_DEVICE_OBJECT']/*"/>	
            <unmanaged>ERROR_FLT_NO_DEVICE_OBJECT</unmanaged>	
            <unmanaged-short>ERROR_FLT_NO_DEVICE_OBJECT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FltVolumeAlreadyMounted">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FLT_VOLUME_ALREADY_MOUNTED']/*"/>	
            <unmanaged>ERROR_FLT_VOLUME_ALREADY_MOUNTED</unmanaged>	
            <unmanaged-short>ERROR_FLT_VOLUME_ALREADY_MOUNTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FltAlreadyEnlisted">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FLT_ALREADY_ENLISTED']/*"/>	
            <unmanaged>ERROR_FLT_ALREADY_ENLISTED</unmanaged>	
            <unmanaged-short>ERROR_FLT_ALREADY_ENLISTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FltContextAlreadyLinked">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FLT_CONTEXT_ALREADY_LINKED']/*"/>	
            <unmanaged>ERROR_FLT_CONTEXT_ALREADY_LINKED</unmanaged>	
            <unmanaged-short>ERROR_FLT_CONTEXT_ALREADY_LINKED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FltNoWaiterForReply">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FLT_NO_WAITER_FOR_REPLY']/*"/>	
            <unmanaged>ERROR_FLT_NO_WAITER_FOR_REPLY</unmanaged>	
            <unmanaged-short>ERROR_FLT_NO_WAITER_FOR_REPLY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.FltRegistrationBusy">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_FLT_REGISTRATION_BUSY']/*"/>	
            <unmanaged>ERROR_FLT_REGISTRATION_BUSY</unmanaged>	
            <unmanaged-short>ERROR_FLT_REGISTRATION_BUSY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.HungDisplayDriverThread">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_HUNG_DISPLAY_DRIVER_THREAD']/*"/>	
            <unmanaged>ERROR_HUNG_DISPLAY_DRIVER_THREAD</unmanaged>	
            <unmanaged-short>ERROR_HUNG_DISPLAY_DRIVER_THREAD</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MonitorNoDescriptor">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MONITOR_NO_DESCRIPTOR']/*"/>	
            <unmanaged>ERROR_MONITOR_NO_DESCRIPTOR</unmanaged>	
            <unmanaged-short>ERROR_MONITOR_NO_DESCRIPTOR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MonitorUnknownDescriptorFormat">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MONITOR_UNKNOWN_DESCRIPTOR_FORMAT']/*"/>	
            <unmanaged>ERROR_MONITOR_UNKNOWN_DESCRIPTOR_FORMAT</unmanaged>	
            <unmanaged-short>ERROR_MONITOR_UNKNOWN_DESCRIPTOR_FORMAT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MonitorInvalidDescriptorChecksum">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MONITOR_INVALID_DESCRIPTOR_CHECKSUM']/*"/>	
            <unmanaged>ERROR_MONITOR_INVALID_DESCRIPTOR_CHECKSUM</unmanaged>	
            <unmanaged-short>ERROR_MONITOR_INVALID_DESCRIPTOR_CHECKSUM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MonitorInvalidStandardTimingBlock">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MONITOR_INVALID_STANDARD_TIMING_BLOCK']/*"/>	
            <unmanaged>ERROR_MONITOR_INVALID_STANDARD_TIMING_BLOCK</unmanaged>	
            <unmanaged-short>ERROR_MONITOR_INVALID_STANDARD_TIMING_BLOCK</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MonitorWmiDatablockRegistrationFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MONITOR_WMI_DATABLOCK_REGISTRATION_FAILED']/*"/>	
            <unmanaged>ERROR_MONITOR_WMI_DATABLOCK_REGISTRATION_FAILED</unmanaged>	
            <unmanaged-short>ERROR_MONITOR_WMI_DATABLOCK_REGISTRATION_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MonitorInvalidSerialNumberMondscBlock">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MONITOR_INVALID_SERIAL_NUMBER_MONDSC_BLOCK']/*"/>	
            <unmanaged>ERROR_MONITOR_INVALID_SERIAL_NUMBER_MONDSC_BLOCK</unmanaged>	
            <unmanaged-short>ERROR_MONITOR_INVALID_SERIAL_NUMBER_MONDSC_BLOCK</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MonitorInvalidUserFriendlyMondscBlock">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MONITOR_INVALID_USER_FRIENDLY_MONDSC_BLOCK']/*"/>	
            <unmanaged>ERROR_MONITOR_INVALID_USER_FRIENDLY_MONDSC_BLOCK</unmanaged>	
            <unmanaged-short>ERROR_MONITOR_INVALID_USER_FRIENDLY_MONDSC_BLOCK</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MonitorNoMoreDescriptorData">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MONITOR_NO_MORE_DESCRIPTOR_DATA']/*"/>	
            <unmanaged>ERROR_MONITOR_NO_MORE_DESCRIPTOR_DATA</unmanaged>	
            <unmanaged-short>ERROR_MONITOR_NO_MORE_DESCRIPTOR_DATA</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MonitorInvalidDetailedTimingBlock">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MONITOR_INVALID_DETAILED_TIMING_BLOCK']/*"/>	
            <unmanaged>ERROR_MONITOR_INVALID_DETAILED_TIMING_BLOCK</unmanaged>	
            <unmanaged-short>ERROR_MONITOR_INVALID_DETAILED_TIMING_BLOCK</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.MonitorInvalidManufactureDate">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_MONITOR_INVALID_MANUFACTURE_DATE']/*"/>	
            <unmanaged>ERROR_MONITOR_INVALID_MANUFACTURE_DATE</unmanaged>	
            <unmanaged-short>ERROR_MONITOR_INVALID_MANUFACTURE_DATE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsNotExclusiveModeOwner">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_NOT_EXCLUSIVE_MODE_OWNER']/*"/>	
            <unmanaged>ERROR_GRAPHICS_NOT_EXCLUSIVE_MODE_OWNER</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_NOT_EXCLUSIVE_MODE_OWNER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsInsufficientDmaBuffer">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_INSUFFICIENT_DMA_BUFFER']/*"/>	
            <unmanaged>ERROR_GRAPHICS_INSUFFICIENT_DMA_BUFFER</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_INSUFFICIENT_DMA_BUFFER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsInvalidDisplayAdapter">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_INVALID_DISPLAY_ADAPTER']/*"/>	
            <unmanaged>ERROR_GRAPHICS_INVALID_DISPLAY_ADAPTER</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_INVALID_DISPLAY_ADAPTER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsAdapterWasReset">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_ADAPTER_WAS_RESET']/*"/>	
            <unmanaged>ERROR_GRAPHICS_ADAPTER_WAS_RESET</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_ADAPTER_WAS_RESET</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsInvalidDriverModel">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_INVALID_DRIVER_MODEL']/*"/>	
            <unmanaged>ERROR_GRAPHICS_INVALID_DRIVER_MODEL</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_INVALID_DRIVER_MODEL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsPresentModeChanged">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_PRESENT_MODE_CHANGED']/*"/>	
            <unmanaged>ERROR_GRAPHICS_PRESENT_MODE_CHANGED</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_PRESENT_MODE_CHANGED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsPresentOccluded">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_PRESENT_OCCLUDED']/*"/>	
            <unmanaged>ERROR_GRAPHICS_PRESENT_OCCLUDED</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_PRESENT_OCCLUDED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsPresentDenied">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_PRESENT_DENIED']/*"/>	
            <unmanaged>ERROR_GRAPHICS_PRESENT_DENIED</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_PRESENT_DENIED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsCannotcolorconvert">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_CANNOTCOLORCONVERT']/*"/>	
            <unmanaged>ERROR_GRAPHICS_CANNOTCOLORCONVERT</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_CANNOTCOLORCONVERT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsDriverMismatch">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_DRIVER_MISMATCH']/*"/>	
            <unmanaged>ERROR_GRAPHICS_DRIVER_MISMATCH</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_DRIVER_MISMATCH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsPartialDataPopulated">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_PARTIAL_DATA_POPULATED']/*"/>	
            <unmanaged>ERROR_GRAPHICS_PARTIAL_DATA_POPULATED</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_PARTIAL_DATA_POPULATED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsPresentRedirectionDisabled">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_PRESENT_REDIRECTION_DISABLED']/*"/>	
            <unmanaged>ERROR_GRAPHICS_PRESENT_REDIRECTION_DISABLED</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_PRESENT_REDIRECTION_DISABLED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsPresentUnoccluded">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_PRESENT_UNOCCLUDED']/*"/>	
            <unmanaged>ERROR_GRAPHICS_PRESENT_UNOCCLUDED</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_PRESENT_UNOCCLUDED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsWindowdcNotAvailable">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_WINDOWDC_NOT_AVAILABLE']/*"/>	
            <unmanaged>ERROR_GRAPHICS_WINDOWDC_NOT_AVAILABLE</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_WINDOWDC_NOT_AVAILABLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsWindowlessPresentDisabled">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_WINDOWLESS_PRESENT_DISABLED']/*"/>	
            <unmanaged>ERROR_GRAPHICS_WINDOWLESS_PRESENT_DISABLED</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_WINDOWLESS_PRESENT_DISABLED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsNoVideoMemory">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_NO_VIDEO_MEMORY']/*"/>	
            <unmanaged>ERROR_GRAPHICS_NO_VIDEO_MEMORY</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_NO_VIDEO_MEMORY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsCantLockMemory">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_CANT_LOCK_MEMORY']/*"/>	
            <unmanaged>ERROR_GRAPHICS_CANT_LOCK_MEMORY</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_CANT_LOCK_MEMORY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsAllocationBusy">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_ALLOCATION_BUSY']/*"/>	
            <unmanaged>ERROR_GRAPHICS_ALLOCATION_BUSY</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_ALLOCATION_BUSY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsTooManyReferences">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_TOO_MANY_REFERENCES']/*"/>	
            <unmanaged>ERROR_GRAPHICS_TOO_MANY_REFERENCES</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_TOO_MANY_REFERENCES</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsTryAgainLater">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_TRY_AGAIN_LATER']/*"/>	
            <unmanaged>ERROR_GRAPHICS_TRY_AGAIN_LATER</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_TRY_AGAIN_LATER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsTryAgainNow">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_TRY_AGAIN_NOW']/*"/>	
            <unmanaged>ERROR_GRAPHICS_TRY_AGAIN_NOW</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_TRY_AGAIN_NOW</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsAllocationInvalid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_ALLOCATION_INVALID']/*"/>	
            <unmanaged>ERROR_GRAPHICS_ALLOCATION_INVALID</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_ALLOCATION_INVALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsUnswizzlingApertureUnavailable">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_UNSWIZZLING_APERTURE_UNAVAILABLE']/*"/>	
            <unmanaged>ERROR_GRAPHICS_UNSWIZZLING_APERTURE_UNAVAILABLE</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_UNSWIZZLING_APERTURE_UNAVAILABLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsUnswizzlingApertureUnsupported">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_UNSWIZZLING_APERTURE_UNSUPPORTED']/*"/>	
            <unmanaged>ERROR_GRAPHICS_UNSWIZZLING_APERTURE_UNSUPPORTED</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_UNSWIZZLING_APERTURE_UNSUPPORTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsCantEvictPinnedAllocation">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_CANT_EVICT_PINNED_ALLOCATION']/*"/>	
            <unmanaged>ERROR_GRAPHICS_CANT_EVICT_PINNED_ALLOCATION</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_CANT_EVICT_PINNED_ALLOCATION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsInvalidAllocationUsage">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_INVALID_ALLOCATION_USAGE']/*"/>	
            <unmanaged>ERROR_GRAPHICS_INVALID_ALLOCATION_USAGE</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_INVALID_ALLOCATION_USAGE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsCantRenderLockedAllocation">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_CANT_RENDER_LOCKED_ALLOCATION']/*"/>	
            <unmanaged>ERROR_GRAPHICS_CANT_RENDER_LOCKED_ALLOCATION</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_CANT_RENDER_LOCKED_ALLOCATION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsAllocationClosed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_ALLOCATION_CLOSED']/*"/>	
            <unmanaged>ERROR_GRAPHICS_ALLOCATION_CLOSED</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_ALLOCATION_CLOSED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsInvalidAllocationInstance">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_INVALID_ALLOCATION_INSTANCE']/*"/>	
            <unmanaged>ERROR_GRAPHICS_INVALID_ALLOCATION_INSTANCE</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_INVALID_ALLOCATION_INSTANCE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsInvalidAllocationHandle">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_INVALID_ALLOCATION_HANDLE']/*"/>	
            <unmanaged>ERROR_GRAPHICS_INVALID_ALLOCATION_HANDLE</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_INVALID_ALLOCATION_HANDLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsWrongAllocationDevice">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_WRONG_ALLOCATION_DEVICE']/*"/>	
            <unmanaged>ERROR_GRAPHICS_WRONG_ALLOCATION_DEVICE</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_WRONG_ALLOCATION_DEVICE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsAllocationContentLost">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_ALLOCATION_CONTENT_LOST']/*"/>	
            <unmanaged>ERROR_GRAPHICS_ALLOCATION_CONTENT_LOST</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_ALLOCATION_CONTENT_LOST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsGpuExceptionOnDevice">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_GPU_EXCEPTION_ON_DEVICE']/*"/>	
            <unmanaged>ERROR_GRAPHICS_GPU_EXCEPTION_ON_DEVICE</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_GPU_EXCEPTION_ON_DEVICE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsSkipAllocationPreparation">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_SKIP_ALLOCATION_PREPARATION']/*"/>	
            <unmanaged>ERROR_GRAPHICS_SKIP_ALLOCATION_PREPARATION</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_SKIP_ALLOCATION_PREPARATION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsInvalidVidpnTopology">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_INVALID_VIDPN_TOPOLOGY']/*"/>	
            <unmanaged>ERROR_GRAPHICS_INVALID_VIDPN_TOPOLOGY</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_INVALID_VIDPN_TOPOLOGY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsVidpnTopologyNotSupported">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_VIDPN_TOPOLOGY_NOT_SUPPORTED']/*"/>	
            <unmanaged>ERROR_GRAPHICS_VIDPN_TOPOLOGY_NOT_SUPPORTED</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_VIDPN_TOPOLOGY_NOT_SUPPORTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsVidpnTopologyCurrentlyNotSupported">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_VIDPN_TOPOLOGY_CURRENTLY_NOT_SUPPORTED']/*"/>	
            <unmanaged>ERROR_GRAPHICS_VIDPN_TOPOLOGY_CURRENTLY_NOT_SUPPORTED</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_VIDPN_TOPOLOGY_CURRENTLY_NOT_SUPPORTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsInvalidVidpn">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_INVALID_VIDPN']/*"/>	
            <unmanaged>ERROR_GRAPHICS_INVALID_VIDPN</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_INVALID_VIDPN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsInvalidVideoPresentSource">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_SOURCE']/*"/>	
            <unmanaged>ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_SOURCE</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_SOURCE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsInvalidVideoPresentTarget">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_TARGET']/*"/>	
            <unmanaged>ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_TARGET</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_TARGET</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsVidpnModalityNotSupported">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_VIDPN_MODALITY_NOT_SUPPORTED']/*"/>	
            <unmanaged>ERROR_GRAPHICS_VIDPN_MODALITY_NOT_SUPPORTED</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_VIDPN_MODALITY_NOT_SUPPORTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsModeNotPinned">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_MODE_NOT_PINNED']/*"/>	
            <unmanaged>ERROR_GRAPHICS_MODE_NOT_PINNED</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_MODE_NOT_PINNED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsInvalidVidpnSourcemodeset">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_INVALID_VIDPN_SOURCEMODESET']/*"/>	
            <unmanaged>ERROR_GRAPHICS_INVALID_VIDPN_SOURCEMODESET</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_INVALID_VIDPN_SOURCEMODESET</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsInvalidVidpnTargetmodeset">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_INVALID_VIDPN_TARGETMODESET']/*"/>	
            <unmanaged>ERROR_GRAPHICS_INVALID_VIDPN_TARGETMODESET</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_INVALID_VIDPN_TARGETMODESET</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsInvalidFrequency">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_INVALID_FREQUENCY']/*"/>	
            <unmanaged>ERROR_GRAPHICS_INVALID_FREQUENCY</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_INVALID_FREQUENCY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsInvalidActiveRegion">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_INVALID_ACTIVE_REGION']/*"/>	
            <unmanaged>ERROR_GRAPHICS_INVALID_ACTIVE_REGION</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_INVALID_ACTIVE_REGION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsInvalidTotalRegion">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_INVALID_TOTAL_REGION']/*"/>	
            <unmanaged>ERROR_GRAPHICS_INVALID_TOTAL_REGION</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_INVALID_TOTAL_REGION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsInvalidVideoPresentSourceMode">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_SOURCE_MODE']/*"/>	
            <unmanaged>ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_SOURCE_MODE</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_SOURCE_MODE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsInvalidVideoPresentTargetMode">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_TARGET_MODE']/*"/>	
            <unmanaged>ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_TARGET_MODE</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_TARGET_MODE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsPinnedModeMustRemainInSet">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_PINNED_MODE_MUST_REMAIN_IN_SET']/*"/>	
            <unmanaged>ERROR_GRAPHICS_PINNED_MODE_MUST_REMAIN_IN_SET</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_PINNED_MODE_MUST_REMAIN_IN_SET</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsPathAlreadyInTopology">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_PATH_ALREADY_IN_TOPOLOGY']/*"/>	
            <unmanaged>ERROR_GRAPHICS_PATH_ALREADY_IN_TOPOLOGY</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_PATH_ALREADY_IN_TOPOLOGY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsModeAlreadyInModeset">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_MODE_ALREADY_IN_MODESET']/*"/>	
            <unmanaged>ERROR_GRAPHICS_MODE_ALREADY_IN_MODESET</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_MODE_ALREADY_IN_MODESET</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsInvalidVideopresentsourceset">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_INVALID_VIDEOPRESENTSOURCESET']/*"/>	
            <unmanaged>ERROR_GRAPHICS_INVALID_VIDEOPRESENTSOURCESET</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_INVALID_VIDEOPRESENTSOURCESET</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsInvalidVideopresenttargetset">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_INVALID_VIDEOPRESENTTARGETSET']/*"/>	
            <unmanaged>ERROR_GRAPHICS_INVALID_VIDEOPRESENTTARGETSET</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_INVALID_VIDEOPRESENTTARGETSET</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsSourceAlreadyInSet">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_SOURCE_ALREADY_IN_SET']/*"/>	
            <unmanaged>ERROR_GRAPHICS_SOURCE_ALREADY_IN_SET</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_SOURCE_ALREADY_IN_SET</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsTargetAlreadyInSet">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_TARGET_ALREADY_IN_SET']/*"/>	
            <unmanaged>ERROR_GRAPHICS_TARGET_ALREADY_IN_SET</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_TARGET_ALREADY_IN_SET</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsInvalidVidpnPresentPath">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_INVALID_VIDPN_PRESENT_PATH']/*"/>	
            <unmanaged>ERROR_GRAPHICS_INVALID_VIDPN_PRESENT_PATH</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_INVALID_VIDPN_PRESENT_PATH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsNoRecommendedVidpnTopology">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_NO_RECOMMENDED_VIDPN_TOPOLOGY']/*"/>	
            <unmanaged>ERROR_GRAPHICS_NO_RECOMMENDED_VIDPN_TOPOLOGY</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_NO_RECOMMENDED_VIDPN_TOPOLOGY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsInvalidMonitorFrequencyrangeset">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGESET']/*"/>	
            <unmanaged>ERROR_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGESET</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGESET</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsInvalidMonitorFrequencyrange">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGE']/*"/>	
            <unmanaged>ERROR_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGE</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsFrequencyrangeNotInSet">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_FREQUENCYRANGE_NOT_IN_SET']/*"/>	
            <unmanaged>ERROR_GRAPHICS_FREQUENCYRANGE_NOT_IN_SET</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_FREQUENCYRANGE_NOT_IN_SET</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsNoPreferredMode">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_NO_PREFERRED_MODE']/*"/>	
            <unmanaged>ERROR_GRAPHICS_NO_PREFERRED_MODE</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_NO_PREFERRED_MODE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsFrequencyrangeAlreadyInSet">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_FREQUENCYRANGE_ALREADY_IN_SET']/*"/>	
            <unmanaged>ERROR_GRAPHICS_FREQUENCYRANGE_ALREADY_IN_SET</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_FREQUENCYRANGE_ALREADY_IN_SET</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsStaleModeset">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_STALE_MODESET']/*"/>	
            <unmanaged>ERROR_GRAPHICS_STALE_MODESET</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_STALE_MODESET</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsInvalidMonitorSourcemodeset">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_INVALID_MONITOR_SOURCEMODESET']/*"/>	
            <unmanaged>ERROR_GRAPHICS_INVALID_MONITOR_SOURCEMODESET</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_INVALID_MONITOR_SOURCEMODESET</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsInvalidMonitorSourceMode">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_INVALID_MONITOR_SOURCE_MODE']/*"/>	
            <unmanaged>ERROR_GRAPHICS_INVALID_MONITOR_SOURCE_MODE</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_INVALID_MONITOR_SOURCE_MODE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsNoRecommendedFunctionalVidpn">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_NO_RECOMMENDED_FUNCTIONAL_VIDPN']/*"/>	
            <unmanaged>ERROR_GRAPHICS_NO_RECOMMENDED_FUNCTIONAL_VIDPN</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_NO_RECOMMENDED_FUNCTIONAL_VIDPN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsModeIdMustBeUnique">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_MODE_ID_MUST_BE_UNIQUE']/*"/>	
            <unmanaged>ERROR_GRAPHICS_MODE_ID_MUST_BE_UNIQUE</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_MODE_ID_MUST_BE_UNIQUE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsEmptyAdapterMonitorModeSupportIntersection">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_EMPTY_ADAPTER_MONITOR_MODE_SUPPORT_INTERSECTION']/*"/>	
            <unmanaged>ERROR_GRAPHICS_EMPTY_ADAPTER_MONITOR_MODE_SUPPORT_INTERSECTION</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_EMPTY_ADAPTER_MONITOR_MODE_SUPPORT_INTERSECTION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsVideoPresentTargetsLessThanSources">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_VIDEO_PRESENT_TARGETS_LESS_THAN_SOURCES']/*"/>	
            <unmanaged>ERROR_GRAPHICS_VIDEO_PRESENT_TARGETS_LESS_THAN_SOURCES</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_VIDEO_PRESENT_TARGETS_LESS_THAN_SOURCES</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsPathNotInTopology">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_PATH_NOT_IN_TOPOLOGY']/*"/>	
            <unmanaged>ERROR_GRAPHICS_PATH_NOT_IN_TOPOLOGY</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_PATH_NOT_IN_TOPOLOGY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsAdapterMustHaveAtLeastOneSource">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_ADAPTER_MUST_HAVE_AT_LEAST_ONE_SOURCE']/*"/>	
            <unmanaged>ERROR_GRAPHICS_ADAPTER_MUST_HAVE_AT_LEAST_ONE_SOURCE</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_ADAPTER_MUST_HAVE_AT_LEAST_ONE_SOURCE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsAdapterMustHaveAtLeastOneTarget">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_ADAPTER_MUST_HAVE_AT_LEAST_ONE_TARGET']/*"/>	
            <unmanaged>ERROR_GRAPHICS_ADAPTER_MUST_HAVE_AT_LEAST_ONE_TARGET</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_ADAPTER_MUST_HAVE_AT_LEAST_ONE_TARGET</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsInvalidMonitordescriptorset">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_INVALID_MONITORDESCRIPTORSET']/*"/>	
            <unmanaged>ERROR_GRAPHICS_INVALID_MONITORDESCRIPTORSET</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_INVALID_MONITORDESCRIPTORSET</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsInvalidMonitordescriptor">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_INVALID_MONITORDESCRIPTOR']/*"/>	
            <unmanaged>ERROR_GRAPHICS_INVALID_MONITORDESCRIPTOR</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_INVALID_MONITORDESCRIPTOR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsMonitordescriptorNotInSet">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_MONITORDESCRIPTOR_NOT_IN_SET']/*"/>	
            <unmanaged>ERROR_GRAPHICS_MONITORDESCRIPTOR_NOT_IN_SET</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_MONITORDESCRIPTOR_NOT_IN_SET</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsMonitordescriptorAlreadyInSet">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_MONITORDESCRIPTOR_ALREADY_IN_SET']/*"/>	
            <unmanaged>ERROR_GRAPHICS_MONITORDESCRIPTOR_ALREADY_IN_SET</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_MONITORDESCRIPTOR_ALREADY_IN_SET</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsMonitordescriptorIdMustBeUnique">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_MONITORDESCRIPTOR_ID_MUST_BE_UNIQUE']/*"/>	
            <unmanaged>ERROR_GRAPHICS_MONITORDESCRIPTOR_ID_MUST_BE_UNIQUE</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_MONITORDESCRIPTOR_ID_MUST_BE_UNIQUE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsInvalidVidpnTargetSubsetType">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_INVALID_VIDPN_TARGET_SUBSET_TYPE']/*"/>	
            <unmanaged>ERROR_GRAPHICS_INVALID_VIDPN_TARGET_SUBSET_TYPE</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_INVALID_VIDPN_TARGET_SUBSET_TYPE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsResourcesNotRelated">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_RESOURCES_NOT_RELATED']/*"/>	
            <unmanaged>ERROR_GRAPHICS_RESOURCES_NOT_RELATED</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_RESOURCES_NOT_RELATED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsSourceIdMustBeUnique">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_SOURCE_ID_MUST_BE_UNIQUE']/*"/>	
            <unmanaged>ERROR_GRAPHICS_SOURCE_ID_MUST_BE_UNIQUE</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_SOURCE_ID_MUST_BE_UNIQUE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsTargetIdMustBeUnique">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_TARGET_ID_MUST_BE_UNIQUE']/*"/>	
            <unmanaged>ERROR_GRAPHICS_TARGET_ID_MUST_BE_UNIQUE</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_TARGET_ID_MUST_BE_UNIQUE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsNoAvailableVidpnTarget">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_NO_AVAILABLE_VIDPN_TARGET']/*"/>	
            <unmanaged>ERROR_GRAPHICS_NO_AVAILABLE_VIDPN_TARGET</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_NO_AVAILABLE_VIDPN_TARGET</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsMonitorCouldNotBeAssociatedWithAdapter">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_MONITOR_COULD_NOT_BE_ASSOCIATED_WITH_ADAPTER']/*"/>	
            <unmanaged>ERROR_GRAPHICS_MONITOR_COULD_NOT_BE_ASSOCIATED_WITH_ADAPTER</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_MONITOR_COULD_NOT_BE_ASSOCIATED_WITH_ADAPTER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsNoVidpnmgr">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_NO_VIDPNMGR']/*"/>	
            <unmanaged>ERROR_GRAPHICS_NO_VIDPNMGR</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_NO_VIDPNMGR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsNoActiveVidpn">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_NO_ACTIVE_VIDPN']/*"/>	
            <unmanaged>ERROR_GRAPHICS_NO_ACTIVE_VIDPN</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_NO_ACTIVE_VIDPN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsStaleVidpnTopology">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_STALE_VIDPN_TOPOLOGY']/*"/>	
            <unmanaged>ERROR_GRAPHICS_STALE_VIDPN_TOPOLOGY</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_STALE_VIDPN_TOPOLOGY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsMonitorNotConnected">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_MONITOR_NOT_CONNECTED']/*"/>	
            <unmanaged>ERROR_GRAPHICS_MONITOR_NOT_CONNECTED</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_MONITOR_NOT_CONNECTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsSourceNotInTopology">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_SOURCE_NOT_IN_TOPOLOGY']/*"/>	
            <unmanaged>ERROR_GRAPHICS_SOURCE_NOT_IN_TOPOLOGY</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_SOURCE_NOT_IN_TOPOLOGY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsInvalidPrimarysurfaceSize">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_INVALID_PRIMARYSURFACE_SIZE']/*"/>	
            <unmanaged>ERROR_GRAPHICS_INVALID_PRIMARYSURFACE_SIZE</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_INVALID_PRIMARYSURFACE_SIZE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsInvalidVisibleregionSize">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_INVALID_VISIBLEREGION_SIZE']/*"/>	
            <unmanaged>ERROR_GRAPHICS_INVALID_VISIBLEREGION_SIZE</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_INVALID_VISIBLEREGION_SIZE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsInvalidStride">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_INVALID_STRIDE']/*"/>	
            <unmanaged>ERROR_GRAPHICS_INVALID_STRIDE</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_INVALID_STRIDE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsInvalidPixelformat">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_INVALID_PIXELFORMAT']/*"/>	
            <unmanaged>ERROR_GRAPHICS_INVALID_PIXELFORMAT</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_INVALID_PIXELFORMAT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsInvalidColorbasis">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_INVALID_COLORBASIS']/*"/>	
            <unmanaged>ERROR_GRAPHICS_INVALID_COLORBASIS</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_INVALID_COLORBASIS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsInvalidPixelvalueaccessmode">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_INVALID_PIXELVALUEACCESSMODE']/*"/>	
            <unmanaged>ERROR_GRAPHICS_INVALID_PIXELVALUEACCESSMODE</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_INVALID_PIXELVALUEACCESSMODE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsTargetNotInTopology">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_TARGET_NOT_IN_TOPOLOGY']/*"/>	
            <unmanaged>ERROR_GRAPHICS_TARGET_NOT_IN_TOPOLOGY</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_TARGET_NOT_IN_TOPOLOGY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsNoDisplayModeManagementSupport">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_NO_DISPLAY_MODE_MANAGEMENT_SUPPORT']/*"/>	
            <unmanaged>ERROR_GRAPHICS_NO_DISPLAY_MODE_MANAGEMENT_SUPPORT</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_NO_DISPLAY_MODE_MANAGEMENT_SUPPORT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsVidpnSourceInUse">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_VIDPN_SOURCE_IN_USE']/*"/>	
            <unmanaged>ERROR_GRAPHICS_VIDPN_SOURCE_IN_USE</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_VIDPN_SOURCE_IN_USE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsCantAccessActiveVidpn">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_CANT_ACCESS_ACTIVE_VIDPN']/*"/>	
            <unmanaged>ERROR_GRAPHICS_CANT_ACCESS_ACTIVE_VIDPN</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_CANT_ACCESS_ACTIVE_VIDPN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsInvalidPathImportanceOrdinal">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_INVALID_PATH_IMPORTANCE_ORDINAL']/*"/>	
            <unmanaged>ERROR_GRAPHICS_INVALID_PATH_IMPORTANCE_ORDINAL</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_INVALID_PATH_IMPORTANCE_ORDINAL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsInvalidPathContentGeometryTransformation">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_INVALID_PATH_CONTENT_GEOMETRY_TRANSFORMATION']/*"/>	
            <unmanaged>ERROR_GRAPHICS_INVALID_PATH_CONTENT_GEOMETRY_TRANSFORMATION</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_INVALID_PATH_CONTENT_GEOMETRY_TRANSFORMATION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsPathContentGeometryTransformationNotSupported">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_SUPPORTED']/*"/>	
            <unmanaged>ERROR_GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_SUPPORTED</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_SUPPORTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsInvalidGammaRamp">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_INVALID_GAMMA_RAMP']/*"/>	
            <unmanaged>ERROR_GRAPHICS_INVALID_GAMMA_RAMP</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_INVALID_GAMMA_RAMP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsGammaRampNotSupported">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_GAMMA_RAMP_NOT_SUPPORTED']/*"/>	
            <unmanaged>ERROR_GRAPHICS_GAMMA_RAMP_NOT_SUPPORTED</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_GAMMA_RAMP_NOT_SUPPORTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsMultisamplingNotSupported">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_MULTISAMPLING_NOT_SUPPORTED']/*"/>	
            <unmanaged>ERROR_GRAPHICS_MULTISAMPLING_NOT_SUPPORTED</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_MULTISAMPLING_NOT_SUPPORTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsModeNotInModeset">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_MODE_NOT_IN_MODESET']/*"/>	
            <unmanaged>ERROR_GRAPHICS_MODE_NOT_IN_MODESET</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_MODE_NOT_IN_MODESET</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsDatasetIsEmpty">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_DATASET_IS_EMPTY']/*"/>	
            <unmanaged>ERROR_GRAPHICS_DATASET_IS_EMPTY</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_DATASET_IS_EMPTY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsNoMoreElementsInDataset">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_NO_MORE_ELEMENTS_IN_DATASET']/*"/>	
            <unmanaged>ERROR_GRAPHICS_NO_MORE_ELEMENTS_IN_DATASET</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_NO_MORE_ELEMENTS_IN_DATASET</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsInvalidVidpnTopologyRecommendationReason">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_INVALID_VIDPN_TOPOLOGY_RECOMMENDATION_REASON']/*"/>	
            <unmanaged>ERROR_GRAPHICS_INVALID_VIDPN_TOPOLOGY_RECOMMENDATION_REASON</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_INVALID_VIDPN_TOPOLOGY_RECOMMENDATION_REASON</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsInvalidPathContentType">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_INVALID_PATH_CONTENT_TYPE']/*"/>	
            <unmanaged>ERROR_GRAPHICS_INVALID_PATH_CONTENT_TYPE</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_INVALID_PATH_CONTENT_TYPE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsInvalidCopyprotectionType">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_INVALID_COPYPROTECTION_TYPE']/*"/>	
            <unmanaged>ERROR_GRAPHICS_INVALID_COPYPROTECTION_TYPE</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_INVALID_COPYPROTECTION_TYPE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsUnassignedModesetAlreadyExists">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_UNASSIGNED_MODESET_ALREADY_EXISTS']/*"/>	
            <unmanaged>ERROR_GRAPHICS_UNASSIGNED_MODESET_ALREADY_EXISTS</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_UNASSIGNED_MODESET_ALREADY_EXISTS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsPathContentGeometryTransformationNotPinned">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_PINNED']/*"/>	
            <unmanaged>ERROR_GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_PINNED</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_PINNED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsInvalidScanlineOrdering">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_INVALID_SCANLINE_ORDERING']/*"/>	
            <unmanaged>ERROR_GRAPHICS_INVALID_SCANLINE_ORDERING</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_INVALID_SCANLINE_ORDERING</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsTopologyChangesNotAllowed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_TOPOLOGY_CHANGES_NOT_ALLOWED']/*"/>	
            <unmanaged>ERROR_GRAPHICS_TOPOLOGY_CHANGES_NOT_ALLOWED</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_TOPOLOGY_CHANGES_NOT_ALLOWED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsNoAvailableImportanceOrdinals">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_NO_AVAILABLE_IMPORTANCE_ORDINALS']/*"/>	
            <unmanaged>ERROR_GRAPHICS_NO_AVAILABLE_IMPORTANCE_ORDINALS</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_NO_AVAILABLE_IMPORTANCE_ORDINALS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsIncompatiblePrivateFormat">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_INCOMPATIBLE_PRIVATE_FORMAT']/*"/>	
            <unmanaged>ERROR_GRAPHICS_INCOMPATIBLE_PRIVATE_FORMAT</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_INCOMPATIBLE_PRIVATE_FORMAT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsInvalidModePruningAlgorithm">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_INVALID_MODE_PRUNING_ALGORITHM']/*"/>	
            <unmanaged>ERROR_GRAPHICS_INVALID_MODE_PRUNING_ALGORITHM</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_INVALID_MODE_PRUNING_ALGORITHM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsInvalidMonitorCapabilityOrigin">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_INVALID_MONITOR_CAPABILITY_ORIGIN']/*"/>	
            <unmanaged>ERROR_GRAPHICS_INVALID_MONITOR_CAPABILITY_ORIGIN</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_INVALID_MONITOR_CAPABILITY_ORIGIN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsInvalidMonitorFrequencyrangeConstraint">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGE_CONSTRAINT']/*"/>	
            <unmanaged>ERROR_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGE_CONSTRAINT</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGE_CONSTRAINT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsMaximumNumPathsReached">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_MAX_NUM_PATHS_REACHED']/*"/>	
            <unmanaged>ERROR_GRAPHICS_MAX_NUM_PATHS_REACHED</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_MAX_NUM_PATHS_REACHED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsCancelVidpnTopologyAugmentation">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_CANCEL_VIDPN_TOPOLOGY_AUGMENTATION']/*"/>	
            <unmanaged>ERROR_GRAPHICS_CANCEL_VIDPN_TOPOLOGY_AUGMENTATION</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_CANCEL_VIDPN_TOPOLOGY_AUGMENTATION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsInvalidClientType">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_INVALID_CLIENT_TYPE']/*"/>	
            <unmanaged>ERROR_GRAPHICS_INVALID_CLIENT_TYPE</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_INVALID_CLIENT_TYPE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsClientvidpnNotSet">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_CLIENTVIDPN_NOT_SET']/*"/>	
            <unmanaged>ERROR_GRAPHICS_CLIENTVIDPN_NOT_SET</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_CLIENTVIDPN_NOT_SET</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsSpecifiedChildAlreadyConnected">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_SPECIFIED_CHILD_ALREADY_CONNECTED']/*"/>	
            <unmanaged>ERROR_GRAPHICS_SPECIFIED_CHILD_ALREADY_CONNECTED</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_SPECIFIED_CHILD_ALREADY_CONNECTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsChildDescriptorNotSupported">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_CHILD_DESCRIPTOR_NOT_SUPPORTED']/*"/>	
            <unmanaged>ERROR_GRAPHICS_CHILD_DESCRIPTOR_NOT_SUPPORTED</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_CHILD_DESCRIPTOR_NOT_SUPPORTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsUnknownChildStatus">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_UNKNOWN_CHILD_STATUS']/*"/>	
            <unmanaged>ERROR_GRAPHICS_UNKNOWN_CHILD_STATUS</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_UNKNOWN_CHILD_STATUS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsNotALinkedAdapter">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_NOT_A_LINKED_ADAPTER']/*"/>	
            <unmanaged>ERROR_GRAPHICS_NOT_A_LINKED_ADAPTER</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_NOT_A_LINKED_ADAPTER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsLeadlinkNotEnumerated">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_LEADLINK_NOT_ENUMERATED']/*"/>	
            <unmanaged>ERROR_GRAPHICS_LEADLINK_NOT_ENUMERATED</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_LEADLINK_NOT_ENUMERATED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsChainlinksNotEnumerated">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_CHAINLINKS_NOT_ENUMERATED']/*"/>	
            <unmanaged>ERROR_GRAPHICS_CHAINLINKS_NOT_ENUMERATED</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_CHAINLINKS_NOT_ENUMERATED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsAdapterChainNotReady">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_ADAPTER_CHAIN_NOT_READY']/*"/>	
            <unmanaged>ERROR_GRAPHICS_ADAPTER_CHAIN_NOT_READY</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_ADAPTER_CHAIN_NOT_READY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsChainlinksNotStarted">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_CHAINLINKS_NOT_STARTED']/*"/>	
            <unmanaged>ERROR_GRAPHICS_CHAINLINKS_NOT_STARTED</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_CHAINLINKS_NOT_STARTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsChainlinksNotPoweredOn">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_CHAINLINKS_NOT_POWERED_ON']/*"/>	
            <unmanaged>ERROR_GRAPHICS_CHAINLINKS_NOT_POWERED_ON</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_CHAINLINKS_NOT_POWERED_ON</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsInconsistentDeviceLinkState">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_INCONSISTENT_DEVICE_LINK_STATE']/*"/>	
            <unmanaged>ERROR_GRAPHICS_INCONSISTENT_DEVICE_LINK_STATE</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_INCONSISTENT_DEVICE_LINK_STATE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsLeadlinkStartDeferred">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_LEADLINK_START_DEFERRED']/*"/>	
            <unmanaged>ERROR_GRAPHICS_LEADLINK_START_DEFERRED</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_LEADLINK_START_DEFERRED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsNotPostDeviceDriver">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_NOT_POST_DEVICE_DRIVER']/*"/>	
            <unmanaged>ERROR_GRAPHICS_NOT_POST_DEVICE_DRIVER</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_NOT_POST_DEVICE_DRIVER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsPollingTooFrequently">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_POLLING_TOO_FREQUENTLY']/*"/>	
            <unmanaged>ERROR_GRAPHICS_POLLING_TOO_FREQUENTLY</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_POLLING_TOO_FREQUENTLY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsStartDeferred">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_START_DEFERRED']/*"/>	
            <unmanaged>ERROR_GRAPHICS_START_DEFERRED</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_START_DEFERRED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsAdapterAccessNotExcluded">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_ADAPTER_ACCESS_NOT_EXCLUDED']/*"/>	
            <unmanaged>ERROR_GRAPHICS_ADAPTER_ACCESS_NOT_EXCLUDED</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_ADAPTER_ACCESS_NOT_EXCLUDED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsOpmNotSupported">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_OPM_NOT_SUPPORTED']/*"/>	
            <unmanaged>ERROR_GRAPHICS_OPM_NOT_SUPPORTED</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_OPM_NOT_SUPPORTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsCoppNotSupported">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_COPP_NOT_SUPPORTED']/*"/>	
            <unmanaged>ERROR_GRAPHICS_COPP_NOT_SUPPORTED</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_COPP_NOT_SUPPORTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsUabNotSupported">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_UAB_NOT_SUPPORTED']/*"/>	
            <unmanaged>ERROR_GRAPHICS_UAB_NOT_SUPPORTED</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_UAB_NOT_SUPPORTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsOpmInvalidEncryptedParameters">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_OPM_INVALID_ENCRYPTED_PARAMETERS']/*"/>	
            <unmanaged>ERROR_GRAPHICS_OPM_INVALID_ENCRYPTED_PARAMETERS</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_OPM_INVALID_ENCRYPTED_PARAMETERS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsOpmNoVideoOutputsExist">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_OPM_NO_VIDEO_OUTPUTS_EXIST']/*"/>	
            <unmanaged>ERROR_GRAPHICS_OPM_NO_VIDEO_OUTPUTS_EXIST</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_OPM_NO_VIDEO_OUTPUTS_EXIST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsOpmInternalError">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_OPM_INTERNAL_ERROR']/*"/>	
            <unmanaged>ERROR_GRAPHICS_OPM_INTERNAL_ERROR</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_OPM_INTERNAL_ERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsOpmInvalidHandle">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_OPM_INVALID_HANDLE']/*"/>	
            <unmanaged>ERROR_GRAPHICS_OPM_INVALID_HANDLE</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_OPM_INVALID_HANDLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsPvpInvalidCertificateLength">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_PVP_INVALID_CERTIFICATE_LENGTH']/*"/>	
            <unmanaged>ERROR_GRAPHICS_PVP_INVALID_CERTIFICATE_LENGTH</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_PVP_INVALID_CERTIFICATE_LENGTH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsOpmSpanningModeEnabled">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_OPM_SPANNING_MODE_ENABLED']/*"/>	
            <unmanaged>ERROR_GRAPHICS_OPM_SPANNING_MODE_ENABLED</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_OPM_SPANNING_MODE_ENABLED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsOpmTheaterModeEnabled">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_OPM_THEATER_MODE_ENABLED']/*"/>	
            <unmanaged>ERROR_GRAPHICS_OPM_THEATER_MODE_ENABLED</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_OPM_THEATER_MODE_ENABLED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsPvpHfsFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_PVP_HFS_FAILED']/*"/>	
            <unmanaged>ERROR_GRAPHICS_PVP_HFS_FAILED</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_PVP_HFS_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsOpmInvalidSrm">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_OPM_INVALID_SRM']/*"/>	
            <unmanaged>ERROR_GRAPHICS_OPM_INVALID_SRM</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_OPM_INVALID_SRM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsOpmOutputDoesNotSupportHdcp">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_HDCP']/*"/>	
            <unmanaged>ERROR_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_HDCP</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_HDCP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsOpmOutputDoesNotSupportAcp">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_ACP']/*"/>	
            <unmanaged>ERROR_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_ACP</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_ACP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsOpmOutputDoesNotSupportCgmsa">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_CGMSA']/*"/>	
            <unmanaged>ERROR_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_CGMSA</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_CGMSA</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsOpmHdcpSrmNeverSet">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_OPM_HDCP_SRM_NEVER_SET']/*"/>	
            <unmanaged>ERROR_GRAPHICS_OPM_HDCP_SRM_NEVER_SET</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_OPM_HDCP_SRM_NEVER_SET</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsOpmResolutionTooHigh">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_OPM_RESOLUTION_TOO_HIGH']/*"/>	
            <unmanaged>ERROR_GRAPHICS_OPM_RESOLUTION_TOO_HIGH</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_OPM_RESOLUTION_TOO_HIGH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsOpmAllHdcpHardwareAlreadyInUse">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_OPM_ALL_HDCP_HARDWARE_ALREADY_IN_USE']/*"/>	
            <unmanaged>ERROR_GRAPHICS_OPM_ALL_HDCP_HARDWARE_ALREADY_IN_USE</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_OPM_ALL_HDCP_HARDWARE_ALREADY_IN_USE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsOpmVideoOutputNoLongerExists">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_OPM_VIDEO_OUTPUT_NO_LONGER_EXISTS']/*"/>	
            <unmanaged>ERROR_GRAPHICS_OPM_VIDEO_OUTPUT_NO_LONGER_EXISTS</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_OPM_VIDEO_OUTPUT_NO_LONGER_EXISTS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsOpmSessionTypeChangeInProgress">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_OPM_SESSION_TYPE_CHANGE_IN_PROGRESS']/*"/>	
            <unmanaged>ERROR_GRAPHICS_OPM_SESSION_TYPE_CHANGE_IN_PROGRESS</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_OPM_SESSION_TYPE_CHANGE_IN_PROGRESS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsOpmVideoOutputDoesNotHaveCoppSemantics">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_OPM_VIDEO_OUTPUT_DOES_NOT_HAVE_COPP_SEMANTICS']/*"/>	
            <unmanaged>ERROR_GRAPHICS_OPM_VIDEO_OUTPUT_DOES_NOT_HAVE_COPP_SEMANTICS</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_OPM_VIDEO_OUTPUT_DOES_NOT_HAVE_COPP_SEMANTICS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsOpmInvalidInformationRequest">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_OPM_INVALID_INFORMATION_REQUEST']/*"/>	
            <unmanaged>ERROR_GRAPHICS_OPM_INVALID_INFORMATION_REQUEST</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_OPM_INVALID_INFORMATION_REQUEST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsOpmDriverInternalError">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_OPM_DRIVER_INTERNAL_ERROR']/*"/>	
            <unmanaged>ERROR_GRAPHICS_OPM_DRIVER_INTERNAL_ERROR</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_OPM_DRIVER_INTERNAL_ERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsOpmVideoOutputDoesNotHaveOpmSemantics">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_OPM_VIDEO_OUTPUT_DOES_NOT_HAVE_OPM_SEMANTICS']/*"/>	
            <unmanaged>ERROR_GRAPHICS_OPM_VIDEO_OUTPUT_DOES_NOT_HAVE_OPM_SEMANTICS</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_OPM_VIDEO_OUTPUT_DOES_NOT_HAVE_OPM_SEMANTICS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsOpmSignalingNotSupported">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_OPM_SIGNALING_NOT_SUPPORTED']/*"/>	
            <unmanaged>ERROR_GRAPHICS_OPM_SIGNALING_NOT_SUPPORTED</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_OPM_SIGNALING_NOT_SUPPORTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsOpmInvalidConfigurationRequest">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_OPM_INVALID_CONFIGURATION_REQUEST']/*"/>	
            <unmanaged>ERROR_GRAPHICS_OPM_INVALID_CONFIGURATION_REQUEST</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_OPM_INVALID_CONFIGURATION_REQUEST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsI2CNotSupported">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_I2C_NOT_SUPPORTED']/*"/>	
            <unmanaged>ERROR_GRAPHICS_I2C_NOT_SUPPORTED</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_I2C_NOT_SUPPORTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsI2CDeviceDoesNotExist">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_I2C_DEVICE_DOES_NOT_EXIST']/*"/>	
            <unmanaged>ERROR_GRAPHICS_I2C_DEVICE_DOES_NOT_EXIST</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_I2C_DEVICE_DOES_NOT_EXIST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsI2CErrorTransmittingData">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_I2C_ERROR_TRANSMITTING_DATA']/*"/>	
            <unmanaged>ERROR_GRAPHICS_I2C_ERROR_TRANSMITTING_DATA</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_I2C_ERROR_TRANSMITTING_DATA</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsI2CErrorReceivingData">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_I2C_ERROR_RECEIVING_DATA']/*"/>	
            <unmanaged>ERROR_GRAPHICS_I2C_ERROR_RECEIVING_DATA</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_I2C_ERROR_RECEIVING_DATA</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsDdcciVcpNotSupported">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_DDCCI_VCP_NOT_SUPPORTED']/*"/>	
            <unmanaged>ERROR_GRAPHICS_DDCCI_VCP_NOT_SUPPORTED</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_DDCCI_VCP_NOT_SUPPORTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsDdcciInvalidData">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_DDCCI_INVALID_DATA']/*"/>	
            <unmanaged>ERROR_GRAPHICS_DDCCI_INVALID_DATA</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_DDCCI_INVALID_DATA</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsDdcciMonitorReturnedInvalidTimingStatusByte">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_DDCCI_MONITOR_RETURNED_INVALID_TIMING_STATUS_BYTE']/*"/>	
            <unmanaged>ERROR_GRAPHICS_DDCCI_MONITOR_RETURNED_INVALID_TIMING_STATUS_BYTE</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_DDCCI_MONITOR_RETURNED_INVALID_TIMING_STATUS_BYTE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsMcaInvalidCapabilitiesString">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_MCA_INVALID_CAPABILITIES_STRING']/*"/>	
            <unmanaged>ERROR_GRAPHICS_MCA_INVALID_CAPABILITIES_STRING</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_MCA_INVALID_CAPABILITIES_STRING</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsMcaInternalError">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_MCA_INTERNAL_ERROR']/*"/>	
            <unmanaged>ERROR_GRAPHICS_MCA_INTERNAL_ERROR</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_MCA_INTERNAL_ERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsDdcciInvalidMessageCommand">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_DDCCI_INVALID_MESSAGE_COMMAND']/*"/>	
            <unmanaged>ERROR_GRAPHICS_DDCCI_INVALID_MESSAGE_COMMAND</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_DDCCI_INVALID_MESSAGE_COMMAND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsDdcciInvalidMessageLength">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_DDCCI_INVALID_MESSAGE_LENGTH']/*"/>	
            <unmanaged>ERROR_GRAPHICS_DDCCI_INVALID_MESSAGE_LENGTH</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_DDCCI_INVALID_MESSAGE_LENGTH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsDdcciInvalidMessageChecksum">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_DDCCI_INVALID_MESSAGE_CHECKSUM']/*"/>	
            <unmanaged>ERROR_GRAPHICS_DDCCI_INVALID_MESSAGE_CHECKSUM</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_DDCCI_INVALID_MESSAGE_CHECKSUM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsInvalidPhysicalMonitorHandle">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_INVALID_PHYSICAL_MONITOR_HANDLE']/*"/>	
            <unmanaged>ERROR_GRAPHICS_INVALID_PHYSICAL_MONITOR_HANDLE</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_INVALID_PHYSICAL_MONITOR_HANDLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsMonitorNoLongerExists">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_MONITOR_NO_LONGER_EXISTS']/*"/>	
            <unmanaged>ERROR_GRAPHICS_MONITOR_NO_LONGER_EXISTS</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_MONITOR_NO_LONGER_EXISTS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsDdcciCurrentCurrentValueGreaterThanMaximumValue">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_DDCCI_CURRENT_CURRENT_VALUE_GREATER_THAN_MAXIMUM_VALUE']/*"/>	
            <unmanaged>ERROR_GRAPHICS_DDCCI_CURRENT_CURRENT_VALUE_GREATER_THAN_MAXIMUM_VALUE</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_DDCCI_CURRENT_CURRENT_VALUE_GREATER_THAN_MAXIMUM_VALUE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsMcaInvalidVcpVersion">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_MCA_INVALID_VCP_VERSION']/*"/>	
            <unmanaged>ERROR_GRAPHICS_MCA_INVALID_VCP_VERSION</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_MCA_INVALID_VCP_VERSION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsMcaMonitorViolatesMccsSpecification">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_MCA_MONITOR_VIOLATES_MCCS_SPECIFICATION']/*"/>	
            <unmanaged>ERROR_GRAPHICS_MCA_MONITOR_VIOLATES_MCCS_SPECIFICATION</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_MCA_MONITOR_VIOLATES_MCCS_SPECIFICATION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsMcaMccsVersionMismatch">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_MCA_MCCS_VERSION_MISMATCH']/*"/>	
            <unmanaged>ERROR_GRAPHICS_MCA_MCCS_VERSION_MISMATCH</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_MCA_MCCS_VERSION_MISMATCH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsMcaUnsupportedMccsVersion">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_MCA_UNSUPPORTED_MCCS_VERSION']/*"/>	
            <unmanaged>ERROR_GRAPHICS_MCA_UNSUPPORTED_MCCS_VERSION</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_MCA_UNSUPPORTED_MCCS_VERSION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsMcaInvalidTechnologyTypeReturned">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_MCA_INVALID_TECHNOLOGY_TYPE_RETURNED']/*"/>	
            <unmanaged>ERROR_GRAPHICS_MCA_INVALID_TECHNOLOGY_TYPE_RETURNED</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_MCA_INVALID_TECHNOLOGY_TYPE_RETURNED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsMcaUnsupportedColorTemperature">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_MCA_UNSUPPORTED_COLOR_TEMPERATURE']/*"/>	
            <unmanaged>ERROR_GRAPHICS_MCA_UNSUPPORTED_COLOR_TEMPERATURE</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_MCA_UNSUPPORTED_COLOR_TEMPERATURE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsOnlyConsoleSessionSupported">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_ONLY_CONSOLE_SESSION_SUPPORTED']/*"/>	
            <unmanaged>ERROR_GRAPHICS_ONLY_CONSOLE_SESSION_SUPPORTED</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_ONLY_CONSOLE_SESSION_SUPPORTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsNoDisplayDeviceCorrespondsToName">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_NO_DISPLAY_DEVICE_CORRESPONDS_TO_NAME']/*"/>	
            <unmanaged>ERROR_GRAPHICS_NO_DISPLAY_DEVICE_CORRESPONDS_TO_NAME</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_NO_DISPLAY_DEVICE_CORRESPONDS_TO_NAME</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsDisplayDeviceNotAttachedToDesktop">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_DISPLAY_DEVICE_NOT_ATTACHED_TO_DESKTOP']/*"/>	
            <unmanaged>ERROR_GRAPHICS_DISPLAY_DEVICE_NOT_ATTACHED_TO_DESKTOP</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_DISPLAY_DEVICE_NOT_ATTACHED_TO_DESKTOP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsMirroringDevicesNotSupported">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_MIRRORING_DEVICES_NOT_SUPPORTED']/*"/>	
            <unmanaged>ERROR_GRAPHICS_MIRRORING_DEVICES_NOT_SUPPORTED</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_MIRRORING_DEVICES_NOT_SUPPORTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsInvalidPointer">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_INVALID_POINTER']/*"/>	
            <unmanaged>ERROR_GRAPHICS_INVALID_POINTER</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_INVALID_POINTER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsNoMonitorsCorrespondToDisplayDevice">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_NO_MONITORS_CORRESPOND_TO_DISPLAY_DEVICE']/*"/>	
            <unmanaged>ERROR_GRAPHICS_NO_MONITORS_CORRESPOND_TO_DISPLAY_DEVICE</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_NO_MONITORS_CORRESPOND_TO_DISPLAY_DEVICE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsParameterArrayTooSmall">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_PARAMETER_ARRAY_TOO_SMALL']/*"/>	
            <unmanaged>ERROR_GRAPHICS_PARAMETER_ARRAY_TOO_SMALL</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_PARAMETER_ARRAY_TOO_SMALL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsInternalError">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_INTERNAL_ERROR']/*"/>	
            <unmanaged>ERROR_GRAPHICS_INTERNAL_ERROR</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_INTERNAL_ERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.GraphicsSessionTypeChangeInProgress">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_GRAPHICS_SESSION_TYPE_CHANGE_IN_PROGRESS']/*"/>	
            <unmanaged>ERROR_GRAPHICS_SESSION_TYPE_CHANGE_IN_PROGRESS</unmanaged>	
            <unmanaged-short>ERROR_GRAPHICS_SESSION_TYPE_CHANGE_IN_PROGRESS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NdisInterfaceClosing">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NDIS_INTERFACE_CLOSING']/*"/>	
            <unmanaged>ERROR_NDIS_INTERFACE_CLOSING</unmanaged>	
            <unmanaged-short>ERROR_NDIS_INTERFACE_CLOSING</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NdisBadVersion">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NDIS_BAD_VERSION']/*"/>	
            <unmanaged>ERROR_NDIS_BAD_VERSION</unmanaged>	
            <unmanaged-short>ERROR_NDIS_BAD_VERSION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NdisBadCharacteristics">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NDIS_BAD_CHARACTERISTICS']/*"/>	
            <unmanaged>ERROR_NDIS_BAD_CHARACTERISTICS</unmanaged>	
            <unmanaged-short>ERROR_NDIS_BAD_CHARACTERISTICS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NdisAdapterNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NDIS_ADAPTER_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_NDIS_ADAPTER_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_NDIS_ADAPTER_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NdisOpenFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NDIS_OPEN_FAILED']/*"/>	
            <unmanaged>ERROR_NDIS_OPEN_FAILED</unmanaged>	
            <unmanaged-short>ERROR_NDIS_OPEN_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NdisDeviceFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NDIS_DEVICE_FAILED']/*"/>	
            <unmanaged>ERROR_NDIS_DEVICE_FAILED</unmanaged>	
            <unmanaged-short>ERROR_NDIS_DEVICE_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NdisMulticastFull">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NDIS_MULTICAST_FULL']/*"/>	
            <unmanaged>ERROR_NDIS_MULTICAST_FULL</unmanaged>	
            <unmanaged-short>ERROR_NDIS_MULTICAST_FULL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NdisMulticastExists">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NDIS_MULTICAST_EXISTS']/*"/>	
            <unmanaged>ERROR_NDIS_MULTICAST_EXISTS</unmanaged>	
            <unmanaged-short>ERROR_NDIS_MULTICAST_EXISTS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NdisMulticastNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NDIS_MULTICAST_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_NDIS_MULTICAST_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_NDIS_MULTICAST_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NdisRequestAborted">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NDIS_REQUEST_ABORTED']/*"/>	
            <unmanaged>ERROR_NDIS_REQUEST_ABORTED</unmanaged>	
            <unmanaged-short>ERROR_NDIS_REQUEST_ABORTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NdisResetInProgress">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NDIS_RESET_IN_PROGRESS']/*"/>	
            <unmanaged>ERROR_NDIS_RESET_IN_PROGRESS</unmanaged>	
            <unmanaged-short>ERROR_NDIS_RESET_IN_PROGRESS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NdisNotSupported">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NDIS_NOT_SUPPORTED']/*"/>	
            <unmanaged>ERROR_NDIS_NOT_SUPPORTED</unmanaged>	
            <unmanaged-short>ERROR_NDIS_NOT_SUPPORTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NdisInvalidPacket">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NDIS_INVALID_PACKET']/*"/>	
            <unmanaged>ERROR_NDIS_INVALID_PACKET</unmanaged>	
            <unmanaged-short>ERROR_NDIS_INVALID_PACKET</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NdisAdapterNotReady">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NDIS_ADAPTER_NOT_READY']/*"/>	
            <unmanaged>ERROR_NDIS_ADAPTER_NOT_READY</unmanaged>	
            <unmanaged-short>ERROR_NDIS_ADAPTER_NOT_READY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NdisInvalidLength">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NDIS_INVALID_LENGTH']/*"/>	
            <unmanaged>ERROR_NDIS_INVALID_LENGTH</unmanaged>	
            <unmanaged-short>ERROR_NDIS_INVALID_LENGTH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NdisInvalidData">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NDIS_INVALID_DATA']/*"/>	
            <unmanaged>ERROR_NDIS_INVALID_DATA</unmanaged>	
            <unmanaged-short>ERROR_NDIS_INVALID_DATA</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NdisBufferTooShort">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NDIS_BUFFER_TOO_SHORT']/*"/>	
            <unmanaged>ERROR_NDIS_BUFFER_TOO_SHORT</unmanaged>	
            <unmanaged-short>ERROR_NDIS_BUFFER_TOO_SHORT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NdisInvalidOid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NDIS_INVALID_OID']/*"/>	
            <unmanaged>ERROR_NDIS_INVALID_OID</unmanaged>	
            <unmanaged-short>ERROR_NDIS_INVALID_OID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NdisAdapterRemoved">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NDIS_ADAPTER_REMOVED']/*"/>	
            <unmanaged>ERROR_NDIS_ADAPTER_REMOVED</unmanaged>	
            <unmanaged-short>ERROR_NDIS_ADAPTER_REMOVED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NdisUnsupportedMedia">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NDIS_UNSUPPORTED_MEDIA']/*"/>	
            <unmanaged>ERROR_NDIS_UNSUPPORTED_MEDIA</unmanaged>	
            <unmanaged-short>ERROR_NDIS_UNSUPPORTED_MEDIA</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NdisGroupAddressInUse">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NDIS_GROUP_ADDRESS_IN_USE']/*"/>	
            <unmanaged>ERROR_NDIS_GROUP_ADDRESS_IN_USE</unmanaged>	
            <unmanaged-short>ERROR_NDIS_GROUP_ADDRESS_IN_USE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NdisFileNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NDIS_FILE_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_NDIS_FILE_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_NDIS_FILE_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NdisErrorReadingFile">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NDIS_ERROR_READING_FILE']/*"/>	
            <unmanaged>ERROR_NDIS_ERROR_READING_FILE</unmanaged>	
            <unmanaged-short>ERROR_NDIS_ERROR_READING_FILE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NdisAlreadyMapped">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NDIS_ALREADY_MAPPED']/*"/>	
            <unmanaged>ERROR_NDIS_ALREADY_MAPPED</unmanaged>	
            <unmanaged-short>ERROR_NDIS_ALREADY_MAPPED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NdisResourceConflict">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NDIS_RESOURCE_CONFLICT']/*"/>	
            <unmanaged>ERROR_NDIS_RESOURCE_CONFLICT</unmanaged>	
            <unmanaged-short>ERROR_NDIS_RESOURCE_CONFLICT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NdisMediaDisconnected">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NDIS_MEDIA_DISCONNECTED']/*"/>	
            <unmanaged>ERROR_NDIS_MEDIA_DISCONNECTED</unmanaged>	
            <unmanaged-short>ERROR_NDIS_MEDIA_DISCONNECTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NdisInvalidAddress">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NDIS_INVALID_ADDRESS']/*"/>	
            <unmanaged>ERROR_NDIS_INVALID_ADDRESS</unmanaged>	
            <unmanaged-short>ERROR_NDIS_INVALID_ADDRESS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NdisInvalidDeviceRequest">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NDIS_INVALID_DEVICE_REQUEST']/*"/>	
            <unmanaged>ERROR_NDIS_INVALID_DEVICE_REQUEST</unmanaged>	
            <unmanaged-short>ERROR_NDIS_INVALID_DEVICE_REQUEST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NdisPaused">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NDIS_PAUSED']/*"/>	
            <unmanaged>ERROR_NDIS_PAUSED</unmanaged>	
            <unmanaged-short>ERROR_NDIS_PAUSED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NdisInterfaceNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NDIS_INTERFACE_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_NDIS_INTERFACE_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_NDIS_INTERFACE_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NdisUnsupportedRevision">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NDIS_UNSUPPORTED_REVISION']/*"/>	
            <unmanaged>ERROR_NDIS_UNSUPPORTED_REVISION</unmanaged>	
            <unmanaged-short>ERROR_NDIS_UNSUPPORTED_REVISION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NdisInvalidPort">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NDIS_INVALID_PORT']/*"/>	
            <unmanaged>ERROR_NDIS_INVALID_PORT</unmanaged>	
            <unmanaged-short>ERROR_NDIS_INVALID_PORT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NdisInvalidPortState">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NDIS_INVALID_PORT_STATE']/*"/>	
            <unmanaged>ERROR_NDIS_INVALID_PORT_STATE</unmanaged>	
            <unmanaged-short>ERROR_NDIS_INVALID_PORT_STATE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NdisLowPowerState">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NDIS_LOW_POWER_STATE']/*"/>	
            <unmanaged>ERROR_NDIS_LOW_POWER_STATE</unmanaged>	
            <unmanaged-short>ERROR_NDIS_LOW_POWER_STATE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NdisReinitRequired">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NDIS_REINIT_REQUIRED']/*"/>	
            <unmanaged>ERROR_NDIS_REINIT_REQUIRED</unmanaged>	
            <unmanaged-short>ERROR_NDIS_REINIT_REQUIRED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NdisDot11AutoConfigEnabled">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NDIS_DOT11_AUTO_CONFIG_ENABLED']/*"/>	
            <unmanaged>ERROR_NDIS_DOT11_AUTO_CONFIG_ENABLED</unmanaged>	
            <unmanaged-short>ERROR_NDIS_DOT11_AUTO_CONFIG_ENABLED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NdisDot11MediaInUse">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NDIS_DOT11_MEDIA_IN_USE']/*"/>	
            <unmanaged>ERROR_NDIS_DOT11_MEDIA_IN_USE</unmanaged>	
            <unmanaged-short>ERROR_NDIS_DOT11_MEDIA_IN_USE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NdisDot11PowerStateInvalid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NDIS_DOT11_POWER_STATE_INVALID']/*"/>	
            <unmanaged>ERROR_NDIS_DOT11_POWER_STATE_INVALID</unmanaged>	
            <unmanaged-short>ERROR_NDIS_DOT11_POWER_STATE_INVALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NdisPmWolPatternListFull">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NDIS_PM_WOL_PATTERN_LIST_FULL']/*"/>	
            <unmanaged>ERROR_NDIS_PM_WOL_PATTERN_LIST_FULL</unmanaged>	
            <unmanaged-short>ERROR_NDIS_PM_WOL_PATTERN_LIST_FULL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NdisPmProtocolOffloadListFull">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NDIS_PM_PROTOCOL_OFFLOAD_LIST_FULL']/*"/>	
            <unmanaged>ERROR_NDIS_PM_PROTOCOL_OFFLOAD_LIST_FULL</unmanaged>	
            <unmanaged-short>ERROR_NDIS_PM_PROTOCOL_OFFLOAD_LIST_FULL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NdisIndicationRequired">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NDIS_INDICATION_REQUIRED']/*"/>	
            <unmanaged>ERROR_NDIS_INDICATION_REQUIRED</unmanaged>	
            <unmanaged-short>ERROR_NDIS_INDICATION_REQUIRED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NdisOffloadPolicy">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NDIS_OFFLOAD_POLICY']/*"/>	
            <unmanaged>ERROR_NDIS_OFFLOAD_POLICY</unmanaged>	
            <unmanaged-short>ERROR_NDIS_OFFLOAD_POLICY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NdisOffloadConnectionRejected">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NDIS_OFFLOAD_CONNECTION_REJECTED']/*"/>	
            <unmanaged>ERROR_NDIS_OFFLOAD_CONNECTION_REJECTED</unmanaged>	
            <unmanaged-short>ERROR_NDIS_OFFLOAD_CONNECTION_REJECTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.NdisOffloadPathRejected">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_NDIS_OFFLOAD_PATH_REJECTED']/*"/>	
            <unmanaged>ERROR_NDIS_OFFLOAD_PATH_REJECTED</unmanaged>	
            <unmanaged-short>ERROR_NDIS_OFFLOAD_PATH_REJECTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.HvInvalidHypercallCode">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_HV_INVALID_HYPERCALL_CODE']/*"/>	
            <unmanaged>ERROR_HV_INVALID_HYPERCALL_CODE</unmanaged>	
            <unmanaged-short>ERROR_HV_INVALID_HYPERCALL_CODE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.HvInvalidHypercallInput">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_HV_INVALID_HYPERCALL_INPUT']/*"/>	
            <unmanaged>ERROR_HV_INVALID_HYPERCALL_INPUT</unmanaged>	
            <unmanaged-short>ERROR_HV_INVALID_HYPERCALL_INPUT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.HvInvalidAlignment">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_HV_INVALID_ALIGNMENT']/*"/>	
            <unmanaged>ERROR_HV_INVALID_ALIGNMENT</unmanaged>	
            <unmanaged-short>ERROR_HV_INVALID_ALIGNMENT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.HvInvalidParameter">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_HV_INVALID_PARAMETER']/*"/>	
            <unmanaged>ERROR_HV_INVALID_PARAMETER</unmanaged>	
            <unmanaged-short>ERROR_HV_INVALID_PARAMETER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.HvAccessDenied">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_HV_ACCESS_DENIED']/*"/>	
            <unmanaged>ERROR_HV_ACCESS_DENIED</unmanaged>	
            <unmanaged-short>ERROR_HV_ACCESS_DENIED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.HvInvalidPartitionState">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_HV_INVALID_PARTITION_STATE']/*"/>	
            <unmanaged>ERROR_HV_INVALID_PARTITION_STATE</unmanaged>	
            <unmanaged-short>ERROR_HV_INVALID_PARTITION_STATE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.HvOperationDenied">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_HV_OPERATION_DENIED']/*"/>	
            <unmanaged>ERROR_HV_OPERATION_DENIED</unmanaged>	
            <unmanaged-short>ERROR_HV_OPERATION_DENIED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.HvUnknownProperty">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_HV_UNKNOWN_PROPERTY']/*"/>	
            <unmanaged>ERROR_HV_UNKNOWN_PROPERTY</unmanaged>	
            <unmanaged-short>ERROR_HV_UNKNOWN_PROPERTY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.HvPropertyValueOutOfRange">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_HV_PROPERTY_VALUE_OUT_OF_RANGE']/*"/>	
            <unmanaged>ERROR_HV_PROPERTY_VALUE_OUT_OF_RANGE</unmanaged>	
            <unmanaged-short>ERROR_HV_PROPERTY_VALUE_OUT_OF_RANGE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.HvInsufficientMemory">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_HV_INSUFFICIENT_MEMORY']/*"/>	
            <unmanaged>ERROR_HV_INSUFFICIENT_MEMORY</unmanaged>	
            <unmanaged-short>ERROR_HV_INSUFFICIENT_MEMORY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.HvPartitionTooDeep">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_HV_PARTITION_TOO_DEEP']/*"/>	
            <unmanaged>ERROR_HV_PARTITION_TOO_DEEP</unmanaged>	
            <unmanaged-short>ERROR_HV_PARTITION_TOO_DEEP</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.HvInvalidPartitionId">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_HV_INVALID_PARTITION_ID']/*"/>	
            <unmanaged>ERROR_HV_INVALID_PARTITION_ID</unmanaged>	
            <unmanaged-short>ERROR_HV_INVALID_PARTITION_ID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.HvInvalidVpIndex">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_HV_INVALID_VP_INDEX']/*"/>	
            <unmanaged>ERROR_HV_INVALID_VP_INDEX</unmanaged>	
            <unmanaged-short>ERROR_HV_INVALID_VP_INDEX</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.HvInvalidPortId">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_HV_INVALID_PORT_ID']/*"/>	
            <unmanaged>ERROR_HV_INVALID_PORT_ID</unmanaged>	
            <unmanaged-short>ERROR_HV_INVALID_PORT_ID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.HvInvalidConnectionId">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_HV_INVALID_CONNECTION_ID']/*"/>	
            <unmanaged>ERROR_HV_INVALID_CONNECTION_ID</unmanaged>	
            <unmanaged-short>ERROR_HV_INVALID_CONNECTION_ID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.HvInsufficientBuffers">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_HV_INSUFFICIENT_BUFFERS']/*"/>	
            <unmanaged>ERROR_HV_INSUFFICIENT_BUFFERS</unmanaged>	
            <unmanaged-short>ERROR_HV_INSUFFICIENT_BUFFERS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.HvNotAcknowledged">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_HV_NOT_ACKNOWLEDGED']/*"/>	
            <unmanaged>ERROR_HV_NOT_ACKNOWLEDGED</unmanaged>	
            <unmanaged-short>ERROR_HV_NOT_ACKNOWLEDGED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.HvAcknowledged">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_HV_ACKNOWLEDGED']/*"/>	
            <unmanaged>ERROR_HV_ACKNOWLEDGED</unmanaged>	
            <unmanaged-short>ERROR_HV_ACKNOWLEDGED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.HvInvalidSaveRestoreState">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_HV_INVALID_SAVE_RESTORE_STATE']/*"/>	
            <unmanaged>ERROR_HV_INVALID_SAVE_RESTORE_STATE</unmanaged>	
            <unmanaged-short>ERROR_HV_INVALID_SAVE_RESTORE_STATE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.HvInvalidSynicState">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_HV_INVALID_SYNIC_STATE']/*"/>	
            <unmanaged>ERROR_HV_INVALID_SYNIC_STATE</unmanaged>	
            <unmanaged-short>ERROR_HV_INVALID_SYNIC_STATE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.HvObjectInUse">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_HV_OBJECT_IN_USE']/*"/>	
            <unmanaged>ERROR_HV_OBJECT_IN_USE</unmanaged>	
            <unmanaged-short>ERROR_HV_OBJECT_IN_USE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.HvInvalidProximityDomainInformation">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_HV_INVALID_PROXIMITY_DOMAIN_INFO']/*"/>	
            <unmanaged>ERROR_HV_INVALID_PROXIMITY_DOMAIN_INFO</unmanaged>	
            <unmanaged-short>ERROR_HV_INVALID_PROXIMITY_DOMAIN_INFO</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.HvNoData">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_HV_NO_DATA']/*"/>	
            <unmanaged>ERROR_HV_NO_DATA</unmanaged>	
            <unmanaged-short>ERROR_HV_NO_DATA</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.HvInactive">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_HV_INACTIVE']/*"/>	
            <unmanaged>ERROR_HV_INACTIVE</unmanaged>	
            <unmanaged-short>ERROR_HV_INACTIVE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.HvNoResources">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_HV_NO_RESOURCES']/*"/>	
            <unmanaged>ERROR_HV_NO_RESOURCES</unmanaged>	
            <unmanaged-short>ERROR_HV_NO_RESOURCES</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.HvFeatureUnavailable">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_HV_FEATURE_UNAVAILABLE']/*"/>	
            <unmanaged>ERROR_HV_FEATURE_UNAVAILABLE</unmanaged>	
            <unmanaged-short>ERROR_HV_FEATURE_UNAVAILABLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.HvInsufficientDeviceDomains">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_HV_INSUFFICIENT_DEVICE_DOMAINS']/*"/>	
            <unmanaged>ERROR_HV_INSUFFICIENT_DEVICE_DOMAINS</unmanaged>	
            <unmanaged-short>ERROR_HV_INSUFFICIENT_DEVICE_DOMAINS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.HvInvalidLpIndex">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_HV_INVALID_LP_INDEX']/*"/>	
            <unmanaged>ERROR_HV_INVALID_LP_INDEX</unmanaged>	
            <unmanaged-short>ERROR_HV_INVALID_LP_INDEX</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.HvNotPresent">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_HV_NOT_PRESENT']/*"/>	
            <unmanaged>ERROR_HV_NOT_PRESENT</unmanaged>	
            <unmanaged-short>ERROR_HV_NOT_PRESENT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VidDuplicateHandler">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VID_DUPLICATE_HANDLER']/*"/>	
            <unmanaged>ERROR_VID_DUPLICATE_HANDLER</unmanaged>	
            <unmanaged-short>ERROR_VID_DUPLICATE_HANDLER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VidTooManyHandlers">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VID_TOO_MANY_HANDLERS']/*"/>	
            <unmanaged>ERROR_VID_TOO_MANY_HANDLERS</unmanaged>	
            <unmanaged-short>ERROR_VID_TOO_MANY_HANDLERS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VidQueueFull">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VID_QUEUE_FULL']/*"/>	
            <unmanaged>ERROR_VID_QUEUE_FULL</unmanaged>	
            <unmanaged-short>ERROR_VID_QUEUE_FULL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VidHandlerNotPresent">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VID_HANDLER_NOT_PRESENT']/*"/>	
            <unmanaged>ERROR_VID_HANDLER_NOT_PRESENT</unmanaged>	
            <unmanaged-short>ERROR_VID_HANDLER_NOT_PRESENT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VidInvalidObjectName">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VID_INVALID_OBJECT_NAME']/*"/>	
            <unmanaged>ERROR_VID_INVALID_OBJECT_NAME</unmanaged>	
            <unmanaged-short>ERROR_VID_INVALID_OBJECT_NAME</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VidPartitionNameTooLong">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VID_PARTITION_NAME_TOO_LONG']/*"/>	
            <unmanaged>ERROR_VID_PARTITION_NAME_TOO_LONG</unmanaged>	
            <unmanaged-short>ERROR_VID_PARTITION_NAME_TOO_LONG</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VidMessageQueueNameTooLong">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VID_MESSAGE_QUEUE_NAME_TOO_LONG']/*"/>	
            <unmanaged>ERROR_VID_MESSAGE_QUEUE_NAME_TOO_LONG</unmanaged>	
            <unmanaged-short>ERROR_VID_MESSAGE_QUEUE_NAME_TOO_LONG</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VidPartitionAlreadyExists">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VID_PARTITION_ALREADY_EXISTS']/*"/>	
            <unmanaged>ERROR_VID_PARTITION_ALREADY_EXISTS</unmanaged>	
            <unmanaged-short>ERROR_VID_PARTITION_ALREADY_EXISTS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VidPartitionDoesNotExist">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VID_PARTITION_DOES_NOT_EXIST']/*"/>	
            <unmanaged>ERROR_VID_PARTITION_DOES_NOT_EXIST</unmanaged>	
            <unmanaged-short>ERROR_VID_PARTITION_DOES_NOT_EXIST</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VidPartitionNameNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VID_PARTITION_NAME_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_VID_PARTITION_NAME_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_VID_PARTITION_NAME_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VidMessageQueueAlreadyExists">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VID_MESSAGE_QUEUE_ALREADY_EXISTS']/*"/>	
            <unmanaged>ERROR_VID_MESSAGE_QUEUE_ALREADY_EXISTS</unmanaged>	
            <unmanaged-short>ERROR_VID_MESSAGE_QUEUE_ALREADY_EXISTS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VidExceededMbpEntryMapLimit">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VID_EXCEEDED_MBP_ENTRY_MAP_LIMIT']/*"/>	
            <unmanaged>ERROR_VID_EXCEEDED_MBP_ENTRY_MAP_LIMIT</unmanaged>	
            <unmanaged-short>ERROR_VID_EXCEEDED_MBP_ENTRY_MAP_LIMIT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VidMbStillReferenced">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VID_MB_STILL_REFERENCED']/*"/>	
            <unmanaged>ERROR_VID_MB_STILL_REFERENCED</unmanaged>	
            <unmanaged-short>ERROR_VID_MB_STILL_REFERENCED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VidChildGpaPageSetCorrupted">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VID_CHILD_GPA_PAGE_SET_CORRUPTED']/*"/>	
            <unmanaged>ERROR_VID_CHILD_GPA_PAGE_SET_CORRUPTED</unmanaged>	
            <unmanaged-short>ERROR_VID_CHILD_GPA_PAGE_SET_CORRUPTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VidInvalidNumaSettings">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VID_INVALID_NUMA_SETTINGS']/*"/>	
            <unmanaged>ERROR_VID_INVALID_NUMA_SETTINGS</unmanaged>	
            <unmanaged-short>ERROR_VID_INVALID_NUMA_SETTINGS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VidInvalidNumaNodeIndex">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VID_INVALID_NUMA_NODE_INDEX']/*"/>	
            <unmanaged>ERROR_VID_INVALID_NUMA_NODE_INDEX</unmanaged>	
            <unmanaged-short>ERROR_VID_INVALID_NUMA_NODE_INDEX</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VidNotificationQueueAlreadyAssociated">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VID_NOTIFICATION_QUEUE_ALREADY_ASSOCIATED']/*"/>	
            <unmanaged>ERROR_VID_NOTIFICATION_QUEUE_ALREADY_ASSOCIATED</unmanaged>	
            <unmanaged-short>ERROR_VID_NOTIFICATION_QUEUE_ALREADY_ASSOCIATED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VidInvalidMemoryBlockHandle">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VID_INVALID_MEMORY_BLOCK_HANDLE']/*"/>	
            <unmanaged>ERROR_VID_INVALID_MEMORY_BLOCK_HANDLE</unmanaged>	
            <unmanaged-short>ERROR_VID_INVALID_MEMORY_BLOCK_HANDLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VidPageRangeOverflow">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VID_PAGE_RANGE_OVERFLOW']/*"/>	
            <unmanaged>ERROR_VID_PAGE_RANGE_OVERFLOW</unmanaged>	
            <unmanaged-short>ERROR_VID_PAGE_RANGE_OVERFLOW</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VidInvalidMessageQueueHandle">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VID_INVALID_MESSAGE_QUEUE_HANDLE']/*"/>	
            <unmanaged>ERROR_VID_INVALID_MESSAGE_QUEUE_HANDLE</unmanaged>	
            <unmanaged-short>ERROR_VID_INVALID_MESSAGE_QUEUE_HANDLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VidInvalidGpaRangeHandle">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VID_INVALID_GPA_RANGE_HANDLE']/*"/>	
            <unmanaged>ERROR_VID_INVALID_GPA_RANGE_HANDLE</unmanaged>	
            <unmanaged-short>ERROR_VID_INVALID_GPA_RANGE_HANDLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VidNoMemoryBlockNotificationQueue">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VID_NO_MEMORY_BLOCK_NOTIFICATION_QUEUE']/*"/>	
            <unmanaged>ERROR_VID_NO_MEMORY_BLOCK_NOTIFICATION_QUEUE</unmanaged>	
            <unmanaged-short>ERROR_VID_NO_MEMORY_BLOCK_NOTIFICATION_QUEUE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VidMemoryBlockLockCountExceeded">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VID_MEMORY_BLOCK_LOCK_COUNT_EXCEEDED']/*"/>	
            <unmanaged>ERROR_VID_MEMORY_BLOCK_LOCK_COUNT_EXCEEDED</unmanaged>	
            <unmanaged-short>ERROR_VID_MEMORY_BLOCK_LOCK_COUNT_EXCEEDED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VidInvalidPpmHandle">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VID_INVALID_PPM_HANDLE']/*"/>	
            <unmanaged>ERROR_VID_INVALID_PPM_HANDLE</unmanaged>	
            <unmanaged-short>ERROR_VID_INVALID_PPM_HANDLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VidMbpsAreLocked">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VID_MBPS_ARE_LOCKED']/*"/>	
            <unmanaged>ERROR_VID_MBPS_ARE_LOCKED</unmanaged>	
            <unmanaged-short>ERROR_VID_MBPS_ARE_LOCKED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VidMessageQueueClosed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VID_MESSAGE_QUEUE_CLOSED']/*"/>	
            <unmanaged>ERROR_VID_MESSAGE_QUEUE_CLOSED</unmanaged>	
            <unmanaged-short>ERROR_VID_MESSAGE_QUEUE_CLOSED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VidVirtualProcessorLimitExceeded">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VID_VIRTUAL_PROCESSOR_LIMIT_EXCEEDED']/*"/>	
            <unmanaged>ERROR_VID_VIRTUAL_PROCESSOR_LIMIT_EXCEEDED</unmanaged>	
            <unmanaged-short>ERROR_VID_VIRTUAL_PROCESSOR_LIMIT_EXCEEDED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VidStopPending">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VID_STOP_PENDING']/*"/>	
            <unmanaged>ERROR_VID_STOP_PENDING</unmanaged>	
            <unmanaged-short>ERROR_VID_STOP_PENDING</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VidInvalidProcessorState">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VID_INVALID_PROCESSOR_STATE']/*"/>	
            <unmanaged>ERROR_VID_INVALID_PROCESSOR_STATE</unmanaged>	
            <unmanaged-short>ERROR_VID_INVALID_PROCESSOR_STATE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VidExceededKmContextCountLimit">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VID_EXCEEDED_KM_CONTEXT_COUNT_LIMIT']/*"/>	
            <unmanaged>ERROR_VID_EXCEEDED_KM_CONTEXT_COUNT_LIMIT</unmanaged>	
            <unmanaged-short>ERROR_VID_EXCEEDED_KM_CONTEXT_COUNT_LIMIT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VidKmInterfaceAlreadyInitialized">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VID_KM_INTERFACE_ALREADY_INITIALIZED']/*"/>	
            <unmanaged>ERROR_VID_KM_INTERFACE_ALREADY_INITIALIZED</unmanaged>	
            <unmanaged-short>ERROR_VID_KM_INTERFACE_ALREADY_INITIALIZED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VidMbPropertyAlreadySetReset">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VID_MB_PROPERTY_ALREADY_SET_RESET']/*"/>	
            <unmanaged>ERROR_VID_MB_PROPERTY_ALREADY_SET_RESET</unmanaged>	
            <unmanaged-short>ERROR_VID_MB_PROPERTY_ALREADY_SET_RESET</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VidMmioRangeDestroyed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VID_MMIO_RANGE_DESTROYED']/*"/>	
            <unmanaged>ERROR_VID_MMIO_RANGE_DESTROYED</unmanaged>	
            <unmanaged-short>ERROR_VID_MMIO_RANGE_DESTROYED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VidInvalidChildGpaPageSet">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VID_INVALID_CHILD_GPA_PAGE_SET']/*"/>	
            <unmanaged>ERROR_VID_INVALID_CHILD_GPA_PAGE_SET</unmanaged>	
            <unmanaged-short>ERROR_VID_INVALID_CHILD_GPA_PAGE_SET</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VidReservePageSetIsBeingUsed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VID_RESERVE_PAGE_SET_IS_BEING_USED']/*"/>	
            <unmanaged>ERROR_VID_RESERVE_PAGE_SET_IS_BEING_USED</unmanaged>	
            <unmanaged-short>ERROR_VID_RESERVE_PAGE_SET_IS_BEING_USED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VidReservePageSetTooSmall">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VID_RESERVE_PAGE_SET_TOO_SMALL']/*"/>	
            <unmanaged>ERROR_VID_RESERVE_PAGE_SET_TOO_SMALL</unmanaged>	
            <unmanaged-short>ERROR_VID_RESERVE_PAGE_SET_TOO_SMALL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VidMbpAlreadyLockedUsingReservedPage">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VID_MBP_ALREADY_LOCKED_USING_RESERVED_PAGE']/*"/>	
            <unmanaged>ERROR_VID_MBP_ALREADY_LOCKED_USING_RESERVED_PAGE</unmanaged>	
            <unmanaged-short>ERROR_VID_MBP_ALREADY_LOCKED_USING_RESERVED_PAGE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VidMbpCountExceededLimit">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VID_MBP_COUNT_EXCEEDED_LIMIT']/*"/>	
            <unmanaged>ERROR_VID_MBP_COUNT_EXCEEDED_LIMIT</unmanaged>	
            <unmanaged-short>ERROR_VID_MBP_COUNT_EXCEEDED_LIMIT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VidSavedStateCorrupt">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VID_SAVED_STATE_CORRUPT']/*"/>	
            <unmanaged>ERROR_VID_SAVED_STATE_CORRUPT</unmanaged>	
            <unmanaged-short>ERROR_VID_SAVED_STATE_CORRUPT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VidSavedStateUnrecognizedItem">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VID_SAVED_STATE_UNRECOGNIZED_ITEM']/*"/>	
            <unmanaged>ERROR_VID_SAVED_STATE_UNRECOGNIZED_ITEM</unmanaged>	
            <unmanaged-short>ERROR_VID_SAVED_STATE_UNRECOGNIZED_ITEM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VidSavedStateIncompatible">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VID_SAVED_STATE_INCOMPATIBLE']/*"/>	
            <unmanaged>ERROR_VID_SAVED_STATE_INCOMPATIBLE</unmanaged>	
            <unmanaged-short>ERROR_VID_SAVED_STATE_INCOMPATIBLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VidRemoteNodeParentGpaPagesUsed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VID_REMOTE_NODE_PARENT_GPA_PAGES_USED']/*"/>	
            <unmanaged>ERROR_VID_REMOTE_NODE_PARENT_GPA_PAGES_USED</unmanaged>	
            <unmanaged-short>ERROR_VID_REMOTE_NODE_PARENT_GPA_PAGES_USED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrIncompleteRegeneration">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_INCOMPLETE_REGENERATION']/*"/>	
            <unmanaged>ERROR_VOLMGR_INCOMPLETE_REGENERATION</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_INCOMPLETE_REGENERATION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrIncompleteDiskMigration">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_INCOMPLETE_DISK_MIGRATION']/*"/>	
            <unmanaged>ERROR_VOLMGR_INCOMPLETE_DISK_MIGRATION</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_INCOMPLETE_DISK_MIGRATION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrDatabaseFull">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_DATABASE_FULL']/*"/>	
            <unmanaged>ERROR_VOLMGR_DATABASE_FULL</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_DATABASE_FULL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrDiskConfigurationCorrupted">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_DISK_CONFIGURATION_CORRUPTED']/*"/>	
            <unmanaged>ERROR_VOLMGR_DISK_CONFIGURATION_CORRUPTED</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_DISK_CONFIGURATION_CORRUPTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrDiskConfigurationNotInSync">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_DISK_CONFIGURATION_NOT_IN_SYNC']/*"/>	
            <unmanaged>ERROR_VOLMGR_DISK_CONFIGURATION_NOT_IN_SYNC</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_DISK_CONFIGURATION_NOT_IN_SYNC</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrPackConfigUpdateFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_PACK_CONFIG_UPDATE_FAILED']/*"/>	
            <unmanaged>ERROR_VOLMGR_PACK_CONFIG_UPDATE_FAILED</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_PACK_CONFIG_UPDATE_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrDiskContainsNonSimpleVolume">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_DISK_CONTAINS_NON_SIMPLE_VOLUME']/*"/>	
            <unmanaged>ERROR_VOLMGR_DISK_CONTAINS_NON_SIMPLE_VOLUME</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_DISK_CONTAINS_NON_SIMPLE_VOLUME</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrDiskDuplicate">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_DISK_DUPLICATE']/*"/>	
            <unmanaged>ERROR_VOLMGR_DISK_DUPLICATE</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_DISK_DUPLICATE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrDiskDynamic">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_DISK_DYNAMIC']/*"/>	
            <unmanaged>ERROR_VOLMGR_DISK_DYNAMIC</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_DISK_DYNAMIC</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrDiskIdInvalid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_DISK_ID_INVALID']/*"/>	
            <unmanaged>ERROR_VOLMGR_DISK_ID_INVALID</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_DISK_ID_INVALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrDiskInvalid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_DISK_INVALID']/*"/>	
            <unmanaged>ERROR_VOLMGR_DISK_INVALID</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_DISK_INVALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrDiskLastVoter">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_DISK_LAST_VOTER']/*"/>	
            <unmanaged>ERROR_VOLMGR_DISK_LAST_VOTER</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_DISK_LAST_VOTER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrDiskLayoutInvalid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_DISK_LAYOUT_INVALID']/*"/>	
            <unmanaged>ERROR_VOLMGR_DISK_LAYOUT_INVALID</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_DISK_LAYOUT_INVALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrDiskLayoutNonBasicBetweenBasicPartitions">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_DISK_LAYOUT_NON_BASIC_BETWEEN_BASIC_PARTITIONS']/*"/>	
            <unmanaged>ERROR_VOLMGR_DISK_LAYOUT_NON_BASIC_BETWEEN_BASIC_PARTITIONS</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_DISK_LAYOUT_NON_BASIC_BETWEEN_BASIC_PARTITIONS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrDiskLayoutNotCylinderAligned">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_DISK_LAYOUT_NOT_CYLINDER_ALIGNED']/*"/>	
            <unmanaged>ERROR_VOLMGR_DISK_LAYOUT_NOT_CYLINDER_ALIGNED</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_DISK_LAYOUT_NOT_CYLINDER_ALIGNED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrDiskLayoutPartitionsTooSmall">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_DISK_LAYOUT_PARTITIONS_TOO_SMALL']/*"/>	
            <unmanaged>ERROR_VOLMGR_DISK_LAYOUT_PARTITIONS_TOO_SMALL</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_DISK_LAYOUT_PARTITIONS_TOO_SMALL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrDiskLayoutPrimaryBetweenLogicalPartitions">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_DISK_LAYOUT_PRIMARY_BETWEEN_LOGICAL_PARTITIONS']/*"/>	
            <unmanaged>ERROR_VOLMGR_DISK_LAYOUT_PRIMARY_BETWEEN_LOGICAL_PARTITIONS</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_DISK_LAYOUT_PRIMARY_BETWEEN_LOGICAL_PARTITIONS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrDiskLayoutTooManyPartitions">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_DISK_LAYOUT_TOO_MANY_PARTITIONS']/*"/>	
            <unmanaged>ERROR_VOLMGR_DISK_LAYOUT_TOO_MANY_PARTITIONS</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_DISK_LAYOUT_TOO_MANY_PARTITIONS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrDiskMissing">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_DISK_MISSING']/*"/>	
            <unmanaged>ERROR_VOLMGR_DISK_MISSING</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_DISK_MISSING</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrDiskNotEmpty">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_DISK_NOT_EMPTY']/*"/>	
            <unmanaged>ERROR_VOLMGR_DISK_NOT_EMPTY</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_DISK_NOT_EMPTY</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrDiskNotEnoughSpace">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_DISK_NOT_ENOUGH_SPACE']/*"/>	
            <unmanaged>ERROR_VOLMGR_DISK_NOT_ENOUGH_SPACE</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_DISK_NOT_ENOUGH_SPACE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrDiskRevectoringFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_DISK_REVECTORING_FAILED']/*"/>	
            <unmanaged>ERROR_VOLMGR_DISK_REVECTORING_FAILED</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_DISK_REVECTORING_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrDiskSectorSizeInvalid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_DISK_SECTOR_SIZE_INVALID']/*"/>	
            <unmanaged>ERROR_VOLMGR_DISK_SECTOR_SIZE_INVALID</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_DISK_SECTOR_SIZE_INVALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrDiskSetNotContained">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_DISK_SET_NOT_CONTAINED']/*"/>	
            <unmanaged>ERROR_VOLMGR_DISK_SET_NOT_CONTAINED</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_DISK_SET_NOT_CONTAINED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrDiskUsedByMultipleMembers">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_DISK_USED_BY_MULTIPLE_MEMBERS']/*"/>	
            <unmanaged>ERROR_VOLMGR_DISK_USED_BY_MULTIPLE_MEMBERS</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_DISK_USED_BY_MULTIPLE_MEMBERS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrDiskUsedByMultiplePlexes">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_DISK_USED_BY_MULTIPLE_PLEXES']/*"/>	
            <unmanaged>ERROR_VOLMGR_DISK_USED_BY_MULTIPLE_PLEXES</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_DISK_USED_BY_MULTIPLE_PLEXES</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrDynamicDiskNotSupported">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_DYNAMIC_DISK_NOT_SUPPORTED']/*"/>	
            <unmanaged>ERROR_VOLMGR_DYNAMIC_DISK_NOT_SUPPORTED</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_DYNAMIC_DISK_NOT_SUPPORTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrExtentAlreadyUsed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_EXTENT_ALREADY_USED']/*"/>	
            <unmanaged>ERROR_VOLMGR_EXTENT_ALREADY_USED</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_EXTENT_ALREADY_USED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrExtentNotContiguous">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_EXTENT_NOT_CONTIGUOUS']/*"/>	
            <unmanaged>ERROR_VOLMGR_EXTENT_NOT_CONTIGUOUS</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_EXTENT_NOT_CONTIGUOUS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrExtentNotInPublicRegion">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_EXTENT_NOT_IN_PUBLIC_REGION']/*"/>	
            <unmanaged>ERROR_VOLMGR_EXTENT_NOT_IN_PUBLIC_REGION</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_EXTENT_NOT_IN_PUBLIC_REGION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrExtentNotSectorAligned">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_EXTENT_NOT_SECTOR_ALIGNED']/*"/>	
            <unmanaged>ERROR_VOLMGR_EXTENT_NOT_SECTOR_ALIGNED</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_EXTENT_NOT_SECTOR_ALIGNED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrExtentOverlapsEbrPartition">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_EXTENT_OVERLAPS_EBR_PARTITION']/*"/>	
            <unmanaged>ERROR_VOLMGR_EXTENT_OVERLAPS_EBR_PARTITION</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_EXTENT_OVERLAPS_EBR_PARTITION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrExtentVolumeLengthsDoNotMatch">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_EXTENT_VOLUME_LENGTHS_DO_NOT_MATCH']/*"/>	
            <unmanaged>ERROR_VOLMGR_EXTENT_VOLUME_LENGTHS_DO_NOT_MATCH</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_EXTENT_VOLUME_LENGTHS_DO_NOT_MATCH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrFaultTolerantNotSupported">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_FAULT_TOLERANT_NOT_SUPPORTED']/*"/>	
            <unmanaged>ERROR_VOLMGR_FAULT_TOLERANT_NOT_SUPPORTED</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_FAULT_TOLERANT_NOT_SUPPORTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrInterleaveLengthInvalid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_INTERLEAVE_LENGTH_INVALID']/*"/>	
            <unmanaged>ERROR_VOLMGR_INTERLEAVE_LENGTH_INVALID</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_INTERLEAVE_LENGTH_INVALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrMaximumRegisteredUsers">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_MAXIMUM_REGISTERED_USERS']/*"/>	
            <unmanaged>ERROR_VOLMGR_MAXIMUM_REGISTERED_USERS</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_MAXIMUM_REGISTERED_USERS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrMemberInSync">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_MEMBER_IN_SYNC']/*"/>	
            <unmanaged>ERROR_VOLMGR_MEMBER_IN_SYNC</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_MEMBER_IN_SYNC</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrMemberIndexDuplicate">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_MEMBER_INDEX_DUPLICATE']/*"/>	
            <unmanaged>ERROR_VOLMGR_MEMBER_INDEX_DUPLICATE</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_MEMBER_INDEX_DUPLICATE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrMemberIndexInvalid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_MEMBER_INDEX_INVALID']/*"/>	
            <unmanaged>ERROR_VOLMGR_MEMBER_INDEX_INVALID</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_MEMBER_INDEX_INVALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrMemberMissing">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_MEMBER_MISSING']/*"/>	
            <unmanaged>ERROR_VOLMGR_MEMBER_MISSING</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_MEMBER_MISSING</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrMemberNotDetached">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_MEMBER_NOT_DETACHED']/*"/>	
            <unmanaged>ERROR_VOLMGR_MEMBER_NOT_DETACHED</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_MEMBER_NOT_DETACHED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrMemberRegenerating">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_MEMBER_REGENERATING']/*"/>	
            <unmanaged>ERROR_VOLMGR_MEMBER_REGENERATING</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_MEMBER_REGENERATING</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrAllDisksFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_ALL_DISKS_FAILED']/*"/>	
            <unmanaged>ERROR_VOLMGR_ALL_DISKS_FAILED</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_ALL_DISKS_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrNoRegisteredUsers">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_NO_REGISTERED_USERS']/*"/>	
            <unmanaged>ERROR_VOLMGR_NO_REGISTERED_USERS</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_NO_REGISTERED_USERS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrNoSuchUser">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_NO_SUCH_USER']/*"/>	
            <unmanaged>ERROR_VOLMGR_NO_SUCH_USER</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_NO_SUCH_USER</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrNotificationReset">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_NOTIFICATION_RESET']/*"/>	
            <unmanaged>ERROR_VOLMGR_NOTIFICATION_RESET</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_NOTIFICATION_RESET</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrNumberOfMembersInvalid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_NUMBER_OF_MEMBERS_INVALID']/*"/>	
            <unmanaged>ERROR_VOLMGR_NUMBER_OF_MEMBERS_INVALID</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_NUMBER_OF_MEMBERS_INVALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrNumberOfPlexesInvalid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_NUMBER_OF_PLEXES_INVALID']/*"/>	
            <unmanaged>ERROR_VOLMGR_NUMBER_OF_PLEXES_INVALID</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_NUMBER_OF_PLEXES_INVALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrPackDuplicate">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_PACK_DUPLICATE']/*"/>	
            <unmanaged>ERROR_VOLMGR_PACK_DUPLICATE</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_PACK_DUPLICATE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrPackIdInvalid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_PACK_ID_INVALID']/*"/>	
            <unmanaged>ERROR_VOLMGR_PACK_ID_INVALID</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_PACK_ID_INVALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrPackInvalid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_PACK_INVALID']/*"/>	
            <unmanaged>ERROR_VOLMGR_PACK_INVALID</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_PACK_INVALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrPackNameInvalid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_PACK_NAME_INVALID']/*"/>	
            <unmanaged>ERROR_VOLMGR_PACK_NAME_INVALID</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_PACK_NAME_INVALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrPackOffline">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_PACK_OFFLINE']/*"/>	
            <unmanaged>ERROR_VOLMGR_PACK_OFFLINE</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_PACK_OFFLINE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrPackHasQuorum">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_PACK_HAS_QUORUM']/*"/>	
            <unmanaged>ERROR_VOLMGR_PACK_HAS_QUORUM</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_PACK_HAS_QUORUM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrPackWithoutQuorum">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_PACK_WITHOUT_QUORUM']/*"/>	
            <unmanaged>ERROR_VOLMGR_PACK_WITHOUT_QUORUM</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_PACK_WITHOUT_QUORUM</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrPartitionStyleInvalid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_PARTITION_STYLE_INVALID']/*"/>	
            <unmanaged>ERROR_VOLMGR_PARTITION_STYLE_INVALID</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_PARTITION_STYLE_INVALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrPartitionUpdateFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_PARTITION_UPDATE_FAILED']/*"/>	
            <unmanaged>ERROR_VOLMGR_PARTITION_UPDATE_FAILED</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_PARTITION_UPDATE_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrPlexInSync">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_PLEX_IN_SYNC']/*"/>	
            <unmanaged>ERROR_VOLMGR_PLEX_IN_SYNC</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_PLEX_IN_SYNC</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrPlexIndexDuplicate">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_PLEX_INDEX_DUPLICATE']/*"/>	
            <unmanaged>ERROR_VOLMGR_PLEX_INDEX_DUPLICATE</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_PLEX_INDEX_DUPLICATE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrPlexIndexInvalid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_PLEX_INDEX_INVALID']/*"/>	
            <unmanaged>ERROR_VOLMGR_PLEX_INDEX_INVALID</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_PLEX_INDEX_INVALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrPlexLastActive">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_PLEX_LAST_ACTIVE']/*"/>	
            <unmanaged>ERROR_VOLMGR_PLEX_LAST_ACTIVE</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_PLEX_LAST_ACTIVE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrPlexMissing">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_PLEX_MISSING']/*"/>	
            <unmanaged>ERROR_VOLMGR_PLEX_MISSING</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_PLEX_MISSING</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrPlexRegenerating">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_PLEX_REGENERATING']/*"/>	
            <unmanaged>ERROR_VOLMGR_PLEX_REGENERATING</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_PLEX_REGENERATING</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrPlexTypeInvalid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_PLEX_TYPE_INVALID']/*"/>	
            <unmanaged>ERROR_VOLMGR_PLEX_TYPE_INVALID</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_PLEX_TYPE_INVALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrPlexNotRaid5">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_PLEX_NOT_RAID5']/*"/>	
            <unmanaged>ERROR_VOLMGR_PLEX_NOT_RAID5</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_PLEX_NOT_RAID5</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrPlexNotSimple">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_PLEX_NOT_SIMPLE']/*"/>	
            <unmanaged>ERROR_VOLMGR_PLEX_NOT_SIMPLE</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_PLEX_NOT_SIMPLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrStructureSizeInvalid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_STRUCTURE_SIZE_INVALID']/*"/>	
            <unmanaged>ERROR_VOLMGR_STRUCTURE_SIZE_INVALID</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_STRUCTURE_SIZE_INVALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrTooManyNotificationRequests">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_TOO_MANY_NOTIFICATION_REQUESTS']/*"/>	
            <unmanaged>ERROR_VOLMGR_TOO_MANY_NOTIFICATION_REQUESTS</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_TOO_MANY_NOTIFICATION_REQUESTS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrTransactionInProgress">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_TRANSACTION_IN_PROGRESS']/*"/>	
            <unmanaged>ERROR_VOLMGR_TRANSACTION_IN_PROGRESS</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_TRANSACTION_IN_PROGRESS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrUnexpectedDiskLayoutChange">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_UNEXPECTED_DISK_LAYOUT_CHANGE']/*"/>	
            <unmanaged>ERROR_VOLMGR_UNEXPECTED_DISK_LAYOUT_CHANGE</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_UNEXPECTED_DISK_LAYOUT_CHANGE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrVolumeContainsMissingDisk">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_VOLUME_CONTAINS_MISSING_DISK']/*"/>	
            <unmanaged>ERROR_VOLMGR_VOLUME_CONTAINS_MISSING_DISK</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_VOLUME_CONTAINS_MISSING_DISK</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrVolumeIdInvalid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_VOLUME_ID_INVALID']/*"/>	
            <unmanaged>ERROR_VOLMGR_VOLUME_ID_INVALID</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_VOLUME_ID_INVALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrVolumeLengthInvalid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_VOLUME_LENGTH_INVALID']/*"/>	
            <unmanaged>ERROR_VOLMGR_VOLUME_LENGTH_INVALID</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_VOLUME_LENGTH_INVALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrVolumeLengthNotSectorSizeMultiple">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_VOLUME_LENGTH_NOT_SECTOR_SIZE_MULTIPLE']/*"/>	
            <unmanaged>ERROR_VOLMGR_VOLUME_LENGTH_NOT_SECTOR_SIZE_MULTIPLE</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_VOLUME_LENGTH_NOT_SECTOR_SIZE_MULTIPLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrVolumeNotMirrored">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_VOLUME_NOT_MIRRORED']/*"/>	
            <unmanaged>ERROR_VOLMGR_VOLUME_NOT_MIRRORED</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_VOLUME_NOT_MIRRORED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrVolumeNotRetained">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_VOLUME_NOT_RETAINED']/*"/>	
            <unmanaged>ERROR_VOLMGR_VOLUME_NOT_RETAINED</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_VOLUME_NOT_RETAINED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrVolumeOffline">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_VOLUME_OFFLINE']/*"/>	
            <unmanaged>ERROR_VOLMGR_VOLUME_OFFLINE</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_VOLUME_OFFLINE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrVolumeRetained">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_VOLUME_RETAINED']/*"/>	
            <unmanaged>ERROR_VOLMGR_VOLUME_RETAINED</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_VOLUME_RETAINED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrNumberOfExtentsInvalid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_NUMBER_OF_EXTENTS_INVALID']/*"/>	
            <unmanaged>ERROR_VOLMGR_NUMBER_OF_EXTENTS_INVALID</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_NUMBER_OF_EXTENTS_INVALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrDifferentSectorSize">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_DIFFERENT_SECTOR_SIZE']/*"/>	
            <unmanaged>ERROR_VOLMGR_DIFFERENT_SECTOR_SIZE</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_DIFFERENT_SECTOR_SIZE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrBadBootDisk">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_BAD_BOOT_DISK']/*"/>	
            <unmanaged>ERROR_VOLMGR_BAD_BOOT_DISK</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_BAD_BOOT_DISK</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrPackConfigOffline">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_PACK_CONFIG_OFFLINE']/*"/>	
            <unmanaged>ERROR_VOLMGR_PACK_CONFIG_OFFLINE</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_PACK_CONFIG_OFFLINE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrPackConfigOnline">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_PACK_CONFIG_ONLINE']/*"/>	
            <unmanaged>ERROR_VOLMGR_PACK_CONFIG_ONLINE</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_PACK_CONFIG_ONLINE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrNotPrimaryPack">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_NOT_PRIMARY_PACK']/*"/>	
            <unmanaged>ERROR_VOLMGR_NOT_PRIMARY_PACK</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_NOT_PRIMARY_PACK</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrPackLogUpdateFailed">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_PACK_LOG_UPDATE_FAILED']/*"/>	
            <unmanaged>ERROR_VOLMGR_PACK_LOG_UPDATE_FAILED</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_PACK_LOG_UPDATE_FAILED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrNumberOfDisksInPlexInvalid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_NUMBER_OF_DISKS_IN_PLEX_INVALID']/*"/>	
            <unmanaged>ERROR_VOLMGR_NUMBER_OF_DISKS_IN_PLEX_INVALID</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_NUMBER_OF_DISKS_IN_PLEX_INVALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrNumberOfDisksInMemberInvalid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_NUMBER_OF_DISKS_IN_MEMBER_INVALID']/*"/>	
            <unmanaged>ERROR_VOLMGR_NUMBER_OF_DISKS_IN_MEMBER_INVALID</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_NUMBER_OF_DISKS_IN_MEMBER_INVALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrVolumeMirrored">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_VOLUME_MIRRORED']/*"/>	
            <unmanaged>ERROR_VOLMGR_VOLUME_MIRRORED</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_VOLUME_MIRRORED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrPlexNotSimpleSpanned">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_PLEX_NOT_SIMPLE_SPANNED']/*"/>	
            <unmanaged>ERROR_VOLMGR_PLEX_NOT_SIMPLE_SPANNED</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_PLEX_NOT_SIMPLE_SPANNED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrNoValidLogCopies">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_NO_VALID_LOG_COPIES']/*"/>	
            <unmanaged>ERROR_VOLMGR_NO_VALID_LOG_COPIES</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_NO_VALID_LOG_COPIES</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrPrimaryPackPresent">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_PRIMARY_PACK_PRESENT']/*"/>	
            <unmanaged>ERROR_VOLMGR_PRIMARY_PACK_PRESENT</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_PRIMARY_PACK_PRESENT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrNumberOfDisksInvalid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_NUMBER_OF_DISKS_INVALID']/*"/>	
            <unmanaged>ERROR_VOLMGR_NUMBER_OF_DISKS_INVALID</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_NUMBER_OF_DISKS_INVALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrMirrorNotSupported">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_MIRROR_NOT_SUPPORTED']/*"/>	
            <unmanaged>ERROR_VOLMGR_MIRROR_NOT_SUPPORTED</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_MIRROR_NOT_SUPPORTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolmgrRaid5NotSupported">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLMGR_RAID5_NOT_SUPPORTED']/*"/>	
            <unmanaged>ERROR_VOLMGR_RAID5_NOT_SUPPORTED</unmanaged>	
            <unmanaged-short>ERROR_VOLMGR_RAID5_NOT_SUPPORTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.BcdNotAllEntriesImported">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_BCD_NOT_ALL_ENTRIES_IMPORTED']/*"/>	
            <unmanaged>ERROR_BCD_NOT_ALL_ENTRIES_IMPORTED</unmanaged>	
            <unmanaged-short>ERROR_BCD_NOT_ALL_ENTRIES_IMPORTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.BcdTooManyElements">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_BCD_TOO_MANY_ELEMENTS']/*"/>	
            <unmanaged>ERROR_BCD_TOO_MANY_ELEMENTS</unmanaged>	
            <unmanaged-short>ERROR_BCD_TOO_MANY_ELEMENTS</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.BcdNotAllEntriesSynchronized">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_BCD_NOT_ALL_ENTRIES_SYNCHRONIZED']/*"/>	
            <unmanaged>ERROR_BCD_NOT_ALL_ENTRIES_SYNCHRONIZED</unmanaged>	
            <unmanaged-short>ERROR_BCD_NOT_ALL_ENTRIES_SYNCHRONIZED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VhdDriveFooterMissing">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VHD_DRIVE_FOOTER_MISSING']/*"/>	
            <unmanaged>ERROR_VHD_DRIVE_FOOTER_MISSING</unmanaged>	
            <unmanaged-short>ERROR_VHD_DRIVE_FOOTER_MISSING</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VhdDriveFooterChecksumMismatch">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VHD_DRIVE_FOOTER_CHECKSUM_MISMATCH']/*"/>	
            <unmanaged>ERROR_VHD_DRIVE_FOOTER_CHECKSUM_MISMATCH</unmanaged>	
            <unmanaged-short>ERROR_VHD_DRIVE_FOOTER_CHECKSUM_MISMATCH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VhdDriveFooterCorrupt">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VHD_DRIVE_FOOTER_CORRUPT']/*"/>	
            <unmanaged>ERROR_VHD_DRIVE_FOOTER_CORRUPT</unmanaged>	
            <unmanaged-short>ERROR_VHD_DRIVE_FOOTER_CORRUPT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VhdFormatUnknown">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VHD_FORMAT_UNKNOWN']/*"/>	
            <unmanaged>ERROR_VHD_FORMAT_UNKNOWN</unmanaged>	
            <unmanaged-short>ERROR_VHD_FORMAT_UNKNOWN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VhdFormatUnsupportedVersion">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VHD_FORMAT_UNSUPPORTED_VERSION']/*"/>	
            <unmanaged>ERROR_VHD_FORMAT_UNSUPPORTED_VERSION</unmanaged>	
            <unmanaged-short>ERROR_VHD_FORMAT_UNSUPPORTED_VERSION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VhdSparseHeaderChecksumMismatch">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VHD_SPARSE_HEADER_CHECKSUM_MISMATCH']/*"/>	
            <unmanaged>ERROR_VHD_SPARSE_HEADER_CHECKSUM_MISMATCH</unmanaged>	
            <unmanaged-short>ERROR_VHD_SPARSE_HEADER_CHECKSUM_MISMATCH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VhdSparseHeaderUnsupportedVersion">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VHD_SPARSE_HEADER_UNSUPPORTED_VERSION']/*"/>	
            <unmanaged>ERROR_VHD_SPARSE_HEADER_UNSUPPORTED_VERSION</unmanaged>	
            <unmanaged-short>ERROR_VHD_SPARSE_HEADER_UNSUPPORTED_VERSION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VhdSparseHeaderCorrupt">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VHD_SPARSE_HEADER_CORRUPT']/*"/>	
            <unmanaged>ERROR_VHD_SPARSE_HEADER_CORRUPT</unmanaged>	
            <unmanaged-short>ERROR_VHD_SPARSE_HEADER_CORRUPT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VhdBlockAllocationFailure">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VHD_BLOCK_ALLOCATION_FAILURE']/*"/>	
            <unmanaged>ERROR_VHD_BLOCK_ALLOCATION_FAILURE</unmanaged>	
            <unmanaged-short>ERROR_VHD_BLOCK_ALLOCATION_FAILURE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VhdBlockAllocationTableCorrupt">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VHD_BLOCK_ALLOCATION_TABLE_CORRUPT']/*"/>	
            <unmanaged>ERROR_VHD_BLOCK_ALLOCATION_TABLE_CORRUPT</unmanaged>	
            <unmanaged-short>ERROR_VHD_BLOCK_ALLOCATION_TABLE_CORRUPT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VhdInvalidBlockSize">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VHD_INVALID_BLOCK_SIZE']/*"/>	
            <unmanaged>ERROR_VHD_INVALID_BLOCK_SIZE</unmanaged>	
            <unmanaged-short>ERROR_VHD_INVALID_BLOCK_SIZE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VhdBitmapMismatch">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VHD_BITMAP_MISMATCH']/*"/>	
            <unmanaged>ERROR_VHD_BITMAP_MISMATCH</unmanaged>	
            <unmanaged-short>ERROR_VHD_BITMAP_MISMATCH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VhdParentVhdNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VHD_PARENT_VHD_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_VHD_PARENT_VHD_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_VHD_PARENT_VHD_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VhdChildParentIdMismatch">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VHD_CHILD_PARENT_ID_MISMATCH']/*"/>	
            <unmanaged>ERROR_VHD_CHILD_PARENT_ID_MISMATCH</unmanaged>	
            <unmanaged-short>ERROR_VHD_CHILD_PARENT_ID_MISMATCH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VhdChildParentTimestampMismatch">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VHD_CHILD_PARENT_TIMESTAMP_MISMATCH']/*"/>	
            <unmanaged>ERROR_VHD_CHILD_PARENT_TIMESTAMP_MISMATCH</unmanaged>	
            <unmanaged-short>ERROR_VHD_CHILD_PARENT_TIMESTAMP_MISMATCH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VhdMetadataReadFailure">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VHD_METADATA_READ_FAILURE']/*"/>	
            <unmanaged>ERROR_VHD_METADATA_READ_FAILURE</unmanaged>	
            <unmanaged-short>ERROR_VHD_METADATA_READ_FAILURE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VhdMetadataWriteFailure">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VHD_METADATA_WRITE_FAILURE']/*"/>	
            <unmanaged>ERROR_VHD_METADATA_WRITE_FAILURE</unmanaged>	
            <unmanaged-short>ERROR_VHD_METADATA_WRITE_FAILURE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VhdInvalidSize">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VHD_INVALID_SIZE']/*"/>	
            <unmanaged>ERROR_VHD_INVALID_SIZE</unmanaged>	
            <unmanaged-short>ERROR_VHD_INVALID_SIZE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VhdInvalidFileSize">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VHD_INVALID_FILE_SIZE']/*"/>	
            <unmanaged>ERROR_VHD_INVALID_FILE_SIZE</unmanaged>	
            <unmanaged-short>ERROR_VHD_INVALID_FILE_SIZE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VirtdiskProviderNotFound">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VIRTDISK_PROVIDER_NOT_FOUND']/*"/>	
            <unmanaged>ERROR_VIRTDISK_PROVIDER_NOT_FOUND</unmanaged>	
            <unmanaged-short>ERROR_VIRTDISK_PROVIDER_NOT_FOUND</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VirtdiskNotVirtualDisk">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VIRTDISK_NOT_VIRTUAL_DISK']/*"/>	
            <unmanaged>ERROR_VIRTDISK_NOT_VIRTUAL_DISK</unmanaged>	
            <unmanaged-short>ERROR_VIRTDISK_NOT_VIRTUAL_DISK</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VhdParentVhdAccessDenied">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VHD_PARENT_VHD_ACCESS_DENIED']/*"/>	
            <unmanaged>ERROR_VHD_PARENT_VHD_ACCESS_DENIED</unmanaged>	
            <unmanaged-short>ERROR_VHD_PARENT_VHD_ACCESS_DENIED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VhdChildParentSizeMismatch">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VHD_CHILD_PARENT_SIZE_MISMATCH']/*"/>	
            <unmanaged>ERROR_VHD_CHILD_PARENT_SIZE_MISMATCH</unmanaged>	
            <unmanaged-short>ERROR_VHD_CHILD_PARENT_SIZE_MISMATCH</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VhdDifferencingChainCycleDetected">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VHD_DIFFERENCING_CHAIN_CYCLE_DETECTED']/*"/>	
            <unmanaged>ERROR_VHD_DIFFERENCING_CHAIN_CYCLE_DETECTED</unmanaged>	
            <unmanaged-short>ERROR_VHD_DIFFERENCING_CHAIN_CYCLE_DETECTED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VhdDifferencingChainErrorInParent">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VHD_DIFFERENCING_CHAIN_ERROR_IN_PARENT']/*"/>	
            <unmanaged>ERROR_VHD_DIFFERENCING_CHAIN_ERROR_IN_PARENT</unmanaged>	
            <unmanaged-short>ERROR_VHD_DIFFERENCING_CHAIN_ERROR_IN_PARENT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VirtualDiskLimitation">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VIRTUAL_DISK_LIMITATION']/*"/>	
            <unmanaged>ERROR_VIRTUAL_DISK_LIMITATION</unmanaged>	
            <unmanaged-short>ERROR_VIRTUAL_DISK_LIMITATION</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VhdInvalidType">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VHD_INVALID_TYPE']/*"/>	
            <unmanaged>ERROR_VHD_INVALID_TYPE</unmanaged>	
            <unmanaged-short>ERROR_VHD_INVALID_TYPE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VhdInvalidState">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VHD_INVALID_STATE']/*"/>	
            <unmanaged>ERROR_VHD_INVALID_STATE</unmanaged>	
            <unmanaged-short>ERROR_VHD_INVALID_STATE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VirtdiskUnsupportedDiskSectorSize">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VIRTDISK_UNSUPPORTED_DISK_SECTOR_SIZE']/*"/>	
            <unmanaged>ERROR_VIRTDISK_UNSUPPORTED_DISK_SECTOR_SIZE</unmanaged>	
            <unmanaged-short>ERROR_VIRTDISK_UNSUPPORTED_DISK_SECTOR_SIZE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VirtdiskDiskAlreadyOwned">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VIRTDISK_DISK_ALREADY_OWNED']/*"/>	
            <unmanaged>ERROR_VIRTDISK_DISK_ALREADY_OWNED</unmanaged>	
            <unmanaged-short>ERROR_VIRTDISK_DISK_ALREADY_OWNED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VirtdiskDiskOnlineAndWritable">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VIRTDISK_DISK_ONLINE_AND_WRITABLE']/*"/>	
            <unmanaged>ERROR_VIRTDISK_DISK_ONLINE_AND_WRITABLE</unmanaged>	
            <unmanaged-short>ERROR_VIRTDISK_DISK_ONLINE_AND_WRITABLE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CtlogTrackingNotInitialized">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CTLOG_TRACKING_NOT_INITIALIZED']/*"/>	
            <unmanaged>ERROR_CTLOG_TRACKING_NOT_INITIALIZED</unmanaged>	
            <unmanaged-short>ERROR_CTLOG_TRACKING_NOT_INITIALIZED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CtlogLogfileSizeExceededMaxsize">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CTLOG_LOGFILE_SIZE_EXCEEDED_MAXSIZE']/*"/>	
            <unmanaged>ERROR_CTLOG_LOGFILE_SIZE_EXCEEDED_MAXSIZE</unmanaged>	
            <unmanaged-short>ERROR_CTLOG_LOGFILE_SIZE_EXCEEDED_MAXSIZE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CtlogVhdChangedOffline">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CTLOG_VHD_CHANGED_OFFLINE']/*"/>	
            <unmanaged>ERROR_CTLOG_VHD_CHANGED_OFFLINE</unmanaged>	
            <unmanaged-short>ERROR_CTLOG_VHD_CHANGED_OFFLINE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CtlogInvalidTrackingState">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CTLOG_INVALID_TRACKING_STATE']/*"/>	
            <unmanaged>ERROR_CTLOG_INVALID_TRACKING_STATE</unmanaged>	
            <unmanaged-short>ERROR_CTLOG_INVALID_TRACKING_STATE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.CtlogInconsistentTrackingFile">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_CTLOG_INCONSISTENT_TRACKING_FILE']/*"/>	
            <unmanaged>ERROR_CTLOG_INCONSISTENT_TRACKING_FILE</unmanaged>	
            <unmanaged-short>ERROR_CTLOG_INCONSISTENT_TRACKING_FILE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VhdResizeWouldTruncateData">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VHD_RESIZE_WOULD_TRUNCATE_DATA']/*"/>	
            <unmanaged>ERROR_VHD_RESIZE_WOULD_TRUNCATE_DATA</unmanaged>	
            <unmanaged-short>ERROR_VHD_RESIZE_WOULD_TRUNCATE_DATA</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VhdCouldNotComputeMinimumVirtualSize">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VHD_COULD_NOT_COMPUTE_MINIMUM_VIRTUAL_SIZE']/*"/>	
            <unmanaged>ERROR_VHD_COULD_NOT_COMPUTE_MINIMUM_VIRTUAL_SIZE</unmanaged>	
            <unmanaged-short>ERROR_VHD_COULD_NOT_COMPUTE_MINIMUM_VIRTUAL_SIZE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VhdAlreadyAtOrBelowMinimumVirtualSize">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VHD_ALREADY_AT_OR_BELOW_MINIMUM_VIRTUAL_SIZE']/*"/>	
            <unmanaged>ERROR_VHD_ALREADY_AT_OR_BELOW_MINIMUM_VIRTUAL_SIZE</unmanaged>	
            <unmanaged-short>ERROR_VHD_ALREADY_AT_OR_BELOW_MINIMUM_VIRTUAL_SIZE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VhdMetadataFull">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VHD_METADATA_FULL']/*"/>	
            <unmanaged>ERROR_VHD_METADATA_FULL</unmanaged>	
            <unmanaged-short>ERROR_VHD_METADATA_FULL</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.QueryStorageError">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_QUERY_STORAGE_ERROR']/*"/>	
            <unmanaged>ERROR_QUERY_STORAGE_ERROR</unmanaged>	
            <unmanaged-short>ERROR_QUERY_STORAGE_ERROR</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SpacesPoolWasDeleted">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SPACES_POOL_WAS_DELETED']/*"/>	
            <unmanaged>ERROR_SPACES_POOL_WAS_DELETED</unmanaged>	
            <unmanaged-short>ERROR_SPACES_POOL_WAS_DELETED</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SpacesResiliencyTypeInvalid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SPACES_RESILIENCY_TYPE_INVALID']/*"/>	
            <unmanaged>ERROR_SPACES_RESILIENCY_TYPE_INVALID</unmanaged>	
            <unmanaged-short>ERROR_SPACES_RESILIENCY_TYPE_INVALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SpacesDriveSectorSizeInvalid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SPACES_DRIVE_SECTOR_SIZE_INVALID']/*"/>	
            <unmanaged>ERROR_SPACES_DRIVE_SECTOR_SIZE_INVALID</unmanaged>	
            <unmanaged-short>ERROR_SPACES_DRIVE_SECTOR_SIZE_INVALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SpacesDriveRedundancyInvalid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SPACES_DRIVE_REDUNDANCY_INVALID']/*"/>	
            <unmanaged>ERROR_SPACES_DRIVE_REDUNDANCY_INVALID</unmanaged>	
            <unmanaged-short>ERROR_SPACES_DRIVE_REDUNDANCY_INVALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SpacesNumberOfDataCopiesInvalid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SPACES_NUMBER_OF_DATA_COPIES_INVALID']/*"/>	
            <unmanaged>ERROR_SPACES_NUMBER_OF_DATA_COPIES_INVALID</unmanaged>	
            <unmanaged-short>ERROR_SPACES_NUMBER_OF_DATA_COPIES_INVALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SpacesParityLayoutInvalid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SPACES_PARITY_LAYOUT_INVALID']/*"/>	
            <unmanaged>ERROR_SPACES_PARITY_LAYOUT_INVALID</unmanaged>	
            <unmanaged-short>ERROR_SPACES_PARITY_LAYOUT_INVALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SpacesInterleaveLengthInvalid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SPACES_INTERLEAVE_LENGTH_INVALID']/*"/>	
            <unmanaged>ERROR_SPACES_INTERLEAVE_LENGTH_INVALID</unmanaged>	
            <unmanaged-short>ERROR_SPACES_INTERLEAVE_LENGTH_INVALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SpacesNumberOfColumnsInvalid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SPACES_NUMBER_OF_COLUMNS_INVALID']/*"/>	
            <unmanaged>ERROR_SPACES_NUMBER_OF_COLUMNS_INVALID</unmanaged>	
            <unmanaged-short>ERROR_SPACES_NUMBER_OF_COLUMNS_INVALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.SpacesNotEnoughDrives">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_SPACES_NOT_ENOUGH_DRIVES']/*"/>	
            <unmanaged>ERROR_SPACES_NOT_ENOUGH_DRIVES</unmanaged>	
            <unmanaged-short>ERROR_SPACES_NOT_ENOUGH_DRIVES</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.VolsnapBootfileNotValid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_VOLSNAP_BOOTFILE_NOT_VALID']/*"/>	
            <unmanaged>ERROR_VOLSNAP_BOOTFILE_NOT_VALID</unmanaged>	
            <unmanaged-short>ERROR_VOLSNAP_BOOTFILE_NOT_VALID</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DbgCreateProcessFailureLockdown">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DBG_CREATE_PROCESS_FAILURE_LOCKDOWN']/*"/>	
            <unmanaged>ERROR_DBG_CREATE_PROCESS_FAILURE_LOCKDOWN</unmanaged>	
            <unmanaged-short>ERROR_DBG_CREATE_PROCESS_FAILURE_LOCKDOWN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DbgAttachProcessFailureLockdown">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DBG_ATTACH_PROCESS_FAILURE_LOCKDOWN']/*"/>	
            <unmanaged>ERROR_DBG_ATTACH_PROCESS_FAILURE_LOCKDOWN</unmanaged>	
            <unmanaged-short>ERROR_DBG_ATTACH_PROCESS_FAILURE_LOCKDOWN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DbgConnectServerFailureLockdown">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DBG_CONNECT_SERVER_FAILURE_LOCKDOWN']/*"/>	
            <unmanaged>ERROR_DBG_CONNECT_SERVER_FAILURE_LOCKDOWN</unmanaged>	
            <unmanaged-short>ERROR_DBG_CONNECT_SERVER_FAILURE_LOCKDOWN</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.ErrorCode.DbgStartServerFailureLockdown">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ERROR_DBG_START_SERVER_FAILURE_LOCKDOWN']/*"/>	
            <unmanaged>ERROR_DBG_START_SERVER_FAILURE_LOCKDOWN</unmanaged>	
            <unmanaged-short>ERROR_DBG_START_SERVER_FAILURE_LOCKDOWN</unmanaged-short>	
        </member>
        <member name="T:SharpDX.Win32.LockType">
            <summary>	
            <p> The 	
            <strong><see cref="T:SharpDX.Win32.LockType"/></strong> enumeration values indicate the type of locking requested for the specified range of bytes. The values are used in the 	
            <strong>ILockBytes::LockRegion</strong> and 	
            <strong><see cref="M:SharpDX.Win32.IStream.LockRegion(System.Int64,System.Int64,SharpDX.Win32.LockType)"/></strong> methods.</p>	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='LOCKTYPE']/*"/>	
            <msdn-id>aa380048</msdn-id>	
            <unmanaged>LOCKTYPE</unmanaged>	
            <unmanaged-short>LOCKTYPE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.LockType.Write">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='LOCK_WRITE']/*"/>	
            <unmanaged>LOCK_WRITE</unmanaged>	
            <unmanaged-short>LOCK_WRITE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.LockType.Exclusive">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='LOCK_EXCLUSIVE']/*"/>	
            <unmanaged>LOCK_EXCLUSIVE</unmanaged>	
            <unmanaged-short>LOCK_EXCLUSIVE</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.LockType.OnlyOnce">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='LOCK_ONLYONCE']/*"/>	
            <unmanaged>LOCK_ONLYONCE</unmanaged>	
            <unmanaged-short>LOCK_ONLYONCE</unmanaged-short>	
        </member>
        <member name="T:SharpDX.Win32.StorageStatisticsFlags">
            <summary>	
            <p> The 	
            <strong><see cref="T:SharpDX.Win32.StorageStatisticsFlags"/></strong> enumeration values indicate whether the method should try to return a name in the <strong>pwcsName</strong> member of the 	
            <strong><see cref="T:SharpDX.Win32.StorageStatistics"/></strong> structure. The values are used in the 	
            <strong>ILockBytes::Stat</strong>, 	
            <strong>IStorage::Stat</strong>, and 	
            <strong><see cref="M:SharpDX.Win32.IStream.GetStatistics(SharpDX.Win32.StorageStatisticsFlags)"/></strong> methods to save memory when the <strong>pwcsName</strong> member is not required.</p>	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='STATFLAG']/*"/>	
            <msdn-id>aa380316</msdn-id>	
            <unmanaged>STATFLAG</unmanaged>	
            <unmanaged-short>STATFLAG</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.StorageStatisticsFlags.Default">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='STATFLAG_DEFAULT']/*"/>	
            <unmanaged>STATFLAG_DEFAULT</unmanaged>	
            <unmanaged-short>STATFLAG_DEFAULT</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.StorageStatisticsFlags.NoName">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='STATFLAG_NONAME']/*"/>	
            <unmanaged>STATFLAG_NONAME</unmanaged>	
            <unmanaged-short>STATFLAG_NONAME</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.StorageStatisticsFlags.None">
            <summary>	
            None.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='']/*"/>	
            <unmanaged>None</unmanaged>	
            <unmanaged-short>None</unmanaged-short>	
        </member>
        <member name="T:SharpDX.Win32.ComStream">
            <summary>	
            <p> The 	
            <strong><see cref="T:SharpDX.Win32.IStream"/></strong> interface lets you read and write data to stream objects. Stream objects contain the data in a structured storage object, where storages provide the structure. Simple data can be written directly to a stream but, most frequently, streams are elements nested within a storage object. They are similar to standard files.</p><p>The 	
            <strong><see cref="T:SharpDX.Win32.IStream"/></strong> interface defines methods similar to the MS-DOS FAT file functions. For example, each stream object has its own access rights and a seek reference. The main difference between a DOS file and a stream object is that in the latter case, streams are opened using an 	
            <strong><see cref="T:SharpDX.Win32.IStream"/></strong> interface reference rather than a file handle.</p><p>The methods in this interface present your object's data as a contiguous sequence of bytes that you can read or write. There are also methods for committing and reverting changes on streams that are open in transacted mode and methods for restricting access to a range of bytes in the stream.</p><p>Streams can remain open for long periods of time without consuming file-system resources. The <strong>IUnknown::Release</strong> method is similar to a close function on a file. Once released, the stream object is no longer valid and cannot be used.</p><p>Clients of asynchronous monikers can choose between a data-pull or data-push model for driving an asynchronous 	
            <strong>IMoniker::BindToStorage</strong> operation and for receiving asynchronous notifications. See 	
            URL Monikers for more information. The following table compares the behavior of asynchronous 	
            <strong><see cref="M:SharpDX.Win32.IStreamBase.Read(System.IntPtr,System.Int32)"/></strong> and 	
            <strong><see cref="M:SharpDX.Win32.IStream.Seek(System.Int64,System.IO.SeekOrigin)"/></strong> calls returned in <strong>IBindStatusCallback::OnDataAvailable</strong> in these two download models:</p>	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IStream']/*"/>	
            <msdn-id>aa380034</msdn-id>	
            <unmanaged>IStream</unmanaged>	
            <unmanaged-short>IStream</unmanaged-short>	
        </member>
        <member name="T:SharpDX.Win32.ComStreamBase">
            <summary>	
            <p> The 	
            <strong><see cref="T:SharpDX.Win32.IStreamBase"/></strong> interface supports simplified sequential access to stream objects. The 	
            <strong><see cref="T:SharpDX.Win32.IStream"/></strong> interface inherits its 	
            <strong>Read</strong> and 	
            <strong>Write</strong> methods from 	
            <strong><see cref="T:SharpDX.Win32.IStreamBase"/></strong>.</p>	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ISequentialStream']/*"/>	
            <msdn-id>aa380010</msdn-id>	
            <unmanaged>ISequentialStream</unmanaged>	
            <unmanaged-short>ISequentialStream</unmanaged-short>	
        </member>
        <member name="T:SharpDX.Win32.IStreamBase">
            <summary>	
            <p> The 	
            <strong><see cref="T:SharpDX.Win32.IStreamBase"/></strong> interface supports simplified sequential access to stream objects. The 	
            <strong><see cref="T:SharpDX.Win32.IStream"/></strong> interface inherits its 	
            <strong>Read</strong> and 	
            <strong>Write</strong> methods from 	
            <strong><see cref="T:SharpDX.Win32.IStreamBase"/></strong>.</p>	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ISequentialStream']/*"/>	
            <msdn-id>aa380010</msdn-id>	
            <unmanaged>ISequentialStream</unmanaged>	
            <unmanaged-short>ISequentialStream</unmanaged-short>	
        </member>
        <member name="M:SharpDX.Win32.IStreamBase.Read(System.IntPtr,System.Int32)">
            <summary>
            Reads a specified number of bytes from the stream object into memory starting at the current seek pointer.
            </summary>
            <param name="buffer">The read buffer.</param>
            <param name="numberOfBytesToRead">The number of bytes to read.</param>
            <returns>The actual number of bytes read from the stream object. </returns>
        </member>
        <member name="M:SharpDX.Win32.IStreamBase.Write(System.IntPtr,System.Int32)">
            <summary>
            Writes a specified number of bytes into the stream object starting at the current seek pointer.
            </summary>
            <param name="buffer">The buffer.</param>
            <param name="numberOfBytesToRead">The number of bytes to read.</param>
            <returns>The actual number of bytes written to the stream object</returns>
        </member>
        <member name="M:SharpDX.Win32.ComStreamBase.#ctor(System.IntPtr)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Win32.ComStreamBase"/> class.
            </summary>
            <param name="nativePtr">The native pointer.</param>	
        </member>
        <member name="M:SharpDX.Win32.ComStreamBase.op_Explicit(System.IntPtr)~SharpDX.Win32.ComStreamBase">
            <summary>
            Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Win32.ComStreamBase"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>) 
            </summary>
            <param name="nativePointer">The native pointer.</param>
            <returns>
            The result of the conversion.
            </returns>
        </member>
        <member name="M:SharpDX.Win32.ComStreamBase.Read(System.IntPtr,System.Int32)">
            <summary>	
            <p> The <strong>Read</strong> method reads a specified number of bytes from the stream object into memory, starting at the current seek reference.</p>	
            </summary>	
            <param name="vRef"><dd> <p>A reference to the buffer which the stream data is read into.</p> </dd></param>	
            <param name="cb"><dd> <p>The number of bytes of data to read from the stream object.</p> </dd></param>	
            <returns><dd> <p>A reference to a <strong>ULONG</strong> variable that receives the actual number of bytes read from the stream object. </p> <p><strong>Note</strong>??The number of bytes read may be zero.</p> </dd></returns>	
            <remarks>	
            <p>This method reads bytes from this stream object into memory. The stream object must be opened in <strong>STGM_READ</strong> mode. This method adjusts the seek reference by the actual number of bytes read.</p><p>The number of bytes actually read is also returned in the <em>pcbRead</em> parameter.</p>Notes to Callers<p>The actual number of bytes read can be less than the number of bytes requested if an error occurs or if the end of the stream is reached during the read operation.  The number of bytes returned should always  be compared to the number of bytes requested.  If the number of bytes returned is less than the number of bytes requested, it usually means the <strong>Read</strong> method attempted to read  past the end of the stream.</p><p>The application should handle both a returned error  and <strong><see cref="F:SharpDX.Result.Ok"/></strong> return values on end-of-stream read operations.</p>	
            </remarks>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ISequentialStream::Read']/*"/>	
            <msdn-id>aa380011</msdn-id>	
            <unmanaged>HRESULT ISequentialStream::Read([Out, Buffer] void* pv,[In] unsigned int cb,[Out, Optional] unsigned int* pcbRead)</unmanaged>	
            <unmanaged-short>ISequentialStream::Read</unmanaged-short>	
        </member>
        <member name="M:SharpDX.Win32.ComStreamBase.Write(System.IntPtr,System.Int32)">
            <summary>	
            <p> The <strong>Write</strong> method writes a specified number of bytes into the stream object starting at the current seek reference.</p>	
            </summary>	
            <param name="vRef"><dd> <p>A reference to the buffer that contains the data that is to be written to the stream. A valid reference must be provided for this parameter even when <em>cb</em> is zero.</p> </dd></param>	
            <param name="cb"><dd> <p>The number of bytes of data to attempt to write into the stream. This value can be zero.</p> </dd></param>	
            <returns><dd> <p>A reference to a <strong>ULONG</strong> variable where this method writes the actual number of bytes written to the stream object. The caller can set this reference to <strong><c>null</c></strong>, in which case this method does not provide the actual number of bytes written.</p> </dd></returns>	
            <remarks>	
            <p><strong><see cref="M:SharpDX.Win32.IStreamBase.Write(System.IntPtr,System.Int32)"/></strong> writes the specified data to a stream object. The seek reference is adjusted for the number of bytes actually written. The number of bytes actually written is returned in the <em>pcbWritten</em> parameter. If the byte count is zero bytes, the write operation has no effect.</p><p>If the seek reference is currently past the end of the stream and the byte count is nonzero, this method increases the size of the stream to the seek reference and writes the specified bytes starting at the seek reference. The fill bytes written to the stream are not initialized to any particular value. This is the same as the end-of-file behavior in the MS-DOS FAT file system.</p><p>With a zero byte count and a seek reference past the end of the stream, this method does not create the fill bytes to increase the stream to the seek reference. In this case, you must call the 	
            <strong><see cref="M:SharpDX.Win32.IStream.SetSize(System.Int64)"/></strong> method to increase the size of the stream and write the fill bytes.</p><p>The <em>pcbWritten</em> parameter can have a value even if an error occurs.</p><p>In the COM-provided implementation, stream objects are not sparse. Any fill bytes are eventually allocated on the disk and assigned to the stream.</p>	
            </remarks>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ISequentialStream::Write']/*"/>	
            <msdn-id>aa380014</msdn-id>	
            <unmanaged>HRESULT ISequentialStream::Write([In, Buffer] const void* pv,[In] unsigned int cb,[Out, Optional] unsigned int* pcbWritten)</unmanaged>	
            <unmanaged-short>ISequentialStream::Write</unmanaged-short>	
        </member>
        <member name="T:SharpDX.Win32.IStream">
            <summary>	
            <p> The 	
            <strong><see cref="T:SharpDX.Win32.IStream"/></strong> interface lets you read and write data to stream objects. Stream objects contain the data in a structured storage object, where storages provide the structure. Simple data can be written directly to a stream but, most frequently, streams are elements nested within a storage object. They are similar to standard files.</p><p>The 	
            <strong><see cref="T:SharpDX.Win32.IStream"/></strong> interface defines methods similar to the MS-DOS FAT file functions. For example, each stream object has its own access rights and a seek reference. The main difference between a DOS file and a stream object is that in the latter case, streams are opened using an 	
            <strong><see cref="T:SharpDX.Win32.IStream"/></strong> interface reference rather than a file handle.</p><p>The methods in this interface present your object's data as a contiguous sequence of bytes that you can read or write. There are also methods for committing and reverting changes on streams that are open in transacted mode and methods for restricting access to a range of bytes in the stream.</p><p>Streams can remain open for long periods of time without consuming file-system resources. The <strong>IUnknown::Release</strong> method is similar to a close function on a file. Once released, the stream object is no longer valid and cannot be used.</p><p>Clients of asynchronous monikers can choose between a data-pull or data-push model for driving an asynchronous 	
            <strong>IMoniker::BindToStorage</strong> operation and for receiving asynchronous notifications. See 	
            URL Monikers for more information. The following table compares the behavior of asynchronous 	
            <strong><see cref="M:SharpDX.Win32.IStreamBase.Read(System.IntPtr,System.Int32)"/></strong> and 	
            <strong><see cref="M:SharpDX.Win32.IStream.Seek(System.Int64,System.IO.SeekOrigin)"/></strong> calls returned in <strong>IBindStatusCallback::OnDataAvailable</strong> in these two download models:</p>	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IStream']/*"/>	
            <msdn-id>aa380034</msdn-id>	
            <unmanaged>IStream</unmanaged>	
            <unmanaged-short>IStream</unmanaged-short>	
        </member>
        <member name="M:SharpDX.Win32.IStream.Seek(System.Int64,System.IO.SeekOrigin)">
            <summary>
            Changes the seek pointer to a new location relative to the beginning of the stream, to the end of the stream, or to the current seek pointer.
            </summary>
            <param name="offset">The offset.</param>
            <param name="origin">The origin.</param>
            <returns>The offset of the seek pointer from the beginning of the stream.</returns>
        </member>
        <member name="M:SharpDX.Win32.IStream.SetSize(System.Int64)">
            <summary>
            Changes the size of the stream object.
            </summary>
            <param name="newSize">The new size.</param>
        </member>
        <member name="M:SharpDX.Win32.IStream.CopyTo(SharpDX.Win32.IStream,System.Int64,System.Int64@)">
            <summary>
            Copies a specified number of bytes from the current seek pointer in the stream to the current seek pointer in another stream.
            </summary>
            <param name="streamDest">The stream destination.</param>
            <param name="numberOfBytesToCopy">The number of bytes to copy.</param>
            <param name="bytesWritten">The number of bytes written.</param>
            <returns>The number of bytes read</returns>
        </member>
        <member name="M:SharpDX.Win32.IStream.Commit(SharpDX.Win32.CommitFlags)">
            <summary>
            Commit method ensures that any changes made to a stream object open in transacted mode are reflected in the parent storage. If the stream object is open in direct mode, Commit has no effect other than flushing all memory buffers to the next-level storage object. The COM compound file implementation of streams does not support opening streams in transacted mode.
            </summary>
            <param name="commitFlags">The GRF commit flags.</param>
        </member>
        <member name="M:SharpDX.Win32.IStream.Revert">
            <summary>
            Discards all changes that have been made to a transacted stream since the last <see cref="M:SharpDX.Win32.IStream.Commit(SharpDX.Win32.CommitFlags)"/> call. 
            </summary>
        </member>
        <member name="M:SharpDX.Win32.IStream.LockRegion(System.Int64,System.Int64,SharpDX.Win32.LockType)">
            <summary>
            Restricts access to a specified range of bytes in the stream.
            </summary>
            <param name="offset">The offset.</param>
            <param name="numberOfBytesToLock">The number of bytes to lock.</param>
            <param name="dwLockType">Type of the dw lock.</param>
        </member>
        <member name="M:SharpDX.Win32.IStream.UnlockRegion(System.Int64,System.Int64,SharpDX.Win32.LockType)">
            <summary>
            Unlocks access to a specified range of bytes in the stream.
            </summary>
            <param name="offset">The offset.</param>
            <param name="numberOfBytesToLock">The number of bytes to lock.</param>
            <param name="dwLockType">Type of the dw lock.</param>
        </member>
        <member name="M:SharpDX.Win32.IStream.GetStatistics(SharpDX.Win32.StorageStatisticsFlags)">
            <summary>
            Gets the statistics.
            </summary>
            <param name="storageStatisticsFlags">The storage statistics flags.</param>
            <returns></returns>
        </member>
        <member name="M:SharpDX.Win32.IStream.Clone">
            <summary>
            Clones this instance.
            </summary>
            <returns></returns>
        </member>
        <member name="M:SharpDX.Win32.ComStream.#ctor(System.IntPtr)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Win32.ComStream"/> class.
            </summary>
            <param name="nativePtr">The native pointer.</param>	
        </member>
        <member name="M:SharpDX.Win32.ComStream.op_Explicit(System.IntPtr)~SharpDX.Win32.ComStream">
            <summary>
            Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Win32.ComStream"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>) 
            </summary>
            <param name="nativePointer">The native pointer.</param>
            <returns>
            The result of the conversion.
            </returns>
        </member>
        <member name="M:SharpDX.Win32.ComStream.Seek(System.Int64,System.IO.SeekOrigin)">
            <summary>	
            <p> The <strong>Seek</strong> method changes the seek reference to a new location.  The new location is relative to either the beginning of the stream, the end of the stream, or the current seek reference.</p>	
            </summary>	
            <param name="dlibMove"><dd> <p>The displacement to be added to the location indicated by the <em>dwOrigin</em> parameter. If <em>dwOrigin</em> is <strong>STREAM_SEEK_SET</strong>, this is interpreted as an unsigned value rather than a signed value.</p> </dd></param>	
            <param name="dwOrigin"><dd> <p>The origin for the displacement specified in <em>dlibMove</em>. The origin can be the beginning of the file (<strong>STREAM_SEEK_SET</strong>), the current seek reference (<strong>STREAM_SEEK_CUR</strong>), or the end of the file (<strong>STREAM_SEEK_END</strong>). For more information about values, see the <strong>STREAM_SEEK</strong> enumeration.</p> </dd></param>	
            <returns><dd> <p>A reference to the location where this method writes the value of the new seek reference from the beginning of the stream. </p> <p>You can set this reference to <strong><c>null</c></strong>. In this case, this method does not provide the new seek reference.</p> </dd></returns>	
            <remarks>	
            <p><strong><see cref="M:SharpDX.Win32.IStream.Seek(System.Int64,System.IO.SeekOrigin)"/></strong> changes the seek reference so that subsequent read and write operations can be performed at a different location in the stream object. It is an error to seek before the beginning of the stream. It is not, however, an error to seek past the end of the stream. Seeking past the end of the stream is useful for subsequent write operations, as the stream byte range will be extended to the new seek position immediately before the write is complete.</p><p>You can also use this method to obtain the current value of the seek reference by calling this method with the <em>dwOrigin</em> parameter set to <strong>STREAM_SEEK_CUR</strong> and the <em>dlibMove</em> parameter set to 0 so that the seek reference is not changed. The current seek reference is returned in the <em>plibNewPosition</em> parameter.</p>	
            </remarks>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IStream::Seek']/*"/>	
            <msdn-id>aa380043</msdn-id>	
            <unmanaged>HRESULT IStream::Seek([In] LARGE_INTEGER dlibMove,[In] SHARPDX_SEEKORIGIN dwOrigin,[Out, Optional] ULARGE_INTEGER* plibNewPosition)</unmanaged>	
            <unmanaged-short>IStream::Seek</unmanaged-short>	
        </member>
        <member name="M:SharpDX.Win32.ComStream.SetSize(System.Int64)">
            <summary>	
            <p>The <strong>SetSize</strong> method changes the size of the stream object.</p>	
            </summary>	
            <param name="libNewSize"><dd> <p>Specifies the new size of the stream as a number of bytes.</p> </dd></param>	
            <returns><p>This method can return one of the following values.</p><dl> <dt><strong><see cref="F:SharpDX.Result.Ok"/></strong></dt> <dd> <p>The size of the stream object was successfully changed.</p> </dd> <dt><strong>E_PENDING</strong></dt> <dd> <p>Asynchronous Storage only: Part or all of the stream's data is currently unavailable. For more information see <strong>IFillLockBytes</strong> and Asynchronous Storage.</p> </dd> <dt><strong>STG_E_MEDIUMFULL</strong></dt> <dd> <p>The stream size is not changed because there is no space left on the storage device.</p> </dd> <dt><strong>STG_E_INVALIDFUNCTION</strong></dt> <dd> <p>The value of the <em>libNewSize</em> parameter is not valid. Since streams cannot be greater than 232 bytes in the COM-provided implementation, the high <strong>DWORD</strong> data type of <em>libNewSize</em> must be 0. If it is nonzero, this parameter is not valid.</p> </dd> <dt><strong>STG_E_REVERTED</strong></dt> <dd> <p>The object has been invalidated by a revert operation above it in the transaction tree.</p> </dd> </dl></returns>	
            <remarks>	
            <p><strong><see cref="M:SharpDX.Win32.IStream.SetSize(System.Int64)"/></strong> changes the size of the stream object. Call this method to preallocate space for the stream. If the <em>libNewSize</em> parameter is larger than the current stream size, the stream is extended to the indicated size by filling the intervening space with bytes of undefined value. This operation is similar to the 	
            <strong><see cref="M:SharpDX.Win32.IStreamBase.Write(System.IntPtr,System.Int32)"/></strong> method if the seek reference is past the current end of stream.</p><p>If the <em>libNewSize</em> parameter is smaller than the current stream, the stream is truncated to the indicated size.</p><p>The seek reference is not affected by the change in stream size.</p><p>Calling <strong><see cref="M:SharpDX.Win32.IStream.SetSize(System.Int64)"/></strong> can be an effective way to obtain a large chunk of contiguous space.</p>	
            </remarks>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IStream::SetSize']/*"/>	
            <msdn-id>aa380044</msdn-id>	
            <unmanaged>HRESULT IStream::SetSize([In] ULARGE_INTEGER libNewSize)</unmanaged>	
            <unmanaged-short>IStream::SetSize</unmanaged-short>	
        </member>
        <member name="M:SharpDX.Win32.ComStream.CopyTo_(System.IntPtr,System.Int64,System.Int64@)">
            <summary>	
            <p>The <strong>CopyTo</strong> method copies a specified number of bytes from the current seek reference in the stream to the current seek reference in another stream.</p>	
            </summary>	
            <param name="stmRef"><dd> <p>A reference to the destination stream. The stream pointed to by <em>pstm</em> can be a new stream or a clone of the source stream.</p> </dd></param>	
            <param name="cb"><dd> <p>The number of bytes to copy from the source stream.</p> </dd></param>	
            <param name="cbWrittenRef"><dd> <p>A reference to the location where this method writes the actual number of bytes written to the destination. You can set this reference to <strong><c>null</c></strong>. In this case, this method does not provide the actual number of bytes written.</p> </dd></param>	
            <returns><dd> <p>A reference to the location where this method writes the actual number of bytes read from the source. You can set this reference to <strong><c>null</c></strong>. In this case, this method does not provide the actual number of bytes read.</p> </dd></returns>	
            <remarks>	
            <p>The <strong>CopyTo</strong> method copies the specified bytes from one stream to another. It can also be used to copy a stream to itself. The seek reference in each stream instance is adjusted for the number of bytes read or written. This method is equivalent to reading <em>cb</em> bytes into memory using 	
            <strong><see cref="M:SharpDX.Win32.IStreamBase.Read(System.IntPtr,System.Int32)"/></strong> and then immediately writing them to the destination stream using 	
            <strong><see cref="M:SharpDX.Win32.IStreamBase.Write(System.IntPtr,System.Int32)"/></strong>, although <strong><see cref="!:SharpDX.Win32.IStream.CopyTo_"/></strong> will be more efficient.</p><p>The destination stream can be a clone of the source stream created by calling the 	
            <strong><see cref="M:SharpDX.Win32.IStream.Clone"/></strong> method.</p><p>If <strong><see cref="!:SharpDX.Win32.IStream.CopyTo_"/></strong> returns an error, you cannot assume that the seek references are valid for either the source or destination. Additionally, the values of <em>pcbRead</em> and <em>pcbWritten</em> are not meaningful even though they are returned.</p><p>If <strong><see cref="!:SharpDX.Win32.IStream.CopyTo_"/></strong> returns successfully, the actual number of bytes read and written are the same.</p><p>To copy the remainder of the source from the current seek reference, specify the maximum large integer value for the <em>cb</em> parameter. If the seek reference is the beginning of the stream, this operation copies the entire stream.</p>	
            </remarks>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IStream::CopyTo']/*"/>	
            <msdn-id>aa380038</msdn-id>	
            <unmanaged>HRESULT IStream::CopyTo([In] IStream* pstm,[In] ULARGE_INTEGER cb,[Out] ULARGE_INTEGER* pcbRead,[Out] ULARGE_INTEGER* pcbWritten)</unmanaged>	
            <unmanaged-short>IStream::CopyTo</unmanaged-short>	
        </member>
        <member name="M:SharpDX.Win32.ComStream.Commit(SharpDX.Win32.CommitFlags)">
            <summary>	
            <p>The <strong>Commit</strong> method ensures that any changes made to a stream object open in transacted mode are reflected in the parent storage. If the stream object is open in direct mode, <strong><see cref="M:SharpDX.Win32.IStream.Commit(SharpDX.Win32.CommitFlags)"/></strong> has no effect other than flushing all memory buffers to the next-level storage object. The COM compound file implementation of streams does not support opening streams in transacted mode.</p>	
            </summary>	
            <param name="grfCommitFlags"><dd> <p>Controls how the changes for the stream object are committed. See the <strong><see cref="T:SharpDX.Win32.CommitFlags"/></strong> enumeration for a definition of these values.</p> </dd></param>	
            <returns><p>This method can return one of the following values.</p><dl> <dt><strong><see cref="F:SharpDX.Result.Ok"/></strong></dt> <dd> <p>Changes to the stream object were successfully committed to the parent level.</p> </dd> <dt><strong>E_PENDING</strong></dt> <dd> <p>Asynchronous Storage only: Part or all of the stream's data is currently unavailable. For more information see <strong>IFillLockBytes</strong> and Asynchronous Storage.</p> </dd> <dt><strong>STG_E_MEDIUMFULL</strong></dt> <dd> <p>The commit operation failed due to lack of space on the storage device.</p> </dd> <dt><strong>STG_E_REVERTED</strong></dt> <dd> <p>The object has been invalidated by a revert operation above it in the transaction tree.</p> </dd> </dl></returns>	
            <remarks>	
            <p>The <strong>Commit</strong> method ensures that changes to a stream object opened in transacted mode are reflected in the parent storage. Changes that have been made to the stream since it was opened or last committed are reflected to the parent storage object. If the parent is opened in transacted mode, the parent may revert at a later time, rolling back the changes to this stream object. The compound file implementation does not support the opening of streams in transacted mode, so this method has very little effect other than to flush memory buffers. For more information, see 	
            <see cref="T:SharpDX.Win32.IStream"/> - Compound File Implementation.</p><p>If the stream is open in direct mode, this method ensures that any memory buffers have been flushed out to the underlying storage object. This is much like a flush in traditional file systems.</p><p>The <strong><see cref="M:SharpDX.Win32.IStream.Commit(SharpDX.Win32.CommitFlags)"/></strong> method is useful on a direct mode stream when the implementation of the 	
            <strong><see cref="T:SharpDX.Win32.IStream"/></strong> interface is a wrapper for underlying file system APIs. In this case, <strong><see cref="M:SharpDX.Win32.IStream.Commit(SharpDX.Win32.CommitFlags)"/></strong> would be connected to the file system's flush call.</p>	
            </remarks>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IStream::Commit']/*"/>	
            <msdn-id>aa380036</msdn-id>	
            <unmanaged>HRESULT IStream::Commit([In] STGC grfCommitFlags)</unmanaged>	
            <unmanaged-short>IStream::Commit</unmanaged-short>	
        </member>
        <member name="M:SharpDX.Win32.ComStream.Revert">
            <summary>	
            <p>The <strong>Revert</strong> method discards all changes that have been made to a transacted stream since the last 	
            <strong><see cref="M:SharpDX.Win32.IStream.Commit(SharpDX.Win32.CommitFlags)"/></strong> call. On streams open in direct mode and streams using the COM compound file implementation of <strong><see cref="M:SharpDX.Win32.IStream.Revert"/></strong>, this method has no effect.</p>	
            </summary>	
            <returns><p>This method can return one of the following values.</p><dl> <dt><strong><see cref="F:SharpDX.Result.Ok"/></strong></dt> <dd> <p>The stream was successfully reverted to its previous version.</p> </dd> <dt><strong>E_PENDING</strong></dt> <dd> <p>Asynchronous Storage only: Part or all of the stream's data is currently unavailable. For more information see <strong>IFillLockBytes</strong> and Asynchronous Storage.</p> </dd> </dl></returns>	
            <remarks>	
            <p>The <strong>Revert</strong> method discards changes made to a transacted stream since the last commit operation.</p>	
            </remarks>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IStream::Revert']/*"/>	
            <msdn-id>aa380042</msdn-id>	
            <unmanaged>HRESULT IStream::Revert()</unmanaged>	
            <unmanaged-short>IStream::Revert</unmanaged-short>	
        </member>
        <member name="M:SharpDX.Win32.ComStream.LockRegion(System.Int64,System.Int64,SharpDX.Win32.LockType)">
            <summary>	
            <p>The <strong>LockRegion</strong> method restricts access to a specified range of bytes in the stream. Supporting this functionality is optional since some file systems do not provide it.</p>	
            </summary>	
            <param name="libOffset"><dd> <p>Integer that specifies the byte offset for the beginning of the range.</p> </dd></param>	
            <param name="cb"><dd> <p>Integer that specifies the length of the range, in bytes, to be restricted.</p> </dd></param>	
            <param name="dwLockType"><dd> <p>Specifies the restrictions being requested on accessing the range.</p> </dd></param>	
            <returns><p>This method can return one of the following values.</p><dl> <dt><strong><see cref="F:SharpDX.Result.Ok"/></strong></dt> <dd> <p>The specified range of bytes was locked.</p> </dd> <dt><strong>E_PENDING</strong></dt> <dd> <p>Asynchronous Storage only: Part or all of the stream's data is currently unavailable. For more information, see <strong>IFillLockBytes</strong> and Asynchronous Storage.</p> </dd> <dt><strong>STG_E_INVALIDFUNCTION</strong></dt> <dd> <p>Locking is not supported at all or the specific type of lock requested is not supported.</p> </dd> <dt><strong>STG_E_LOCKVIOLATION</strong></dt> <dd> <p>Requested lock is supported, but cannot be granted because of an existing lock.</p> </dd> <dt><strong>STG_E_REVERTED</strong></dt> <dd> <p>The object has been invalidated by a revert operation above it in the transaction tree.</p> </dd> </dl></returns>	
            <remarks>	
            <p>The byte range of the stream can be extended.  Locking an extended range for the stream is useful as a method of communication between different instances of the stream without changing data that is actually part of the stream.</p><p>Three types of locking can be supported: locking to exclude other writers, locking to exclude other readers or writers, and locking that allows only one requester to obtain a lock on the given range, which is usually an alias for one of the other two lock types. A given stream instance might support either of the first two types, or both. The lock type is specified by <em>dwLockType</em>, using a value from the 	
            <strong><see cref="T:SharpDX.Win32.LockType"/></strong> enumeration.</p><p>Any region locked with <strong><see cref="M:SharpDX.Win32.IStream.LockRegion(System.Int64,System.Int64,SharpDX.Win32.LockType)"/></strong> must later be explicitly unlocked by calling 	
            <strong><see cref="M:SharpDX.Win32.IStream.UnlockRegion(System.Int64,System.Int64,SharpDX.Win32.LockType)"/></strong> with exactly the same values for the <em>libOffset</em>, <em>cb</em>, and <em>dwLockType</em> parameters. The region must be unlocked before the stream is released. Two adjacent regions cannot be locked separately and then unlocked with a single unlock call.</p>Notes to Callers<p>Since the type of locking supported is optional and can vary in different implementations of 	
            <strong><see cref="T:SharpDX.Win32.IStream"/></strong>, you must provide code to deal with the STG_E_INVALIDFUNCTION error.</p><p>The <strong>LockRegion</strong> method has no effect in the compound file implementation, because the implementation does not support range locking.</p>Notes to Implementers<p>Support for this method is optional for implementations of stream objects since it may not be supported by the underlying file system. The type of locking supported is also optional. The STG_E_INVALIDFUNCTION error is returned if the requested type of locking is not supported.</p>	
            </remarks>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IStream::LockRegion']/*"/>	
            <msdn-id>aa380039</msdn-id>	
            <unmanaged>HRESULT IStream::LockRegion([In] ULARGE_INTEGER libOffset,[In] ULARGE_INTEGER cb,[In] LOCKTYPE dwLockType)</unmanaged>	
            <unmanaged-short>IStream::LockRegion</unmanaged-short>	
        </member>
        <member name="M:SharpDX.Win32.ComStream.UnlockRegion(System.Int64,System.Int64,SharpDX.Win32.LockType)">
            <summary>	
            No documentation.	
            </summary>	
            <param name="libOffset">No documentation.</param>	
            <param name="cb">No documentation.</param>	
            <param name="dwLockType">No documentation.</param>	
            <returns>No documentation.</returns>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IStream::UnlockRegion']/*"/>	
            <unmanaged>HRESULT IStream::UnlockRegion([In] ULARGE_INTEGER libOffset,[In] ULARGE_INTEGER cb,[In] LOCKTYPE dwLockType)</unmanaged>	
            <unmanaged-short>IStream::UnlockRegion</unmanaged-short>	
        </member>
        <member name="M:SharpDX.Win32.ComStream.GetStatistics(SharpDX.Win32.StorageStatisticsFlags)">
            <summary>	
            <p> The <strong>Stat</strong> method retrieves the 	
            <strong><see cref="T:SharpDX.Win32.StorageStatistics"/></strong> structure for this stream.</p>	
            </summary>	
            <param name="grfStatFlag">No documentation.</param>	
            <returns>No documentation.</returns>	
            <remarks>	
            <p><strong><see cref="M:SharpDX.Win32.IStream.GetStatistics(SharpDX.Win32.StorageStatisticsFlags)"/></strong> retrieves a reference to the 	
            <strong><see cref="T:SharpDX.Win32.StorageStatistics"/></strong> structure that contains information about this open stream. When this stream is within a structured storage and 	
            <strong>IStorage::EnumElements</strong> is called, it creates an enumerator object with the 	
            <strong>IEnumSTATSTG</strong> interface on it, which can be called to enumerate the storages and streams through the 	
            <strong><see cref="T:SharpDX.Win32.StorageStatistics"/></strong> structures associated with each of them.</p>	
            </remarks>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IStream::Stat']/*"/>	
            <msdn-id>aa380045</msdn-id>	
            <unmanaged>HRESULT IStream::Stat([Out] STATSTG* pstatstg,[In] STATFLAG grfStatFlag)</unmanaged>	
            <unmanaged-short>IStream::Stat</unmanaged-short>	
        </member>
        <member name="M:SharpDX.Win32.ComStream.Clone">
            <summary>	
            <p> The <strong>Clone</strong> method creates a new stream object with its own seek reference that references the same bytes as the original stream.</p>	
            </summary>	
            <returns><dd> <p>When successful, reference to the location of an <strong><see cref="T:SharpDX.Win32.IStream"/></strong> reference to the new stream object. If an error occurs, this parameter is <strong><c>null</c></strong>.</p> </dd></returns>	
            <remarks>	
            <p>The <strong>Clone</strong> method creates a new stream object for accessing the same bytes but using a separate seek reference. The new stream object sees the same data as the source-stream object. Changes written to one object are immediately visible in the other. Range locking is shared between the stream objects.</p><p>The initial setting of the seek reference in the cloned stream instance is the same as the current setting of the seek reference in the original stream at the time of the clone operation.</p>	
            </remarks>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IStream::Clone']/*"/>	
            <msdn-id>aa380035</msdn-id>	
            <unmanaged>HRESULT IStream::Clone([Out] IStream** ppstm)</unmanaged>	
            <unmanaged-short>IStream::Clone</unmanaged-short>	
        </member>
        <member name="M:SharpDX.Win32.ComStream.CopyTo(SharpDX.Win32.IStream,System.Int64,System.Int64@)">
            <summary>
            Copies a specified number of bytes from the current seek pointer in the stream to the current seek pointer in another stream.
            </summary>
            <param name="streamDest">The stream destination.</param>
            <param name="numberOfBytesToCopy">The number of bytes to copy.</param>
            <param name="bytesWritten">The bytes written.</param>
            <returns>The number of bytes read from this instance</returns>
        </member>
        <member name="M:SharpDX.Win32.ComStream.ToIntPtr(SharpDX.Win32.IStream)">
            <summary>
            Gets a com pointer to the underlying <see cref="T:SharpDX.Win32.IStream"/> object.
            </summary>
            <param name="stream">The stream.</param>
            <returns>A Com pointer</returns>
        </member>
        <member name="T:SharpDX.Win32.StorageStatistics">
            <summary>	
            <p> The 	
            <strong><see cref="T:SharpDX.Win32.StorageStatistics"/></strong> structure contains statistical data about an open storage, stream, or byte-array object. This structure is used in the 	
            <strong>IEnumSTATSTG</strong>, 	
            <strong>ILockBytes</strong>, 	
            <strong>IStorage</strong>, and 	
            <strong><see cref="T:SharpDX.Win32.IStream"/></strong> interfaces.</p>	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='STATSTG']/*"/>	
            <msdn-id>aa380319</msdn-id>	
            <unmanaged>STATSTG</unmanaged>	
            <unmanaged-short>STATSTG</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.StorageStatistics.PwcsName">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='STATSTG::pwcsName']/*"/>	
            <unmanaged>wchar_t* pwcsName</unmanaged>	
            <unmanaged-short>wchar_t pwcsName</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.StorageStatistics.Type">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='STATSTG::type']/*"/>	
            <unmanaged>unsigned int type</unmanaged>	
            <unmanaged-short>unsigned int type</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.StorageStatistics.CbSize">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='STATSTG::cbSize']/*"/>	
            <unmanaged>ULARGE_INTEGER cbSize</unmanaged>	
            <unmanaged-short>ULARGE_INTEGER cbSize</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.StorageStatistics.Mtime">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='STATSTG::mtime']/*"/>	
            <unmanaged>FILETIME mtime</unmanaged>	
            <unmanaged-short>FILETIME mtime</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.StorageStatistics.Ctime">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='STATSTG::ctime']/*"/>	
            <unmanaged>FILETIME ctime</unmanaged>	
            <unmanaged-short>FILETIME ctime</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.StorageStatistics.Atime">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='STATSTG::atime']/*"/>	
            <unmanaged>FILETIME atime</unmanaged>	
            <unmanaged-short>FILETIME atime</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.StorageStatistics.GrfMode">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='STATSTG::grfMode']/*"/>	
            <unmanaged>unsigned int grfMode</unmanaged>	
            <unmanaged-short>unsigned int grfMode</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.StorageStatistics.GrfLocksSupported">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='STATSTG::grfLocksSupported']/*"/>	
            <unmanaged>unsigned int grfLocksSupported</unmanaged>	
            <unmanaged-short>unsigned int grfLocksSupported</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.StorageStatistics.Clsid">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='STATSTG::clsid']/*"/>	
            <unmanaged>GUID clsid</unmanaged>	
            <unmanaged-short>GUID clsid</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.StorageStatistics.GrfStateBits">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='STATSTG::grfStateBits']/*"/>	
            <unmanaged>unsigned int grfStateBits</unmanaged>	
            <unmanaged-short>unsigned int grfStateBits</unmanaged-short>	
        </member>
        <member name="F:SharpDX.Win32.StorageStatistics.Reserved">
            <summary>	
            No documentation.	
            </summary>	
            <!-- No matching elements were found for the following include tag --><include file="..\..\Documentation\CodeComments.xml" path="/comments/comment[@id='STATSTG::reserved']/*"/>	
            <unmanaged>unsigned int reserved</unmanaged>	
            <unmanaged-short>unsigned int reserved</unmanaged-short>	
        </member>
        <member name="T:SharpDX.Half">
            <summary>
              A half precision (16 bit) floating point value.
            </summary>
        </member>
        <member name="F:SharpDX.Half.PrecisionDigits">
            <summary>
              Number of decimal digits of precision.
            </summary>
        </member>
        <member name="F:SharpDX.Half.MantissaBits">
            <summary>
              Number of bits in the mantissa.
            </summary>
        </member>
        <member name="F:SharpDX.Half.MaximumDecimalExponent">
            <summary>
              Maximum decimal exponent.
            </summary>
        </member>
        <member name="F:SharpDX.Half.MaximumBinaryExponent">
            <summary>
              Maximum binary exponent.
            </summary>
        </member>
        <member name="F:SharpDX.Half.MinimumDecimalExponent">
            <summary>
              Minimum decimal exponent.
            </summary>
        </member>
        <member name="F:SharpDX.Half.MinimumBinaryExponent">
            <summary>
              Minimum binary exponent.
            </summary>
        </member>
        <member name="F:SharpDX.Half.ExponentRadix">
            <summary>
              Exponent radix.
            </summary>
        </member>
        <member name="F:SharpDX.Half.AdditionRounding">
            <summary>
              Additional rounding.
            </summary>
        </member>
        <member name="F:SharpDX.Half.Epsilon">
            <summary>
              Smallest such that 1.0 + epsilon != 1.0
            </summary>
        </member>
        <member name="F:SharpDX.Half.MaxValue">
            <summary>
              Maximum value of the number.
            </summary>
        </member>
        <member name="F:SharpDX.Half.MinValue">
            <summary>
              Minimum value of the number.
            </summary>
        </member>
        <member name="M:SharpDX.Half.#ctor(System.Single)">
            <summary>
              Initializes a new instance of the <see cref = "T:SharpDX.Half" /> structure.
            </summary>
            <param name = "value">The floating point value that should be stored in 16 bit format.</param>
        </member>
        <member name="M:SharpDX.Half.ConvertToFloat(SharpDX.Half[])">
            <summary>
              Converts an array of half precision values into full precision values.
            </summary>
            <param name = "values">The values to be converted.</param>
            <returns>An array of converted values.</returns>
        </member>
        <member name="M:SharpDX.Half.ConvertToHalf(System.Single[])">
            <summary>
              Converts an array of full precision values into half precision values.
            </summary>
            <param name = "values">The values to be converted.</param>
            <returns>An array of converted values.</returns>
        </member>
        <member name="M:SharpDX.Half.op_Explicit(System.Single)~SharpDX.Half">
            <summary>
              Performs an explicit conversion from <see cref = "T:System.Single" /> to <see cref = "T:SharpDX.Half" />.
            </summary>
            <param name = "value">The value to be converted.</param>
            <returns>The converted value.</returns>
        </member>
        <member name="M:SharpDX.Half.op_Implicit(SharpDX.Half)~System.Single">
            <summary>
              Performs an implicit conversion from <see cref = "T:SharpDX.Half" /> to <see cref = "T:System.Single" />.
            </summary>
            <param name = "value">The value to be converted.</param>
            <returns>The converted value.</returns>
        </member>
        <member name="M:SharpDX.Half.op_Equality(SharpDX.Half,SharpDX.Half)">
            <summary>
              Tests for equality between two objects.
            </summary>
            <param name = "left">The first value to compare.</param>
            <param name = "right">The second value to compare.</param>
            <returns>
              <c>true</c> if <paramref name = "left" /> has the same value as <paramref name = "right" />; otherwise, <c>false</c>.</returns>
        </member>
        <member name="M:SharpDX.Half.op_Inequality(SharpDX.Half,SharpDX.Half)">
            <summary>
              Tests for inequality between two objects.
            </summary>
            <param name = "left">The first value to compare.</param>
            <param name = "right">The second value to compare.</param>
            <returns>
              <c>true</c> if <paramref name = "left" /> has a different value than <paramref name = "right" />; otherwise, <c>false</c>.</returns>
        </member>
        <member name="M:SharpDX.Half.ToString">
            <summary>
              Converts the value of the object to its equivalent string representation.
            </summary>
            <returns>The string representation of the value of this instance.</returns>
        </member>
        <member name="M:SharpDX.Half.GetHashCode">
            <summary>
              Returns the hash code for this instance.
            </summary>
            <returns>A 32-bit signed integer hash code.</returns>
        </member>
        <member name="M:SharpDX.Half.Equals(SharpDX.Half@,SharpDX.Half@)">
            <summary>
              Determines whether the specified object instances are considered equal.
            </summary>
            <param name = "value1" />
            <param name = "value2" />
            <returns>
              <c>true</c> if <paramref name = "value1" /> is the same instance as <paramref name = "value2" /> or 
              if both are <c>null</c> references or if <c>value1.Equals(value2)</c> returns <c>true</c>; otherwise, <c>false</c>.</returns>
        </member>
        <member name="M:SharpDX.Half.Equals(SharpDX.Half)">
            <summary>
              Returns a value that indicates whether the current instance is equal to the specified object.
            </summary>
            <param name = "other">Object to make the comparison with.</param>
            <returns>
              <c>true</c> if the current instance is equal to the specified object; <c>false</c> otherwise.</returns>
        </member>
        <member name="M:SharpDX.Half.Equals(System.Object)">
            <summary>
              Returns a value that indicates whether the current instance is equal to a specified object.
            </summary>
            <param name = "obj">Object to make the comparison with.</param>
            <returns>
              <c>true</c> if the current instance is equal to the specified object; <c>false</c> otherwise.</returns>
        </member>
        <member name="P:SharpDX.Half.RawValue">
            <summary>
              Gets or sets the raw 16 bit value used to back this half-float.
            </summary>
        </member>
        <member name="T:SharpDX.Half2">
            <summary>
            Defines a two component vector, using half precision floating point coordinates.
            </summary>
        </member>
        <member name="F:SharpDX.Half2.X">
            <summary>
            Gets or sets the X component of the vector.
            </summary>
            <value>The X component of the vector.</value>
        </member>
        <member name="F:SharpDX.Half2.Y">
            <summary>
            Gets or sets the Y component of the vector.
            </summary>
            <value>The Y component of the vector.</value>
        </member>
        <member name="M:SharpDX.Half2.#ctor(SharpDX.Half,SharpDX.Half)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Half2" /> structure.
            </summary>
            <param name="x">The X component.</param>
            <param name="y">The Y component.</param>
        </member>
        <member name="M:SharpDX.Half2.#ctor(SharpDX.Half)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Half2" /> structure.
            </summary>
            <param name="value">The value to set for both the X and Y components.</param>
        </member>
        <member name="M:SharpDX.Half2.op_Equality(SharpDX.Half2,SharpDX.Half2)">
            <summary>
            Tests for equality between two objects.
            </summary>
            <param name="left">The first value to compare.</param>
            <param name="right">The second value to compare.</param>
            <returns>
            <c>true</c> if <paramref name="left" /> has the same value as <paramref name="right" />; otherwise, <c>false</c>.</returns>
        </member>
        <member name="M:SharpDX.Half2.op_Inequality(SharpDX.Half2,SharpDX.Half2)">
            <summary>
            Tests for inequality between two objects.
            </summary>
            <param name="left">The first value to compare.</param>
            <param name="right">The second value to compare.</param>
            <returns>
            <c>true</c> if <paramref name="left" /> has a different value than <paramref name="right" />; otherwise, <c>false</c>.</returns>
        </member>
        <member name="M:SharpDX.Half2.GetHashCode">
            <summary>
            Returns the hash code for this instance.
            </summary>
            <returns>A 32-bit signed integer hash code.</returns>
        </member>
        <member name="M:SharpDX.Half2.Equals(SharpDX.Half2@,SharpDX.Half2@)">
            <summary>
            Determines whether the specified object instances are considered equal. 
            </summary>
            <param name="value1" />
            <param name="value2" />
            <returns>
            <c>true</c> if <paramref name="value1" /> is the same instance as <paramref name="value2" /> or 
            if both are <c>null</c> references or if <c>value1.Equals(value2)</c> returns <c>true</c>; otherwise, <c>false</c>.</returns>
        </member>
        <member name="M:SharpDX.Half2.Equals(SharpDX.Half2)">
            <summary>
            Returns a value that indicates whether the current instance is equal to the specified object. 
            </summary>
            <param name="other">Object to make the comparison with.</param>
            <returns>
            <c>true</c> if the current instance is equal to the specified object; <c>false</c> otherwise.</returns>
        </member>
        <member name="M:SharpDX.Half2.Equals(System.Object)">
            <summary>
            Returns a value that indicates whether the current instance is equal to a specified object. 
            </summary>
            <param name="obj">Object to make the comparison with.</param>
            <returns>
            <c>true</c> if the current instance is equal to the specified object; <c>false</c> otherwise.</returns>
        </member>
        <member name="T:SharpDX.Half3">
            <summary>
            Defines a three component vector, using half precision floating point coordinates.
            </summary>
        </member>
        <member name="F:SharpDX.Half3.X">
            <summary>
            Gets or sets the X component of the vector.
            </summary>
            <value>The X component of the vector.</value>
        </member>
        <member name="F:SharpDX.Half3.Y">
            <summary>
            Gets or sets the Y component of the vector.
            </summary>
            <value>The Y component of the vector.</value>
        </member>
        <member name="F:SharpDX.Half3.Z">
            <summary>
            Gets or sets the Z component of the vector.
            </summary>
            <value>The Z component of the vector.</value>
        </member>
        <member name="M:SharpDX.Half3.#ctor(SharpDX.Half,SharpDX.Half,SharpDX.Half)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Half3" /> structure.
            </summary>
            <param name="x">The X component.</param>
            <param name="y">The Y component.</param>
            <param name="z">The Z component.</param>
        </member>
        <member name="M:SharpDX.Half3.#ctor(SharpDX.Half)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Half3" /> structure.
            </summary>
            <param name="value">The value to set for the X, Y, and Z components.</param>
        </member>
        <member name="M:SharpDX.Half3.op_Equality(SharpDX.Half3,SharpDX.Half3)">
            <summary>
            Tests for equality between two objects.
            </summary>
            <param name="left">The first value to compare.</param>
            <param name="right">The second value to compare.</param>
            <returns>
            <c>true</c> if <paramref name="left" /> has the same value as <paramref name="right" />; otherwise, <c>false</c>.</returns>
        </member>
        <member name="M:SharpDX.Half3.op_Inequality(SharpDX.Half3,SharpDX.Half3)">
            <summary>
            Tests for inequality between two objects.
            </summary>
            <param name="left">The first value to compare.</param>
            <param name="right">The second value to compare.</param>
            <returns>
            <c>true</c> if <paramref name="left" /> has a different value than <paramref name="right" />; otherwise, <c>false</c>.</returns>
        </member>
        <member name="M:SharpDX.Half3.GetHashCode">
            <summary>
            Returns the hash code for this instance.
            </summary>
            <returns>A 32-bit signed integer hash code.</returns>
        </member>
        <member name="M:SharpDX.Half3.Equals(SharpDX.Half3@,SharpDX.Half3@)">
            <summary>
            Determines whether the specified object instances are considered equal. 
            </summary>
            <param name="value1" />
            <param name="value2" />
            <returns>
            <c>true</c> if <paramref name="value1" /> is the same instance as <paramref name="value2" /> or 
            if both are <c>null</c> references or if <c>value1.Equals(value2)</c> returns <c>true</c>; otherwise, <c>false</c>.</returns>
        </member>
        <member name="M:SharpDX.Half3.Equals(SharpDX.Half3)">
            <summary>
            Returns a value that indicates whether the current instance is equal to the specified object. 
            </summary>
            <param name="other">Object to make the comparison with.</param>
            <returns>
            <c>true</c> if the current instance is equal to the specified object; <c>false</c> otherwise.</returns>
        </member>
        <member name="M:SharpDX.Half3.Equals(System.Object)">
            <summary>
            Returns a value that indicates whether the current instance is equal to a specified object. 
            </summary>
            <param name="obj">Object to make the comparison with.</param>
            <returns>
            <c>true</c> if the current instance is equal to the specified object; <c>false</c> otherwise.</returns>
        </member>
        <member name="T:SharpDX.Half4">
            <summary>
            Defines a four component vector, using half precision floating point coordinates.
            </summary>
        </member>
        <member name="F:SharpDX.Half4.X">
            <summary>
            Gets or sets the X component of the vector.
            </summary>
            <value>The X component of the vector.</value>
        </member>
        <member name="F:SharpDX.Half4.Y">
            <summary>
            Gets or sets the Y component of the vector.
            </summary>
            <value>The Y component of the vector.</value>
        </member>
        <member name="F:SharpDX.Half4.Z">
            <summary>
            Gets or sets the Z component of the vector.
            </summary>
            <value>The Z component of the vector.</value>
        </member>
        <member name="F:SharpDX.Half4.W">
            <summary>
            Gets or sets the W component of the vector.
            </summary>
            <value>The W component of the vector.</value>
        </member>
        <member name="M:SharpDX.Half4.#ctor(SharpDX.Half,SharpDX.Half,SharpDX.Half,SharpDX.Half)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Half4" /> structure.
            </summary>
            <param name="x">The X component.</param>
            <param name="y">The Y component.</param>
            <param name="z">The Z component.</param>
            <param name="w">The W component.</param>
        </member>
        <member name="M:SharpDX.Half4.#ctor(SharpDX.Half)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Half4" /> structure.
            </summary>
            <param name="value">The value to set for the X, Y, Z, and W components.</param>
        </member>
        <member name="M:SharpDX.Half4.op_Equality(SharpDX.Half4,SharpDX.Half4)">
            <summary>
            Tests for equality between two objects.
            </summary>
            <param name="left">The first value to compare.</param>
            <param name="right">The second value to compare.</param>
            <returns>
            <c>true</c> if <paramref name="left" /> has the same value as <paramref name="right" />; otherwise, <c>false</c>.</returns>
        </member>
        <member name="M:SharpDX.Half4.op_Inequality(SharpDX.Half4,SharpDX.Half4)">
            <summary>
            Tests for inequality between two objects.
            </summary>
            <param name="left">The first value to compare.</param>
            <param name="right">The second value to compare.</param>
            <returns>
            <c>true</c> if <paramref name="left" /> has a different value than <paramref name="right" />; otherwise, <c>false</c>.</returns>
        </member>
        <member name="M:SharpDX.Half4.GetHashCode">
            <summary>
            Returns the hash code for this instance.
            </summary>
            <returns>A 32-bit signed integer hash code.</returns>
        </member>
        <member name="M:SharpDX.Half4.Equals(SharpDX.Half4@,SharpDX.Half4@)">
            <summary>
            Determines whether the specified object instances are considered equal. 
            </summary>
            <param name="value1" />
            <param name="value2" />
            <returns>
            <c>true</c> if <paramref name="value1" /> is the same instance as <paramref name="value2" /> or 
            if both are <c>null</c> references or if <c>value1.Equals(value2)</c> returns <c>true</c>; otherwise, <c>false</c>.</returns>
        </member>
        <member name="M:SharpDX.Half4.Equals(SharpDX.Half4)">
            <summary>
            Returns a value that indicates whether the current instance is equal to the specified object. 
            </summary>
            <param name="other">Object to make the comparison with.</param>
            <returns>
            <c>true</c> if the current instance is equal to the specified object; <c>false</c> otherwise.</returns>
        </member>
        <member name="M:SharpDX.Half4.Equals(System.Object)">
            <summary>
            Returns a value that indicates whether the current instance is equal to a specified object. 
            </summary>
            <param name="obj">Object to make the comparison with.</param>
            <returns>
            <c>true</c> if the current instance is equal to the specified object; <c>false</c> otherwise.</returns>
        </member>
        <member name="T:SharpDX.HalfUtils">
            <summary>
            Helper class to perform Half/Float conversion.
            Code extract from paper : www.fox-toolkit.org/ftp/fasthalffloatconversion.pdf by Jeroen van der Zijp
            </summary>
        </member>
        <member name="M:SharpDX.HalfUtils.Unpack(System.UInt16)">
            <summary>
            Unpacks the specified h.
            </summary>
            <param name="h">The h.</param>
            <returns></returns>
        </member>
        <member name="M:SharpDX.HalfUtils.Pack(System.Single)">
            <summary>
            Packs the specified f.
            </summary>
            <param name="f">The f.</param>
            <returns></returns>
        </member>
        <member name="T:SharpDX.Int4">
            <summary>
              Represents a four dimensional mathematical vector.
            </summary>
        </member>
        <member name="F:SharpDX.Int4.SizeInBytes">
            <summary>
              The size of the <see cref="T:SharpDX.Int4"/> type, in bytes.
            </summary>
        </member>
        <member name="F:SharpDX.Int4.Zero">
            <summary>
              A <see cref="T:SharpDX.Int4"/> with all of its components set to zero.
            </summary>
        </member>
        <member name="F:SharpDX.Int4.UnitX">
            <summary>
              The X unit <see cref="T:SharpDX.Int4"/> (1, 0, 0, 0).
            </summary>
        </member>
        <member name="F:SharpDX.Int4.UnitY">
            <summary>
              The Y unit <see cref="T:SharpDX.Int4"/> (0, 1, 0, 0).
            </summary>
        </member>
        <member name="F:SharpDX.Int4.UnitZ">
            <summary>
              The Z unit <see cref="T:SharpDX.Int4"/> (0, 0, 1, 0).
            </summary>
        </member>
        <member name="F:SharpDX.Int4.UnitW">
            <summary>
              The W unit <see cref="T:SharpDX.Int4"/> (0, 0, 0, 1).
            </summary>
        </member>
        <member name="F:SharpDX.Int4.One">
            <summary>
              A <see cref="T:SharpDX.Int4"/> with all of its components set to one.
            </summary>
        </member>
        <member name="F:SharpDX.Int4.X">
            <summary>
              The X component of the vector.
            </summary>
        </member>
        <member name="F:SharpDX.Int4.Y">
            <summary>
              The Y component of the vector.
            </summary>
        </member>
        <member name="F:SharpDX.Int4.Z">
            <summary>
              The Z component of the vector.
            </summary>
        </member>
        <member name="F:SharpDX.Int4.W">
            <summary>
              The W component of the vector.
            </summary>
        </member>
        <member name="M:SharpDX.Int4.#ctor(System.Int32)">
            <summary>
              Initializes a new instance of the <see cref="T:SharpDX.Int4"/> struct.
            </summary>
            <param name="value">The value that will be assigned to all components.</param>
        </member>
        <member name="M:SharpDX.Int4.#ctor(System.Int32,System.Int32,System.Int32,System.Int32)">
            <summary>
              Initializes a new instance of the <see cref="T:SharpDX.Int4"/> struct.
            </summary>
            <param name="x">Initial value for the X component of the vector.</param>
            <param name="y">Initial value for the Y component of the vector.</param>
            <param name="z">Initial value for the Z component of the vector.</param>
            <param name="w">Initial value for the W component of the vector.</param>
        </member>
        <member name="M:SharpDX.Int4.#ctor(System.Int32[])">
            <summary>
              Initializes a new instance of the <see cref="T:SharpDX.Int4"/> struct.
            </summary>
            <param name="values">The values to assign to the X, Y, Z, and W components of the vector. This must be an array with four elements.</param>
            <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="values"/> is <c>null</c>.</exception>
            <exception cref="T:System.ArgumentOutOfRangeException">Thrown when <paramref name="values"/> contains more or less than four elements.</exception>
        </member>
        <member name="M:SharpDX.Int4.ToArray">
            <summary>
              Creates an array containing the elements of the vector.
            </summary>
            <returns>A four-element array containing the components of the vector.</returns>
        </member>
        <member name="M:SharpDX.Int4.Add(SharpDX.Int4@,SharpDX.Int4@,SharpDX.Int4@)">
            <summary>
              Adds two vectors.
            </summary>
            <param name = "left">The first vector to add.</param>
            <param name = "right">The second vector to add.</param>
            <param name = "result">When the method completes, contains the sum of the two vectors.</param>
        </member>
        <member name="M:SharpDX.Int4.Add(SharpDX.Int4,SharpDX.Int4)">
            <summary>
              Adds two vectors.
            </summary>
            <param name = "left">The first vector to add.</param>
            <param name = "right">The second vector to add.</param>
            <returns>The sum of the two vectors.</returns>
        </member>
        <member name="M:SharpDX.Int4.Subtract(SharpDX.Int4@,SharpDX.Int4@,SharpDX.Int4@)">
            <summary>
              Subtracts two vectors.
            </summary>
            <param name = "left">The first vector to subtract.</param>
            <param name = "right">The second vector to subtract.</param>
            <param name = "result">When the method completes, contains the difference of the two vectors.</param>
        </member>
        <member name="M:SharpDX.Int4.Subtract(SharpDX.Int4,SharpDX.Int4)">
            <summary>
              Subtracts two vectors.
            </summary>
            <param name = "left">The first vector to subtract.</param>
            <param name = "right">The second vector to subtract.</param>
            <returns>The difference of the two vectors.</returns>
        </member>
        <member name="M:SharpDX.Int4.Multiply(SharpDX.Int4@,System.Int32,SharpDX.Int4@)">
            <summary>
              Scales a vector by the given value.
            </summary>
            <param name = "value">The vector to scale.</param>
            <param name = "scale">The amount by which to scale the vector.</param>
            <param name = "result">When the method completes, contains the scaled vector.</param>
        </member>
        <member name="M:SharpDX.Int4.Multiply(SharpDX.Int4,System.Int32)">
            <summary>
              Scales a vector by the given value.
            </summary>
            <param name = "value">The vector to scale.</param>
            <param name = "scale">The amount by which to scale the vector.</param>
            <returns>The scaled vector.</returns>
        </member>
        <member name="M:SharpDX.Int4.Modulate(SharpDX.Int4@,SharpDX.Int4@,SharpDX.Int4@)">
            <summary>
              Modulates a vector with another by performing component-wise multiplication.
            </summary>
            <param name = "left">The first vector to modulate.</param>
            <param name = "right">The second vector to modulate.</param>
            <param name = "result">When the method completes, contains the modulated vector.</param>
        </member>
        <member name="M:SharpDX.Int4.Modulate(SharpDX.Int4,SharpDX.Int4)">
            <summary>
              Modulates a vector with another by performing component-wise multiplication.
            </summary>
            <param name = "left">The first vector to modulate.</param>
            <param name = "right">The second vector to modulate.</param>
            <returns>The modulated vector.</returns>
        </member>
        <member name="M:SharpDX.Int4.Divide(SharpDX.Int4@,System.Int32,SharpDX.Int4@)">
            <summary>
              Scales a vector by the given value.
            </summary>
            <param name = "value">The vector to scale.</param>
            <param name = "scale">The amount by which to scale the vector.</param>
            <param name = "result">When the method completes, contains the scaled vector.</param>
        </member>
        <member name="M:SharpDX.Int4.Divide(SharpDX.Int4,System.Int32)">
            <summary>
              Scales a vector by the given value.
            </summary>
            <param name = "value">The vector to scale.</param>
            <param name = "scale">The amount by which to scale the vector.</param>
            <returns>The scaled vector.</returns>
        </member>
        <member name="M:SharpDX.Int4.Negate(SharpDX.Int4@,SharpDX.Int4@)">
            <summary>
              Reverses the direction of a given vector.
            </summary>
            <param name = "value">The vector to negate.</param>
            <param name = "result">When the method completes, contains a vector facing in the opposite direction.</param>
        </member>
        <member name="M:SharpDX.Int4.Negate(SharpDX.Int4)">
            <summary>
              Reverses the direction of a given vector.
            </summary>
            <param name = "value">The vector to negate.</param>
            <returns>A vector facing in the opposite direction.</returns>
        </member>
        <member name="M:SharpDX.Int4.Clamp(SharpDX.Int4@,SharpDX.Int4@,SharpDX.Int4@,SharpDX.Int4@)">
            <summary>
              Restricts a value to be within a specified range.
            </summary>
            <param name = "value">The value to clamp.</param>
            <param name = "min">The minimum value.</param>
            <param name = "max">The maximum value.</param>
            <param name = "result">When the method completes, contains the clamped value.</param>
        </member>
        <member name="M:SharpDX.Int4.Clamp(SharpDX.Int4,SharpDX.Int4,SharpDX.Int4)">
            <summary>
              Restricts a value to be within a specified range.
            </summary>
            <param name = "value">The value to clamp.</param>
            <param name = "min">The minimum value.</param>
            <param name = "max">The maximum value.</param>
            <returns>The clamped value.</returns>
        </member>
        <member name="M:SharpDX.Int4.Max(SharpDX.Int4@,SharpDX.Int4@,SharpDX.Int4@)">
            <summary>
              Returns a vector containing the smallest components of the specified vectors.
            </summary>
            <param name = "left">The first source vector.</param>
            <param name = "right">The second source vector.</param>
            <param name = "result">When the method completes, contains an new vector composed of the largest components of the source vectors.</param>
        </member>
        <member name="M:SharpDX.Int4.Max(SharpDX.Int4,SharpDX.Int4)">
            <summary>
              Returns a vector containing the largest components of the specified vectors.
            </summary>
            <param name = "left">The first source vector.</param>
            <param name = "right">The second source vector.</param>
            <returns>A vector containing the largest components of the source vectors.</returns>
        </member>
        <member name="M:SharpDX.Int4.Min(SharpDX.Int4@,SharpDX.Int4@,SharpDX.Int4@)">
            <summary>
              Returns a vector containing the smallest components of the specified vectors.
            </summary>
            <param name = "left">The first source vector.</param>
            <param name = "right">The second source vector.</param>
            <param name = "result">When the method completes, contains an new vector composed of the smallest components of the source vectors.</param>
        </member>
        <member name="M:SharpDX.Int4.Min(SharpDX.Int4,SharpDX.Int4)">
            <summary>
              Returns a vector containing the smallest components of the specified vectors.
            </summary>
            <param name = "left">The first source vector.</param>
            <param name = "right">The second source vector.</param>
            <returns>A vector containing the smallest components of the source vectors.</returns>
        </member>
        <member name="M:SharpDX.Int4.op_Addition(SharpDX.Int4,SharpDX.Int4)">
            <summary>
              Adds two vectors.
            </summary>
            <param name = "left">The first vector to add.</param>
            <param name = "right">The second vector to add.</param>
            <returns>The sum of the two vectors.</returns>
        </member>
        <member name="M:SharpDX.Int4.op_UnaryPlus(SharpDX.Int4)">
            <summary>
              Assert a vector (return it unchanged).
            </summary>
            <param name = "value">The vector to assert (unchange).</param>
            <returns>The asserted (unchanged) vector.</returns>
        </member>
        <member name="M:SharpDX.Int4.op_Subtraction(SharpDX.Int4,SharpDX.Int4)">
            <summary>
              Subtracts two vectors.
            </summary>
            <param name = "left">The first vector to subtract.</param>
            <param name = "right">The second vector to subtract.</param>
            <returns>The difference of the two vectors.</returns>
        </member>
        <member name="M:SharpDX.Int4.op_UnaryNegation(SharpDX.Int4)">
            <summary>
              Reverses the direction of a given vector.
            </summary>
            <param name = "value">The vector to negate.</param>
            <returns>A vector facing in the opposite direction.</returns>
        </member>
        <member name="M:SharpDX.Int4.op_Multiply(System.Int32,SharpDX.Int4)">
            <summary>
              Scales a vector by the given value.
            </summary>
            <param name = "value">The vector to scale.</param>
            <param name = "scale">The amount by which to scale the vector.</param>
            <returns>The scaled vector.</returns>
        </member>
        <member name="M:SharpDX.Int4.op_Multiply(SharpDX.Int4,System.Int32)">
            <summary>
              Scales a vector by the given value.
            </summary>
            <param name = "value">The vector to scale.</param>
            <param name = "scale">The amount by which to scale the vector.</param>
            <returns>The scaled vector.</returns>
        </member>
        <member name="M:SharpDX.Int4.op_Division(SharpDX.Int4,System.Int32)">
            <summary>
              Scales a vector by the given value.
            </summary>
            <param name = "value">The vector to scale.</param>
            <param name = "scale">The amount by which to scale the vector.</param>
            <returns>The scaled vector.</returns>
        </member>
        <member name="M:SharpDX.Int4.op_Equality(SharpDX.Int4,SharpDX.Int4)">
            <summary>
              Tests for equality between two objects.
            </summary>
            <param name = "left">The first value to compare.</param>
            <param name = "right">The second value to compare.</param>
            <returns><c>true</c> if <paramref name = "left" /> has the same value as <paramref name = "right" />; otherwise, <c>false</c>.</returns>
        </member>
        <member name="M:SharpDX.Int4.op_Inequality(SharpDX.Int4,SharpDX.Int4)">
            <summary>
              Tests for inequality between two objects.
            </summary>
            <param name = "left">The first value to compare.</param>
            <param name = "right">The second value to compare.</param>
            <returns><c>true</c> if <paramref name = "left" /> has a different value than <paramref name = "right" />; otherwise, <c>false</c>.</returns>
        </member>
        <member name="M:SharpDX.Int4.op_Explicit(SharpDX.Int4)~SharpDX.Vector2">
            <summary>
              Performs an explicit conversion from <see cref="T:SharpDX.Int4"/> to <see cref="T:SharpDX.Vector2"/>.
            </summary>
            <param name="value">The value.</param>
            <returns>The result of the conversion.</returns>
        </member>
        <member name="M:SharpDX.Int4.op_Explicit(SharpDX.Int4)~SharpDX.Vector3">
            <summary>
              Performs an explicit conversion from <see cref="T:SharpDX.Int4"/> to <see cref="T:SharpDX.Vector3"/>.
            </summary>
            <param name="value">The value.</param>
            <returns>The result of the conversion.</returns>
        </member>
        <member name="M:SharpDX.Int4.op_Explicit(SharpDX.Int4)~SharpDX.Vector4">
            <summary>
              Performs an explicit conversion from <see cref="T:SharpDX.Int4"/> to <see cref="T:SharpDX.Vector4"/>.
            </summary>
            <param name="value">The value.</param>
            <returns>The result of the conversion.</returns>
        </member>
        <member name="M:SharpDX.Int4.ToString">
            <summary>
              Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <returns>
              A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.Int4.ToString(System.String)">
            <summary>
              Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <param name="format">The format.</param>
            <returns>
              A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.Int4.ToString(System.IFormatProvider)">
            <summary>
              Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <param name="formatProvider">The format provider.</param>
            <returns>
              A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.Int4.ToString(System.String,System.IFormatProvider)">
            <summary>
              Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <param name="format">The format.</param>
            <param name="formatProvider">The format provider.</param>
            <returns>
              A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.Int4.GetHashCode">
            <summary>
              Returns a hash code for this instance.
            </summary>
            <returns>
              A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. 
            </returns>
        </member>
        <member name="M:SharpDX.Int4.Equals(SharpDX.Int4)">
            <summary>
              Determines whether the specified <see cref="T:SharpDX.Int4"/> is equal to this instance.
            </summary>
            <param name="other">The <see cref="T:SharpDX.Int4"/> to compare with this instance.</param>
            <returns>
              <c>true</c> if the specified <see cref="T:SharpDX.Int4"/> is equal to this instance; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="M:SharpDX.Int4.Equals(System.Object)">
            <summary>
              Determines whether the specified <see cref="T:System.Object"/> is equal to this instance.
            </summary>
            <param name="value">The <see cref="T:System.Object"/> to compare with this instance.</param>
            <returns>
              <c>true</c> if the specified <see cref="T:System.Object"/> is equal to this instance; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="M:SharpDX.Int4.op_Implicit(System.Int32[])~SharpDX.Int4">
            <summary>
            Performs an implicit conversion from <see cref="T:System.Int32"/> array to <see cref="T:SharpDX.Int4"/>.
            </summary>
            <param name="input">The input.</param>
            <returns>The result of the conversion.</returns>
        </member>
        <member name="M:SharpDX.Int4.op_Implicit(SharpDX.Int4)~System.Int32[]">
            <summary>
            Performs an implicit conversion from <see cref="T:SharpDX.Int4"/> to <see cref="T:System.Int32"/> array.
            </summary>
            <param name="input">The input.</param>
            <returns>The result of the conversion.</returns>
        </member>
        <member name="P:SharpDX.Int4.Item(System.Int32)">
            <summary>
              Gets or sets the component at the specified index.
            </summary>
            <value>The value of the X, Y, Z, or W component, depending on the index.</value>
            <param name="index">The index of the component to access. Use 0 for the X component, 1 for the Y component, 2 for the Z component, and 3 for the W component.</param>
            <returns>The value of the component at the specified index.</returns>
            <exception cref="T:System.ArgumentOutOfRangeException">Thrown when the <paramref name="index"/> is out of the range [0, 3].</exception>
        </member>
        <member name="T:SharpDX.Interop">
            <summary>
            The implementation of this class is filled by InteropBuilder post-building-event.
            </summary>
        </member>
        <member name="M:SharpDX.Interop.Fixed``1(``0@)">
            <summary>
            Provides a fixed statement working with generics.
            </summary>
            <typeparam name="T"></typeparam>
            <param name="data">The data.</param>
            <returns>A fixed pointer to the referenced structure</returns>
            <remarks>
            This is the only function in this class that is inlined in order to inline the fixed statement correctly.
            </remarks>
        </member>
        <member name="F:SharpDX.MathUtil.ZeroTolerance">
            <summary>
            The value for which all absolute numbers smaller than are considered equal to zero.
            </summary>
        </member>
        <member name="F:SharpDX.MathUtil.Pi">
            <summary>
            A value specifying the approximation of π which is 180 degrees.
            </summary>
        </member>
        <member name="F:SharpDX.MathUtil.TwoPi">
            <summary>
            A value specifying the approximation of 2π which is 360 degrees.
            </summary>
        </member>
        <member name="F:SharpDX.MathUtil.PiOverTwo">
            <summary>
            A value specifying the approximation of π/2 which is 90 degrees.
            </summary>
        </member>
        <member name="F:SharpDX.MathUtil.PiOverFour">
            <summary>
            A value specifying the approximation of π/4 which is 45 degrees.
            </summary>
        </member>
        <member name="M:SharpDX.MathUtil.Array``1(``0,System.Int32)">
            <summary>
            Does something with arrays.
            </summary>
            <typeparam name="T">Most likely the type of elements in the array.</typeparam>
            <param name="value">Who knows what this is for.</param>
            <param name="count">Probably the length of the array.</param>
            <returns>An array of who knows what.</returns>
        </member>
        <member name="M:SharpDX.MathUtil.RevolutionsToDegrees(System.Single)">
            <summary>
            Converts revolutions to degrees.
            </summary>
            <param name="revolution">The value to convert.</param>
            <returns>The converted value.</returns>
        </member>
        <member name="M:SharpDX.MathUtil.RevolutionsToRadians(System.Single)">
            <summary>
            Converts revolutions to radians.
            </summary>
            <param name="revolution">The value to convert.</param>
            <returns>The converted value.</returns>
        </member>
        <member name="M:SharpDX.MathUtil.RevolutionsToGradians(System.Single)">
            <summary>
            Converts revolutions to gradians.
            </summary>
            <param name="revolution">The value to convert.</param>
            <returns>The converted value.</returns>
        </member>
        <member name="M:SharpDX.MathUtil.DegreesToRevolutions(System.Single)">
            <summary>
            Converts degrees to revolutions.
            </summary>
            <param name="degree">The value to convert.</param>
            <returns>The converted value.</returns>
        </member>
        <member name="M:SharpDX.MathUtil.DegreesToRadians(System.Single)">
            <summary>
            Converts degrees to radians.
            </summary>
            <param name="degree">The value to convert.</param>
            <returns>The converted value.</returns>
        </member>
        <member name="M:SharpDX.MathUtil.RadiansToRevolutions(System.Single)">
            <summary>
            Converts radians to revolutions.
            </summary>
            <param name="radian">The value to convert.</param>
            <returns>The converted value.</returns>
        </member>
        <member name="M:SharpDX.MathUtil.RadiansToGradians(System.Single)">
            <summary>
            Converts radians to gradians.
            </summary>
            <param name="radian">The value to convert.</param>
            <returns>The converted value.</returns>
        </member>
        <member name="M:SharpDX.MathUtil.GradiansToRevolutions(System.Single)">
            <summary>
            Converts gradians to revolutions.
            </summary>
            <param name="gradian">The value to convert.</param>
            <returns>The converted value.</returns>
        </member>
        <member name="M:SharpDX.MathUtil.GradiansToDegrees(System.Single)">
            <summary>
            Converts gradians to degrees.
            </summary>
            <param name="gradian">The value to convert.</param>
            <returns>The converted value.</returns>
        </member>
        <member name="M:SharpDX.MathUtil.GradiansToRadians(System.Single)">
            <summary>
            Converts gradians to radians.
            </summary>
            <param name="gradian">The value to convert.</param>
            <returns>The converted value.</returns>
        </member>
        <member name="M:SharpDX.MathUtil.RadiansToDegrees(System.Single)">
            <summary>
            Converts radians to degrees.
            </summary>
            <param name="radian">The value to convert.</param>
            <returns>The converted value.</returns>
        </member>
        <member name="M:SharpDX.MathUtil.Clamp(System.Single,System.Single,System.Single)">
            <summary>
            Clamp a value.
            </summary>
            <param name="value"></param>
            <param name="min"></param>
            <param name="max"></param>
            <returns></returns>
        </member>
        <member name="T:SharpDX.Matrix">
            <summary>
            Represents a 4x4 mathematical matrix.
            </summary>
        </member>
        <member name="F:SharpDX.Matrix.SizeInBytes">
            <summary>
            The size of the <see cref="T:SharpDX.Matrix"/> type, in bytes.
            </summary>
        </member>
        <member name="F:SharpDX.Matrix.Zero">
            <summary>
            A <see cref="T:SharpDX.Matrix"/> with all of its components set to zero.
            </summary>
        </member>
        <member name="F:SharpDX.Matrix.Identity">
            <summary>
            The identity <see cref="T:SharpDX.Matrix"/>.
            </summary>
        </member>
        <member name="F:SharpDX.Matrix.M11">
            <summary>
            Value at row 1 column 1 of the matrix.
            </summary>
        </member>
        <member name="F:SharpDX.Matrix.M12">
            <summary>
            Value at row 1 column 2 of the matrix.
            </summary>
        </member>
        <member name="F:SharpDX.Matrix.M13">
            <summary>
            Value at row 1 column 3 of the matrix.
            </summary>
        </member>
        <member name="F:SharpDX.Matrix.M14">
            <summary>
            Value at row 1 column 4 of the matrix.
            </summary>
        </member>
        <member name="F:SharpDX.Matrix.M21">
            <summary>
            Value at row 2 column 1 of the matrix.
            </summary>
        </member>
        <member name="F:SharpDX.Matrix.M22">
            <summary>
            Value at row 2 column 2 of the matrix.
            </summary>
        </member>
        <member name="F:SharpDX.Matrix.M23">
            <summary>
            Value at row 2 column 3 of the matrix.
            </summary>
        </member>
        <member name="F:SharpDX.Matrix.M24">
            <summary>
            Value at row 2 column 4 of the matrix.
            </summary>
        </member>
        <member name="F:SharpDX.Matrix.M31">
            <summary>
            Value at row 3 column 1 of the matrix.
            </summary>
        </member>
        <member name="F:SharpDX.Matrix.M32">
            <summary>
            Value at row 3 column 2 of the matrix.
            </summary>
        </member>
        <member name="F:SharpDX.Matrix.M33">
            <summary>
            Value at row 3 column 3 of the matrix.
            </summary>
        </member>
        <member name="F:SharpDX.Matrix.M34">
            <summary>
            Value at row 3 column 4 of the matrix.
            </summary>
        </member>
        <member name="F:SharpDX.Matrix.M41">
            <summary>
            Value at row 4 column 1 of the matrix.
            </summary>
        </member>
        <member name="F:SharpDX.Matrix.M42">
            <summary>
            Value at row 4 column 2 of the matrix.
            </summary>
        </member>
        <member name="F:SharpDX.Matrix.M43">
            <summary>
            Value at row 4 column 3 of the matrix.
            </summary>
        </member>
        <member name="F:SharpDX.Matrix.M44">
            <summary>
            Value at row 4 column 4 of the matrix.
            </summary>
        </member>
        <member name="M:SharpDX.Matrix.#ctor(System.Single)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Matrix"/> struct.
            </summary>
            <param name="value">The value that will be assigned to all components.</param>
        </member>
        <member name="M:SharpDX.Matrix.#ctor(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Matrix"/> struct.
            </summary>
            <param name="M11">The value to assign at row 1 column 1 of the matrix.</param>
            <param name="M12">The value to assign at row 1 column 2 of the matrix.</param>
            <param name="M13">The value to assign at row 1 column 3 of the matrix.</param>
            <param name="M14">The value to assign at row 1 column 4 of the matrix.</param>
            <param name="M21">The value to assign at row 2 column 1 of the matrix.</param>
            <param name="M22">The value to assign at row 2 column 2 of the matrix.</param>
            <param name="M23">The value to assign at row 2 column 3 of the matrix.</param>
            <param name="M24">The value to assign at row 2 column 4 of the matrix.</param>
            <param name="M31">The value to assign at row 3 column 1 of the matrix.</param>
            <param name="M32">The value to assign at row 3 column 2 of the matrix.</param>
            <param name="M33">The value to assign at row 3 column 3 of the matrix.</param>
            <param name="M34">The value to assign at row 3 column 4 of the matrix.</param>
            <param name="M41">The value to assign at row 4 column 1 of the matrix.</param>
            <param name="M42">The value to assign at row 4 column 2 of the matrix.</param>
            <param name="M43">The value to assign at row 4 column 3 of the matrix.</param>
            <param name="M44">The value to assign at row 4 column 4 of the matrix.</param>
        </member>
        <member name="M:SharpDX.Matrix.#ctor(System.Single[])">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Matrix"/> struct.
            </summary>
            <param name="values">The values to assign to the components of the matrix. This must be an array with sixteen elements.</param>
            <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="values"/> is <c>null</c>.</exception>
            <exception cref="T:System.ArgumentOutOfRangeException">Thrown when <paramref name="values"/> contains more or less than sixteen elements.</exception>
        </member>
        <member name="M:SharpDX.Matrix.Determinant">
            <summary>
            Calculates the determinant of the matrix.
            </summary>
            <returns>The determinant of the matrix.</returns>
        </member>
        <member name="M:SharpDX.Matrix.Invert">
            <summary>
            Inverts the matrix.
            </summary>
        </member>
        <member name="M:SharpDX.Matrix.Transpose">
            <summary>
            Transposes the matrix.
            </summary>
        </member>
        <member name="M:SharpDX.Matrix.Orthogonalize">
            <summary>
            Orthogonalizes the specified matrix.
            </summary>
            <remarks>
            <para>Orthogonalization is the process of making all rows orthogonal to each other. This
            means that any given row in the matrix will be orthogonal to any other given row in the
            matrix.</para>
            <para>Because this method uses the modified Gram-Schmidt process, the resulting matrix
            tends to be numerically unstable. The numeric stability decreases according to the rows
            so that the first row is the most stable and the last row is the least stable.</para>
            <para>This operation is performed on the rows of the matrix rather than the columns.
            If you wish for this operation to be performed on the columns, first transpose the
            input and than transpose the output.</para>
            </remarks>
        </member>
        <member name="M:SharpDX.Matrix.Orthonormalize">
            <summary>
            Orthonormalizes the specified matrix.
            </summary>
            <remarks>
            <para>Orthonormalization is the process of making all rows and columns orthogonal to each
            other and making all rows and columns of unit length. This means that any given row will
            be orthogonal to any other given row and any given column will be orthogonal to any other
            given column. Any given row will not be orthogonal to any given column. Every row and every
            column will be of unit length.</para>
            <para>Because this method uses the modified Gram-Schmidt process, the resulting matrix
            tends to be numerically unstable. The numeric stability decreases according to the rows
            so that the first row is the most stable and the last row is the least stable.</para>
            <para>This operation is performed on the rows of the matrix rather than the columns.
            If you wish for this operation to be performed on the columns, first transpose the
            input and than transpose the output.</para>
            </remarks>
        </member>
        <member name="M:SharpDX.Matrix.DecomposeQR(SharpDX.Matrix@,SharpDX.Matrix@)">
            <summary>
            Decomposes a matrix into an orthonormalized matrix Q and a right traingular matrix R.
            </summary>
            <param name="Q">When the method completes, contains the orthonormalized matrix of the decomposition.</param>
            <param name="R">When the method completes, contains the right triangular matrix of the decomposition.</param>
        </member>
        <member name="M:SharpDX.Matrix.DecomposeLQ(SharpDX.Matrix@,SharpDX.Matrix@)">
            <summary>
            Decomposes a matrix into a lower triangular matrix L and an orthonormalized matrix Q.
            </summary>
            <param name="L">When the method completes, contains the lower triangular matrix of the decomposition.</param>
            <param name="Q">When the method completes, contains the orthonormalized matrix of the decomposition.</param>
        </member>
        <member name="M:SharpDX.Matrix.Decompose(SharpDX.Vector3@,SharpDX.Quaternion@,SharpDX.Vector3@)">
            <summary>
            Decomposes a matrix into a scale, rotation, and translation.
            </summary>
            <param name="scale">When the method completes, contains the scaling component of the decomposed matrix.</param>
            <param name="rotation">When the method completes, contains the rtoation component of the decomposed matrix.</param>
            <param name="translation">When the method completes, contains the translation component of the decomposed matrix.</param>
            <remarks>
            This method is designed to decompose an SRT transformation matrix only.
            </remarks>
        </member>
        <member name="M:SharpDX.Matrix.ExchangeRows(System.Int32,System.Int32)">
            <summary>
            Exchanges two rows in the matrix.
            </summary>
            <param name="firstRow">The first row to exchange. This is an index of the row starting at zero.</param>
            <param name="secondRow">The second row to exchange. This is an index of the row starting at zero.</param>
        </member>
        <member name="M:SharpDX.Matrix.ExchangeColumns(System.Int32,System.Int32)">
            <summary>
            
            </summary>
            <param name="firstColumn"></param>
            <param name="secondColumn"></param>
        </member>
        <member name="M:SharpDX.Matrix.ToArray">
            <summary>
            Creates an array containing the elements of the matrix.
            </summary>
            <returns>A sixteen-element array containing the components of the matrix.</returns>
        </member>
        <member name="M:SharpDX.Matrix.Add(SharpDX.Matrix@,SharpDX.Matrix@,SharpDX.Matrix@)">
            <summary>
            Determines the sum of two matrices.
            </summary>
            <param name="left">The first matrix to add.</param>
            <param name="right">The second matrix to add.</param>
            <param name="result">When the method completes, contains the sum of the two matrices.</param>
        </member>
        <member name="M:SharpDX.Matrix.Add(SharpDX.Matrix,SharpDX.Matrix)">
            <summary>
            Determines the sum of two matrices.
            </summary>
            <param name="left">The first matrix to add.</param>
            <param name="right">The second matrix to add.</param>
            <returns>The sum of the two matrices.</returns>
        </member>
        <member name="M:SharpDX.Matrix.Subtract(SharpDX.Matrix@,SharpDX.Matrix@,SharpDX.Matrix@)">
            <summary>
            Determines the difference between two matrices.
            </summary>
            <param name="left">The first matrix to subtract.</param>
            <param name="right">The second matrix to subtract.</param>
            <param name="result">When the method completes, contains the difference between the two matrices.</param>
        </member>
        <member name="M:SharpDX.Matrix.Subtract(SharpDX.Matrix,SharpDX.Matrix)">
            <summary>
            Determines the difference between two matrices.
            </summary>
            <param name="left">The first matrix to subtract.</param>
            <param name="right">The second matrix to subtract.</param>
            <returns>The difference between the two matrices.</returns>
        </member>
        <member name="M:SharpDX.Matrix.Multiply(SharpDX.Matrix@,System.Single,SharpDX.Matrix@)">
            <summary>
            Scales a matrix by the given value.
            </summary>
            <param name="left">The matrix to scale.</param>
            <param name="right">The amount by which to scale.</param>
            <param name="result">When the method completes, contains the scaled matrix.</param>
        </member>
        <member name="M:SharpDX.Matrix.Multiply(SharpDX.Matrix,System.Single)">
            <summary>
            Scales a matrix by the given value.
            </summary>
            <param name="left">The matrix to scale.</param>
            <param name="right">The amount by which to scale.</param>
            <returns>The scaled matrix.</returns>
        </member>
        <member name="M:SharpDX.Matrix.Multiply(SharpDX.Matrix@,SharpDX.Matrix@,SharpDX.Matrix@)">
            <summary>
            Determines the product of two matrices.
            </summary>
            <param name="left">The first matrix to multiply.</param>
            <param name="right">The second matrix to multiply.</param>
            <param name="result">The product of the two matrices.</param>
        </member>
        <member name="M:SharpDX.Matrix.Multiply(SharpDX.Matrix,SharpDX.Matrix)">
            <summary>
            Determines the product of two matrices.
            </summary>
            <param name="left">The first matrix to multiply.</param>
            <param name="right">The second matrix to multiply.</param>
            <returns>The product of the two matrices.</returns>
        </member>
        <member name="M:SharpDX.Matrix.Divide(SharpDX.Matrix@,System.Single,SharpDX.Matrix@)">
            <summary>
            Scales a matrix by the given value.
            </summary>
            <param name="left">The matrix to scale.</param>
            <param name="right">The amount by which to scale.</param>
            <param name="result">When the method completes, contains the scaled matrix.</param>
        </member>
        <member name="M:SharpDX.Matrix.Divide(SharpDX.Matrix,System.Single)">
            <summary>
            Scales a matrix by the given value.
            </summary>
            <param name="left">The matrix to scale.</param>
            <param name="right">The amount by which to scale.</param>
            <returns>The scaled matrix.</returns>
        </member>
        <member name="M:SharpDX.Matrix.Divide(SharpDX.Matrix@,SharpDX.Matrix@,SharpDX.Matrix@)">
            <summary>
            Determines the quotient of two matrices.
            </summary>
            <param name="left">The first matrix to divide.</param>
            <param name="right">The second matrix to divide.</param>
            <param name="result">When the method completes, contains the quotient of the two matrices.</param>
        </member>
        <member name="M:SharpDX.Matrix.Divide(SharpDX.Matrix,SharpDX.Matrix)">
            <summary>
            Determines the quotient of two matrices.
            </summary>
            <param name="left">The first matrix to divide.</param>
            <param name="right">The second matrix to divide.</param>
            <returns>The quotient of the two matrices.</returns>
        </member>
        <member name="M:SharpDX.Matrix.Exponent(SharpDX.Matrix@,System.Int32,SharpDX.Matrix@)">
            <summary>
            Performs the exponential operation on a matrix.
            </summary>
            <param name="value">The matrix to perform the operation on.</param>
            <param name="exponent">The exponent to raise the matrix to.</param>
            <param name="result">When the method completes, contains the exponential matrix.</param>
            <exception cref="T:System.ArgumentOutOfRangeException">Thrown when the <paramref name="exponent"/> is negative.</exception>
        </member>
        <member name="M:SharpDX.Matrix.Exponent(SharpDX.Matrix,System.Int32)">
            <summary>
            Performs the exponential operation on a matrix.
            </summary>
            <param name="value">The matrix to perform the operation on.</param>
            <param name="exponent">The exponent to raise the matrix to.</param>
            <returns>The exponential matrix.</returns>
            <exception cref="T:System.ArgumentOutOfRangeException">Thrown when the <paramref name="exponent"/> is negative.</exception>
        </member>
        <member name="M:SharpDX.Matrix.Negate(SharpDX.Matrix@,SharpDX.Matrix@)">
            <summary>
            Negates a matrix.
            </summary>
            <param name="value">The matrix to be negated.</param>
            <param name="result">When the method completes, contains the negated matrix.</param>
        </member>
        <member name="M:SharpDX.Matrix.Negate(SharpDX.Matrix)">
            <summary>
            Negates a matrix.
            </summary>
            <param name="value">The matrix to be negated.</param>
            <returns>The negated matrix.</returns>
        </member>
        <member name="M:SharpDX.Matrix.Lerp(SharpDX.Matrix@,SharpDX.Matrix@,System.Single,SharpDX.Matrix@)">
            <summary>
            Performs a linear interpolation between two matricies.
            </summary>
            <param name="start">Start matrix.</param>
            <param name="end">End matrix.</param>
            <param name="amount">Value between 0 and 1 indicating the weight of <paramref name="end"/>.</param>
            <param name="result">When the method completes, contains the linear interpolation of the two matricies.</param>
            <remarks>
            This method performs the linear interpolation based on the following formula.
            <code>start + (end - start) * amount</code>
            Passing <paramref name="amount"/> a value of 0 will cause <paramref name="start"/> to be returned; a value of 1 will cause <paramref name="end"/> to be returned. 
            </remarks>
        </member>
        <member name="M:SharpDX.Matrix.Lerp(SharpDX.Matrix,SharpDX.Matrix,System.Single)">
            <summary>
            Performs a linear interpolation between two matricies.
            </summary>
            <param name="start">Start matrix.</param>
            <param name="end">End matrix.</param>
            <param name="amount">Value between 0 and 1 indicating the weight of <paramref name="end"/>.</param>
            <returns>The linear interpolation of the two matrices.</returns>
            <remarks>
            This method performs the linear interpolation based on the following formula.
            <code>start + (end - start) * amount</code>
            Passing <paramref name="amount"/> a value of 0 will cause <paramref name="start"/> to be returned; a value of 1 will cause <paramref name="end"/> to be returned. 
            </remarks>
        </member>
        <member name="M:SharpDX.Matrix.SmoothStep(SharpDX.Matrix@,SharpDX.Matrix@,System.Single,SharpDX.Matrix@)">
            <summary>
            Performs a cubic interpolation between two matricies.
            </summary>
            <param name="start">Start matrix.</param>
            <param name="end">End matrix.</param>
            <param name="amount">Value between 0 and 1 indicating the weight of <paramref name="end"/>.</param>
            <param name="result">When the method completes, contains the cubic interpolation of the two matrices.</param>
        </member>
        <member name="M:SharpDX.Matrix.SmoothStep(SharpDX.Matrix,SharpDX.Matrix,System.Single)">
            <summary>
            Performs a cubic interpolation between two matrices.
            </summary>
            <param name="start">Start matrix.</param>
            <param name="end">End matrix.</param>
            <param name="amount">Value between 0 and 1 indicating the weight of <paramref name="end"/>.</param>
            <returns>The cubic interpolation of the two matrices.</returns>
        </member>
        <member name="M:SharpDX.Matrix.Transpose(SharpDX.Matrix@,SharpDX.Matrix@)">
            <summary>
            Calculates the transpose of the specified matrix.
            </summary>
            <param name="value">The matrix whose transpose is to be calculated.</param>
            <param name="result">When the method completes, contains the transpose of the specified matrix.</param>
        </member>
        <member name="M:SharpDX.Matrix.Transpose(SharpDX.Matrix)">
            <summary>
            Calculates the transpose of the specified matrix.
            </summary>
            <param name="value">The matrix whose transpose is to be calculated.</param>
            <returns>The transpose of the specified matrix.</returns>
        </member>
        <member name="M:SharpDX.Matrix.Invert(SharpDX.Matrix@,SharpDX.Matrix@)">
            <summary>
            Calculates the inverse of the specified matrix.
            </summary>
            <param name="value">The matrix whose inverse is to be calculated.</param>
            <param name="result">When the method completes, contains the inverse of the specified matrix.</param>
        </member>
        <member name="M:SharpDX.Matrix.Invert(SharpDX.Matrix)">
            <summary>
            Calculates the inverse of the specified matrix.
            </summary>
            <param name="value">The matrix whose inverse is to be calculated.</param>
            <returns>The inverse of the specified matrix.</returns>
        </member>
        <member name="M:SharpDX.Matrix.Orthogonalize(SharpDX.Matrix@,SharpDX.Matrix@)">
            <summary>
            Orthogonalizes the specified matrix.
            </summary>
            <param name="value">The matrix to orthogonalize.</param>
            <param name="result">When the method completes, contains the orthogonalized matrix.</param>
            <remarks>
            <para>Orthogonalization is the process of making all rows orthogonal to each other. This
            means that any given row in the matrix will be orthogonal to any other given row in the
            matrix.</para>
            <para>Because this method uses the modified Gram-Schmidt process, the resulting matrix
            tends to be numerically unstable. The numeric stability decreases according to the rows
            so that the first row is the most stable and the last row is the least stable.</para>
            <para>This operation is performed on the rows of the matrix rather than the columns.
            If you wish for this operation to be performed on the columns, first transpose the
            input and than transpose the output.</para>
            </remarks>
        </member>
        <member name="M:SharpDX.Matrix.Orthogonalize(SharpDX.Matrix)">
            <summary>
            Orthogonalizes the specified matrix.
            </summary>
            <param name="value">The matrix to orthogonalize.</param>
            <returns>The orthogonalized matrix.</returns>
            <remarks>
            <para>Orthogonalization is the process of making all rows orthogonal to each other. This
            means that any given row in the matrix will be orthogonal to any other given row in the
            matrix.</para>
            <para>Because this method uses the modified Gram-Schmidt process, the resulting matrix
            tends to be numerically unstable. The numeric stability decreases according to the rows
            so that the first row is the most stable and the last row is the least stable.</para>
            <para>This operation is performed on the rows of the matrix rather than the columns.
            If you wish for this operation to be performed on the columns, first transpose the
            input and than transpose the output.</para>
            </remarks>
        </member>
        <member name="M:SharpDX.Matrix.Orthonormalize(SharpDX.Matrix@,SharpDX.Matrix@)">
            <summary>
            Orthonormalizes the specified matrix.
            </summary>
            <param name="value">The matrix to orthonormalize.</param>
            <param name="result">When the method completes, contains the orthonormalized matrix.</param>
            <remarks>
            <para>Orthonormalization is the process of making all rows and columns orthogonal to each
            other and making all rows and columns of unit length. This means that any given row will
            be orthogonal to any other given row and any given column will be orthogonal to any other
            given column. Any given row will not be orthogonal to any given column. Every row and every
            column will be of unit length.</para>
            <para>Because this method uses the modified Gram-Schmidt process, the resulting matrix
            tends to be numerically unstable. The numeric stability decreases according to the rows
            so that the first row is the most stable and the last row is the least stable.</para>
            <para>This operation is performed on the rows of the matrix rather than the columns.
            If you wish for this operation to be performed on the columns, first transpose the
            input and than transpose the output.</para>
            </remarks>
        </member>
        <member name="M:SharpDX.Matrix.Orthonormalize(SharpDX.Matrix)">
            <summary>
            Orthonormalizes the specified matrix.
            </summary>
            <param name="value">The matrix to orthonormalize.</param>
            <returns>The orthonormalized matrix.</returns>
            <remarks>
            <para>Orthonormalization is the process of making all rows and columns orthogonal to each
            other and making all rows and columns of unit length. This means that any given row will
            be orthogonal to any other given row and any given column will be orthogonal to any other
            given column. Any given row will not be orthogonal to any given column. Every row and every
            column will be of unit length.</para>
            <para>Because this method uses the modified Gram-Schmidt process, the resulting matrix
            tends to be numerically unstable. The numeric stability decreases according to the rows
            so that the first row is the most stable and the last row is the least stable.</para>
            <para>This operation is performed on the rows of the matrix rather than the columns.
            If you wish for this operation to be performed on the columns, first transpose the
            input and than transpose the output.</para>
            </remarks>
        </member>
        <member name="M:SharpDX.Matrix.UpperTriangularForm(SharpDX.Matrix@,SharpDX.Matrix@)">
            <summary>
            Brings the matrix into upper triangular form using elementry row operations.
            </summary>
            <param name="value">The matrix to put into upper triangular form.</param>
            <param name="result">When the method completes, contains the upper triangular matrix.</param>
            <remarks>
            If the matrix is not invertable (i.e. its determinant is zero) than the result of this
            method may produce Single.Nan and Single.Inf values. When the matrix represents a system
            of linear equations, than this often means that either no solution exists or an infinite
            number of solutions exist.
            </remarks>
        </member>
        <member name="M:SharpDX.Matrix.UpperTriangularForm(SharpDX.Matrix)">
            <summary>
            Brings the matrix into upper triangular form using elementry row operations.
            </summary>
            <param name="value">The matrix to put into upper triangular form.</param>
            <returns>The upper triangular matrix.</returns>
            <remarks>
            If the matrix is not invertable (i.e. its determinant is zero) than the result of this
            method may produce Single.Nan and Single.Inf values. When the matrix represents a system
            of linear equations, than this often means that either no solution exists or an infinite
            number of solutions exist.
            </remarks>
        </member>
        <member name="M:SharpDX.Matrix.LowerTriangularForm(SharpDX.Matrix@,SharpDX.Matrix@)">
            <summary>
            Brings the matrix into lower triangular form using elementry row operations.
            </summary>
            <param name="value">The matrix to put into lower triangular form.</param>
            <param name="result">When the method completes, contains the lower triangular matrix.</param>
            <remarks>
            If the matrix is not invertable (i.e. its determinant is zero) than the result of this
            method may produce Single.Nan and Single.Inf values. When the matrix represents a system
            of linear equations, than this often means that either no solution exists or an infinite
            number of solutions exist.
            </remarks>
        </member>
        <member name="M:SharpDX.Matrix.LowerTriangularForm(SharpDX.Matrix)">
            <summary>
            Brings the matrix into lower triangular form using elementry row operations.
            </summary>
            <param name="value">The matrix to put into lower triangular form.</param>
            <returns>The lower triangular matrix.</returns>
            <remarks>
            If the matrix is not invertable (i.e. its determinant is zero) than the result of this
            method may produce Single.Nan and Single.Inf values. When the matrix represents a system
            of linear equations, than this often means that either no solution exists or an infinite
            number of solutions exist.
            </remarks>
        </member>
        <member name="M:SharpDX.Matrix.RowEchelonForm(SharpDX.Matrix@,SharpDX.Matrix@)">
            <summary>
            Brings the matrix into row echelon form using elementry row operations;
            </summary>
            <param name="value">The matrix to put into row echelon form.</param>
            <param name="result">When the method completes, contains the row echelon form of the matrix.</param>
        </member>
        <member name="M:SharpDX.Matrix.RowEchelonForm(SharpDX.Matrix)">
            <summary>
            Brings the matrix into row echelon form using elementry row operations;
            </summary>
            <param name="value">The matrix to put into row echelon form.</param>
            <returns>When the method completes, contains the row echelon form of the matrix.</returns>
        </member>
        <member name="M:SharpDX.Matrix.ReducedRowEchelonForm(SharpDX.Matrix@,SharpDX.Vector4@,SharpDX.Matrix@,SharpDX.Vector4@)">
            <summary>
            Brings the matrix into reduced row echelon form using elementry row operations.
            </summary>
            <param name="value">The matrix to put into reduced row echelon form.</param>
            <param name="augment">The fifth column of the matrix.</param>
            <param name="result">When the method completes, contains the resultant matrix after the operation.</param>
            <param name="augmentResult">When the method completes, contains the resultant fifth column of the matrix.</param>
            <remarks>
            <para>The fifth column is often called the agumented part of the matrix. This is because the fifth
            column is really just an extension of the matrix so that there is a place to put all of the
            non-zero components after the operation is complete.</para>
            <para>Often times the resultant matrix will the identity matrix or a matrix similar to the identity
            matrix. Sometimes, however, that is not possible and numbers other than zero and one may appear.</para>
            <para>This method can be used to solve systems of linear equations. Upon completion of this method,
            the <paramref name="augmentResult"/> will contain the solution for the system. It is up to the user
            to analyze both the input and the result to determine if a solution really exists.</para>
            </remarks>
        </member>
        <member name="M:SharpDX.Matrix.Billboard(SharpDX.Vector3@,SharpDX.Vector3@,SharpDX.Vector3@,SharpDX.Vector3@,SharpDX.Matrix@)">
            <summary>
            Creates a spherical billboard that rotates around a specified object position.
            </summary>
            <param name="objectPosition">The position of the object around which the billboard will rotate.</param>
            <param name="cameraPosition">The position of the camera.</param>
            <param name="cameraUpVector">The up vector of the camera.</param>
            <param name="cameraForwardVector">The forward vector of the camera.</param>
            <param name="result">When the method completes, contains the created billboard matrix.</param>
        </member>
        <member name="M:SharpDX.Matrix.Billboard(SharpDX.Vector3,SharpDX.Vector3,SharpDX.Vector3,SharpDX.Vector3)">
            <summary>
            Creates a spherical billboard that rotates around a specified object position.
            </summary>
            <param name="objectPosition">The position of the object around which the billboard will rotate.</param>
            <param name="cameraPosition">The position of the camera.</param>
            <param name="cameraUpVector">The up vector of the camera.</param>
            <param name="cameraForwardVector">The forward vector of the camera.</param>
            <returns>The created billboard matrix.</returns>
        </member>
        <member name="M:SharpDX.Matrix.LookAtLH(SharpDX.Vector3@,SharpDX.Vector3@,SharpDX.Vector3@,SharpDX.Matrix@)">
            <summary>
            Creates a left-handed, look-at matrix.
            </summary>
            <param name="eye">The position of the viewer's eye.</param>
            <param name="target">The camera look-at target.</param>
            <param name="up">The camera's up vector.</param>
            <param name="result">When the method completes, contains the created look-at matrix.</param>
        </member>
        <member name="M:SharpDX.Matrix.LookAtLH(SharpDX.Vector3,SharpDX.Vector3,SharpDX.Vector3)">
            <summary>
            Creates a left-handed, look-at matrix.
            </summary>
            <param name="eye">The position of the viewer's eye.</param>
            <param name="target">The camera look-at target.</param>
            <param name="up">The camera's up vector.</param>
            <returns>The created look-at matrix.</returns>
        </member>
        <member name="M:SharpDX.Matrix.LookAtRH(SharpDX.Vector3@,SharpDX.Vector3@,SharpDX.Vector3@,SharpDX.Matrix@)">
            <summary>
            Creates a right-handed, look-at matrix.
            </summary>
            <param name="eye">The position of the viewer's eye.</param>
            <param name="target">The camera look-at target.</param>
            <param name="up">The camera's up vector.</param>
            <param name="result">When the method completes, contains the created look-at matrix.</param>
        </member>
        <member name="M:SharpDX.Matrix.LookAtRH(SharpDX.Vector3,SharpDX.Vector3,SharpDX.Vector3)">
            <summary>
            Creates a right-handed, look-at matrix.
            </summary>
            <param name="eye">The position of the viewer's eye.</param>
            <param name="target">The camera look-at target.</param>
            <param name="up">The camera's up vector.</param>
            <returns>The created look-at matrix.</returns>
        </member>
        <member name="M:SharpDX.Matrix.OrthoLH(System.Single,System.Single,System.Single,System.Single,SharpDX.Matrix@)">
            <summary>
            Creates a left-handed, orthographic projection matrix.
            </summary>
            <param name="width">Width of the viewing volume.</param>
            <param name="height">Height of the viewing volume.</param>
            <param name="znear">Minimum z-value of the viewing volume.</param>
            <param name="zfar">Maximum z-value of the viewing volume.</param>
            <param name="result">When the method completes, contains the created projection matrix.</param>
        </member>
        <member name="M:SharpDX.Matrix.OrthoLH(System.Single,System.Single,System.Single,System.Single)">
            <summary>
            Creates a left-handed, orthographic projection matrix.
            </summary>
            <param name="width">Width of the viewing volume.</param>
            <param name="height">Height of the viewing volume.</param>
            <param name="znear">Minimum z-value of the viewing volume.</param>
            <param name="zfar">Maximum z-value of the viewing volume.</param>
            <returns>The created projection matrix.</returns>
        </member>
        <member name="M:SharpDX.Matrix.OrthoRH(System.Single,System.Single,System.Single,System.Single,SharpDX.Matrix@)">
            <summary>
            Creates a right-handed, orthographic projection matrix.
            </summary>
            <param name="width">Width of the viewing volume.</param>
            <param name="height">Height of the viewing volume.</param>
            <param name="znear">Minimum z-value of the viewing volume.</param>
            <param name="zfar">Maximum z-value of the viewing volume.</param>
            <param name="result">When the method completes, contains the created projection matrix.</param>
        </member>
        <member name="M:SharpDX.Matrix.OrthoRH(System.Single,System.Single,System.Single,System.Single)">
            <summary>
            Creates a right-handed, orthographic projection matrix.
            </summary>
            <param name="width">Width of the viewing volume.</param>
            <param name="height">Height of the viewing volume.</param>
            <param name="znear">Minimum z-value of the viewing volume.</param>
            <param name="zfar">Maximum z-value of the viewing volume.</param>
            <returns>The created projection matrix.</returns>
        </member>
        <member name="M:SharpDX.Matrix.OrthoOffCenterLH(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,SharpDX.Matrix@)">
            <summary>
            Creates a left-handed, customized orthographic projection matrix.
            </summary>
            <param name="left">Minimum x-value of the viewing volume.</param>
            <param name="right">Maximum x-value of the viewing volume.</param>
            <param name="bottom">Minimum y-value of the viewing volume.</param>
            <param name="top">Maximum y-value of the viewing volume.</param>
            <param name="znear">Minimum z-value of the viewing volume.</param>
            <param name="zfar">Maximum z-value of the viewing volume.</param>
            <param name="result">When the method completes, contains the created projection matrix.</param>
        </member>
        <member name="M:SharpDX.Matrix.OrthoOffCenterLH(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)">
            <summary>
            Creates a left-handed, customized orthographic projection matrix.
            </summary>
            <param name="left">Minimum x-value of the viewing volume.</param>
            <param name="right">Maximum x-value of the viewing volume.</param>
            <param name="bottom">Minimum y-value of the viewing volume.</param>
            <param name="top">Maximum y-value of the viewing volume.</param>
            <param name="znear">Minimum z-value of the viewing volume.</param>
            <param name="zfar">Maximum z-value of the viewing volume.</param>
            <returns>The created projection matrix.</returns>
        </member>
        <member name="M:SharpDX.Matrix.OrthoOffCenterRH(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,SharpDX.Matrix@)">
            <summary>
            Creates a right-handed, customized orthographic projection matrix.
            </summary>
            <param name="left">Minimum x-value of the viewing volume.</param>
            <param name="right">Maximum x-value of the viewing volume.</param>
            <param name="bottom">Minimum y-value of the viewing volume.</param>
            <param name="top">Maximum y-value of the viewing volume.</param>
            <param name="znear">Minimum z-value of the viewing volume.</param>
            <param name="zfar">Maximum z-value of the viewing volume.</param>
            <param name="result">When the method completes, contains the created projection matrix.</param>
        </member>
        <member name="M:SharpDX.Matrix.OrthoOffCenterRH(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)">
            <summary>
            Creates a right-handed, customized orthographic projection matrix.
            </summary>
            <param name="left">Minimum x-value of the viewing volume.</param>
            <param name="right">Maximum x-value of the viewing volume.</param>
            <param name="bottom">Minimum y-value of the viewing volume.</param>
            <param name="top">Maximum y-value of the viewing volume.</param>
            <param name="znear">Minimum z-value of the viewing volume.</param>
            <param name="zfar">Maximum z-value of the viewing volume.</param>
            <returns>The created projection matrix.</returns>
        </member>
        <member name="M:SharpDX.Matrix.PerspectiveLH(System.Single,System.Single,System.Single,System.Single,SharpDX.Matrix@)">
            <summary>
            Creates a left-handed, perspective projection matrix.
            </summary>
            <param name="width">Width of the viewing volume.</param>
            <param name="height">Height of the viewing volume.</param>
            <param name="znear">Minimum z-value of the viewing volume.</param>
            <param name="zfar">Maximum z-value of the viewing volume.</param>
            <param name="result">When the method completes, contains the created projection matrix.</param>
        </member>
        <member name="M:SharpDX.Matrix.PerspectiveLH(System.Single,System.Single,System.Single,System.Single)">
            <summary>
            Creates a left-handed, perspective projection matrix.
            </summary>
            <param name="width">Width of the viewing volume.</param>
            <param name="height">Height of the viewing volume.</param>
            <param name="znear">Minimum z-value of the viewing volume.</param>
            <param name="zfar">Maximum z-value of the viewing volume.</param>
            <returns>The created projection matrix.</returns>
        </member>
        <member name="M:SharpDX.Matrix.PerspectiveRH(System.Single,System.Single,System.Single,System.Single,SharpDX.Matrix@)">
            <summary>
            Creates a right-handed, perspective projection matrix.
            </summary>
            <param name="width">Width of the viewing volume.</param>
            <param name="height">Height of the viewing volume.</param>
            <param name="znear">Minimum z-value of the viewing volume.</param>
            <param name="zfar">Maximum z-value of the viewing volume.</param>
            <param name="result">When the method completes, contains the created projection matrix.</param>
        </member>
        <member name="M:SharpDX.Matrix.PerspectiveRH(System.Single,System.Single,System.Single,System.Single)">
            <summary>
            Creates a right-handed, perspective projection matrix.
            </summary>
            <param name="width">Width of the viewing volume.</param>
            <param name="height">Height of the viewing volume.</param>
            <param name="znear">Minimum z-value of the viewing volume.</param>
            <param name="zfar">Maximum z-value of the viewing volume.</param>
            <returns>The created projection matrix.</returns>
        </member>
        <member name="M:SharpDX.Matrix.PerspectiveFovLH(System.Single,System.Single,System.Single,System.Single,SharpDX.Matrix@)">
            <summary>
            Creates a left-handed, perspective projection matrix based on a field of view.
            </summary>
            <param name="fov">Field of view in the y direction, in radians.</param>
            <param name="aspect">Aspect ratio, defined as view space width divided by height.</param>
            <param name="znear">Minimum z-value of the viewing volume.</param>
            <param name="zfar">Maximum z-value of the viewing volume.</param>
            <param name="result">When the method completes, contains the created projection matrix.</param>
        </member>
        <member name="M:SharpDX.Matrix.PerspectiveFovLH(System.Single,System.Single,System.Single,System.Single)">
            <summary>
            Creates a left-handed, perspective projection matrix based on a field of view.
            </summary>
            <param name="fov">Field of view in the y direction, in radians.</param>
            <param name="aspect">Aspect ratio, defined as view space width divided by height.</param>
            <param name="znear">Minimum z-value of the viewing volume.</param>
            <param name="zfar">Maximum z-value of the viewing volume.</param>
            <returns>The created projection matrix.</returns>
        </member>
        <member name="M:SharpDX.Matrix.PerspectiveFovRH(System.Single,System.Single,System.Single,System.Single,SharpDX.Matrix@)">
            <summary>
            Creates a right-handed, perspective projection matrix based on a field of view.
            </summary>
            <param name="fov">Field of view in the y direction, in radians.</param>
            <param name="aspect">Aspect ratio, defined as view space width divided by height.</param>
            <param name="znear">Minimum z-value of the viewing volume.</param>
            <param name="zfar">Maximum z-value of the viewing volume.</param>
            <param name="result">When the method completes, contains the created projection matrix.</param>
        </member>
        <member name="M:SharpDX.Matrix.PerspectiveFovRH(System.Single,System.Single,System.Single,System.Single)">
            <summary>
            Creates a right-handed, perspective projection matrix based on a field of view.
            </summary>
            <param name="fov">Field of view in the y direction, in radians.</param>
            <param name="aspect">Aspect ratio, defined as view space width divided by height.</param>
            <param name="znear">Minimum z-value of the viewing volume.</param>
            <param name="zfar">Maximum z-value of the viewing volume.</param>
            <returns>The created projection matrix.</returns>
        </member>
        <member name="M:SharpDX.Matrix.PerspectiveOffCenterLH(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,SharpDX.Matrix@)">
            <summary>
            Creates a left-handed, customized perspective projection matrix.
            </summary>
            <param name="left">Minimum x-value of the viewing volume.</param>
            <param name="right">Maximum x-value of the viewing volume.</param>
            <param name="bottom">Minimum y-value of the viewing volume.</param>
            <param name="top">Maximum y-value of the viewing volume.</param>
            <param name="znear">Minimum z-value of the viewing volume.</param>
            <param name="zfar">Maximum z-value of the viewing volume.</param>
            <param name="result">When the method completes, contains the created projection matrix.</param>
        </member>
        <member name="M:SharpDX.Matrix.PerspectiveOffCenterLH(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)">
            <summary>
            Creates a left-handed, customized perspective projection matrix.
            </summary>
            <param name="left">Minimum x-value of the viewing volume.</param>
            <param name="right">Maximum x-value of the viewing volume.</param>
            <param name="bottom">Minimum y-value of the viewing volume.</param>
            <param name="top">Maximum y-value of the viewing volume.</param>
            <param name="znear">Minimum z-value of the viewing volume.</param>
            <param name="zfar">Maximum z-value of the viewing volume.</param>
            <returns>The created projection matrix.</returns>
        </member>
        <member name="M:SharpDX.Matrix.PerspectiveOffCenterRH(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,SharpDX.Matrix@)">
            <summary>
            Creates a right-handed, customized perspective projection matrix.
            </summary>
            <param name="left">Minimum x-value of the viewing volume.</param>
            <param name="right">Maximum x-value of the viewing volume.</param>
            <param name="bottom">Minimum y-value of the viewing volume.</param>
            <param name="top">Maximum y-value of the viewing volume.</param>
            <param name="znear">Minimum z-value of the viewing volume.</param>
            <param name="zfar">Maximum z-value of the viewing volume.</param>
            <param name="result">When the method completes, contains the created projection matrix.</param>
        </member>
        <member name="M:SharpDX.Matrix.PerspectiveOffCenterRH(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)">
            <summary>
            Creates a right-handed, customized perspective projection matrix.
            </summary>
            <param name="left">Minimum x-value of the viewing volume.</param>
            <param name="right">Maximum x-value of the viewing volume.</param>
            <param name="bottom">Minimum y-value of the viewing volume.</param>
            <param name="top">Maximum y-value of the viewing volume.</param>
            <param name="znear">Minimum z-value of the viewing volume.</param>
            <param name="zfar">Maximum z-value of the viewing volume.</param>
            <returns>The created projection matrix.</returns>
        </member>
        <member name="M:SharpDX.Matrix.Reflection(SharpDX.Plane@,SharpDX.Matrix@)">
            <summary>
            Builds a matrix that can be used to reflect vectors about a plane.
            </summary>
            <param name="plane">The plane for which the reflection occurs. This parameter is assumed to be normalized.</param>
            <param name="result">When the method completes, contains the reflection matrix.</param>
        </member>
        <member name="M:SharpDX.Matrix.Reflection(SharpDX.Plane)">
            <summary>
            Builds a matrix that can be used to reflect vectors about a plane.
            </summary>
            <param name="plane">The plane for which the reflection occurs. This parameter is assumed to be normalized.</param>
            <returns>The reflection matrix.</returns>
        </member>
        <member name="M:SharpDX.Matrix.Shadow(SharpDX.Vector4@,SharpDX.Plane@,SharpDX.Matrix@)">
            <summary>
            Creates a matrix that flattens geometry into a shadow.
            </summary>
            <param name="light">The light direction. If the W component is 0, the light is directional light; if the
            W component is 1, the light is a point light.</param>
            <param name="plane">The plane onto which to project the geometry as a shadow. This parameter is assumed to be normalized.</param>
            <param name="result">When the method completes, contains the shadow matrix.</param>
        </member>
        <member name="M:SharpDX.Matrix.Shadow(SharpDX.Vector4,SharpDX.Plane)">
            <summary>
            Creates a matrix that flattens geometry into a shadow.
            </summary>
            <param name="light">The light direction. If the W component is 0, the light is directional light; if the
            W component is 1, the light is a point light.</param>
            <param name="plane">The plane onto which to project the geometry as a shadow. This parameter is assumed to be normalized.</param>
            <returns>The shadow matrix.</returns>
        </member>
        <member name="M:SharpDX.Matrix.Scaling(SharpDX.Vector3@,SharpDX.Matrix@)">
            <summary>
            Creates a matrix that scales along the x-axis, y-axis, and y-axis.
            </summary>
            <param name="scale">Scaling factor for all three axes.</param>
            <param name="result">When the method completes, contains the created scaling matrix.</param>
        </member>
        <member name="M:SharpDX.Matrix.Scaling(SharpDX.Vector3)">
            <summary>
            Creates a matrix that scales along the x-axis, y-axis, and y-axis.
            </summary>
            <param name="scale">Scaling factor for all three axes.</param>
            <returns>The created scaling matrix.</returns>
        </member>
        <member name="M:SharpDX.Matrix.Scaling(System.Single,System.Single,System.Single,SharpDX.Matrix@)">
            <summary>
            Creates a matrix that scales along the x-axis, y-axis, and y-axis.
            </summary>
            <param name="x">Scaling factor that is applied along the x-axis.</param>
            <param name="y">Scaling factor that is applied along the y-axis.</param>
            <param name="z">Scaling factor that is applied along the z-axis.</param>
            <param name="result">When the method completes, contains the created scaling matrix.</param>
        </member>
        <member name="M:SharpDX.Matrix.Scaling(System.Single,System.Single,System.Single)">
            <summary>
            Creates a matrix that scales along the x-axis, y-axis, and y-axis.
            </summary>
            <param name="x">Scaling factor that is applied along the x-axis.</param>
            <param name="y">Scaling factor that is applied along the y-axis.</param>
            <param name="z">Scaling factor that is applied along the z-axis.</param>
            <returns>The created scaling matrix.</returns>
        </member>
        <member name="M:SharpDX.Matrix.Scaling(System.Single,SharpDX.Matrix@)">
            <summary>
            Creates a matrix that uniformally scales along all three axis.
            </summary>
            <param name="scale">The uniform scale that is applied along all axis.</param>
            <param name="result">When the method completes, contains the created scaling matrix.</param>
        </member>
        <member name="M:SharpDX.Matrix.Scaling(System.Single)">
            <summary>
            Creates a matrix that uniformally scales along all three axis.
            </summary>
            <param name="scale">The uniform scale that is applied along all axis.</param>
            <returns>The created scaling matrix.</returns>
        </member>
        <member name="M:SharpDX.Matrix.RotationX(System.Single,SharpDX.Matrix@)">
            <summary>
            Creates a matrix that rotates around the x-axis.
            </summary>
            <param name="angle">Angle of rotation in radians. Angles are measured clockwise when looking along the rotation axis toward the origin.</param>
            <param name="result">When the method completes, contains the created rotation matrix.</param>
        </member>
        <member name="M:SharpDX.Matrix.RotationX(System.Single)">
            <summary>
            Creates a matrix that rotates around the x-axis.
            </summary>
            <param name="angle">Angle of rotation in radians. Angles are measured clockwise when looking along the rotation axis toward the origin.</param>
            <returns>The created rotation matrix.</returns>
        </member>
        <member name="M:SharpDX.Matrix.RotationY(System.Single,SharpDX.Matrix@)">
            <summary>
            Creates a matrix that rotates around the y-axis.
            </summary>
            <param name="angle">Angle of rotation in radians. Angles are measured clockwise when looking along the rotation axis toward the origin.</param>
            <param name="result">When the method completes, contains the created rotation matrix.</param>
        </member>
        <member name="M:SharpDX.Matrix.RotationY(System.Single)">
            <summary>
            Creates a matrix that rotates around the y-axis.
            </summary>
            <param name="angle">Angle of rotation in radians. Angles are measured clockwise when looking along the rotation axis toward the origin.</param>
            <returns>The created rotation matrix.</returns>
        </member>
        <member name="M:SharpDX.Matrix.RotationZ(System.Single,SharpDX.Matrix@)">
            <summary>
            Creates a matrix that rotates around the z-axis.
            </summary>
            <param name="angle">Angle of rotation in radians. Angles are measured clockwise when looking along the rotation axis toward the origin.</param>
            <param name="result">When the method completes, contains the created rotation matrix.</param>
        </member>
        <member name="M:SharpDX.Matrix.RotationZ(System.Single)">
            <summary>
            Creates a matrix that rotates around the z-axis.
            </summary>
            <param name="angle">Angle of rotation in radians. Angles are measured clockwise when looking along the rotation axis toward the origin.</param>
            <returns>The created rotation matrix.</returns>
        </member>
        <member name="M:SharpDX.Matrix.RotationAxis(SharpDX.Vector3@,System.Single,SharpDX.Matrix@)">
            <summary>
            Creates a matrix that rotates around an arbitary axis.
            </summary>
            <param name="axis">The axis around which to rotate. This parameter is assumed to be normalized.</param>
            <param name="angle">Angle of rotation in radians. Angles are measured clockwise when looking along the rotation axis toward the origin.</param>
            <param name="result">When the method completes, contains the created rotation matrix.</param>
        </member>
        <member name="M:SharpDX.Matrix.RotationAxis(SharpDX.Vector3,System.Single)">
            <summary>
            Creates a matrix that rotates around an arbitary axis.
            </summary>
            <param name="axis">The axis around which to rotate. This parameter is assumed to be normalized.</param>
            <param name="angle">Angle of rotation in radians. Angles are measured clockwise when looking along the rotation axis toward the origin.</param>
            <returns>The created rotation matrix.</returns>
        </member>
        <member name="M:SharpDX.Matrix.RotationQuaternion(SharpDX.Quaternion@,SharpDX.Matrix@)">
            <summary>
            Creates a rotation matrix from a quaternion.
            </summary>
            <param name="rotation">The quaternion to use to build the matrix.</param>
            <param name="result">The created rotation matrix.</param>
        </member>
        <member name="M:SharpDX.Matrix.RotationQuaternion(SharpDX.Quaternion)">
            <summary>
            Creates a rotation matrix from a quaternion.
            </summary>
            <param name="rotation">The quaternion to use to build the matrix.</param>
            <returns>The created rotation matrix.</returns>
        </member>
        <member name="M:SharpDX.Matrix.RotationYawPitchRoll(System.Single,System.Single,System.Single,SharpDX.Matrix@)">
            <summary>
            Creates a rotation matrix with a specified yaw, pitch, and roll.
            </summary>
            <param name="yaw">Yaw around the y-axis, in radians.</param>
            <param name="pitch">Pitch around the x-axis, in radians.</param>
            <param name="roll">Roll around the z-axis, in radians.</param>
            <param name="result">When the method completes, contains the created rotation matrix.</param>
        </member>
        <member name="M:SharpDX.Matrix.RotationYawPitchRoll(System.Single,System.Single,System.Single)">
            <summary>
            Creates a rotation matrix with a specified yaw, pitch, and roll.
            </summary>
            <param name="yaw">Yaw around the y-axis, in radians.</param>
            <param name="pitch">Pitch around the x-axis, in radians.</param>
            <param name="roll">Roll around the z-axis, in radians.</param>
            <returns>The created rotation matrix.</returns>
        </member>
        <member name="M:SharpDX.Matrix.Translation(SharpDX.Vector3@,SharpDX.Matrix@)">
            <summary>
            Creates a translation matrix using the specified offsets.
            </summary>
            <param name="value">The offset for all three coordinate planes.</param>
            <param name="result">When the method completes, contains the created translation matrix.</param>
        </member>
        <member name="M:SharpDX.Matrix.Translation(SharpDX.Vector3)">
            <summary>
            Creates a translation matrix using the specified offsets.
            </summary>
            <param name="value">The offset for all three coordinate planes.</param>
            <returns>The created translation matrix.</returns>
        </member>
        <member name="M:SharpDX.Matrix.Translation(System.Single,System.Single,System.Single,SharpDX.Matrix@)">
            <summary>
            Creates a translation matrix using the specified offsets.
            </summary>
            <param name="x">X-coordinate offset.</param>
            <param name="y">Y-coordinate offset.</param>
            <param name="z">Z-coordinate offset.</param>
            <param name="result">When the method completes, contains the created translation matrix.</param>
        </member>
        <member name="M:SharpDX.Matrix.Translation(System.Single,System.Single,System.Single)">
            <summary>
            Creates a translation matrix using the specified offsets.
            </summary>
            <param name="x">X-coordinate offset.</param>
            <param name="y">Y-coordinate offset.</param>
            <param name="z">Z-coordinate offset.</param>
            <returns>The created translation matrix.</returns>
        </member>
        <member name="M:SharpDX.Matrix.AffineTransformation(System.Single,SharpDX.Quaternion@,SharpDX.Vector3@,SharpDX.Matrix@)">
            <summary>
            Creates a 3D affine transformation matrix.
            </summary>
            <param name="scaling">Scaling factor.</param>
            <param name="rotation">The rotation of the transformation.</param>
            <param name="translation">The translation factor of the transformation.</param>
            <param name="result">When the method completes, contains the created affine transformation matrix.</param>
        </member>
        <member name="M:SharpDX.Matrix.AffineTransformation(System.Single,SharpDX.Quaternion,SharpDX.Vector3)">
            <summary>
            Creates a 3D affine transformation matrix.
            </summary>
            <param name="scaling">Scaling factor.</param>
            <param name="rotation">The rotation of the transformation.</param>
            <param name="translation">The translation factor of the transformation.</param>
            <returns>The created affine transformation matrix.</returns>
        </member>
        <member name="M:SharpDX.Matrix.AffineTransformation(System.Single,SharpDX.Vector3@,SharpDX.Quaternion@,SharpDX.Vector3@,SharpDX.Matrix@)">
            <summary>
            Creates a 3D affine transformation matrix.
            </summary>
            <param name="scaling">Scaling factor.</param>
            <param name="rotationCenter">The center of the rotation.</param>
            <param name="rotation">The rotation of the transformation.</param>
            <param name="translation">The translation factor of the transformation.</param>
            <param name="result">When the method completes, contains the created affine transformation matrix.</param>
        </member>
        <member name="M:SharpDX.Matrix.AffineTransformation(System.Single,SharpDX.Vector3,SharpDX.Quaternion,SharpDX.Vector3)">
            <summary>
            Creates a 3D affine transformation matrix.
            </summary>
            <param name="scaling">Scaling factor.</param>
            <param name="rotationCenter">The center of the rotation.</param>
            <param name="rotation">The rotation of the transformation.</param>
            <param name="translation">The translation factor of the transformation.</param>
            <returns>The created affine transformation matrix.</returns>
        </member>
        <member name="M:SharpDX.Matrix.AffineTransformation2D(System.Single,System.Single,SharpDX.Vector2@,SharpDX.Matrix@)">
            <summary>
            Creates a 2D affine transformation matrix.
            </summary>
            <param name="scaling">Scaling factor.</param>
            <param name="rotation">The rotation of the transformation.</param>
            <param name="translation">The translation factor of the transformation.</param>
            <param name="result">When the method completes, contains the created affine transformation matrix.</param>
        </member>
        <member name="M:SharpDX.Matrix.AffineTransformation2D(System.Single,System.Single,SharpDX.Vector2)">
            <summary>
            Creates a 2D affine transformation matrix.
            </summary>
            <param name="scaling">Scaling factor.</param>
            <param name="rotation">The rotation of the transformation.</param>
            <param name="translation">The translation factor of the transformation.</param>
            <returns>The created affine transformation matrix.</returns>
        </member>
        <member name="M:SharpDX.Matrix.AffineTransformation2D(System.Single,SharpDX.Vector2@,System.Single,SharpDX.Vector2@,SharpDX.Matrix@)">
            <summary>
            Creates a 2D affine transformation matrix.
            </summary>
            <param name="scaling">Scaling factor.</param>
            <param name="rotationCenter">The center of the rotation.</param>
            <param name="rotation">The rotation of the transformation.</param>
            <param name="translation">The translation factor of the transformation.</param>
            <param name="result">When the method completes, contains the created affine transformation matrix.</param>
        </member>
        <member name="M:SharpDX.Matrix.AffineTransformation2D(System.Single,SharpDX.Vector2,System.Single,SharpDX.Vector2)">
            <summary>
            Creates a 2D affine transformation matrix.
            </summary>
            <param name="scaling">Scaling factor.</param>
            <param name="rotationCenter">The center of the rotation.</param>
            <param name="rotation">The rotation of the transformation.</param>
            <param name="translation">The translation factor of the transformation.</param>
            <returns>The created affine transformation matrix.</returns>
        </member>
        <member name="M:SharpDX.Matrix.Transformation(SharpDX.Vector3@,SharpDX.Quaternion@,SharpDX.Vector3@,SharpDX.Vector3@,SharpDX.Quaternion@,SharpDX.Vector3@,SharpDX.Matrix@)">
            <summary>
            Creates a transformation matrix.
            </summary>
            <param name="scalingCenter">Center point of the scaling operation.</param>
            <param name="scalingRotation">Scaling rotation amount.</param>
            <param name="scaling">Scaling factor.</param>
            <param name="rotationCenter">The center of the rotation.</param>
            <param name="rotation">The rotation of the transformation.</param>
            <param name="translation">The translation factor of the transformation.</param>
            <param name="result">When the method completes, contains the created transformation matrix.</param>
        </member>
        <member name="M:SharpDX.Matrix.Transformation(SharpDX.Vector3,SharpDX.Quaternion,SharpDX.Vector3,SharpDX.Vector3,SharpDX.Quaternion,SharpDX.Vector3)">
            <summary>
            Creates a transformation matrix.
            </summary>
            <param name="scalingCenter">Center point of the scaling operation.</param>
            <param name="scalingRotation">Scaling rotation amount.</param>
            <param name="scaling">Scaling factor.</param>
            <param name="rotationCenter">The center of the rotation.</param>
            <param name="rotation">The rotation of the transformation.</param>
            <param name="translation">The translation factor of the transformation.</param>
            <returns>The created transformation matrix.</returns>
        </member>
        <member name="M:SharpDX.Matrix.Transformation2D(SharpDX.Vector2@,System.Single,SharpDX.Vector2@,SharpDX.Vector2@,System.Single,SharpDX.Vector2@,SharpDX.Matrix@)">
            <summary>
            Creates a 2D transformation matrix.
            </summary>
            <param name="scalingCenter">Center point of the scaling operation.</param>
            <param name="scalingRotation">Scaling rotation amount.</param>
            <param name="scaling">Scaling factor.</param>
            <param name="rotationCenter">The center of the rotation.</param>
            <param name="rotation">The rotation of the transformation.</param>
            <param name="translation">The translation factor of the transformation.</param>
            <param name="result">When the method completes, contains the created transformation matrix.</param>
        </member>
        <member name="M:SharpDX.Matrix.Transformation2D(SharpDX.Vector2,System.Single,SharpDX.Vector2,SharpDX.Vector2,System.Single,SharpDX.Vector2)">
            <summary>
            Creates a 2D transformation matrix.
            </summary>
            <param name="scalingCenter">Center point of the scaling operation.</param>
            <param name="scalingRotation">Scaling rotation amount.</param>
            <param name="scaling">Scaling factor.</param>
            <param name="rotationCenter">The center of the rotation.</param>
            <param name="rotation">The rotation of the transformation.</param>
            <param name="translation">The translation factor of the transformation.</param>
            <returns>The created transformation matrix.</returns>
        </member>
        <member name="M:SharpDX.Matrix.op_Addition(SharpDX.Matrix,SharpDX.Matrix)">
            <summary>
            Adds two matricies.
            </summary>
            <param name="left">The first matrix to add.</param>
            <param name="right">The second matrix to add.</param>
            <returns>The sum of the two matricies.</returns>
        </member>
        <member name="M:SharpDX.Matrix.op_UnaryPlus(SharpDX.Matrix)">
            <summary>
            Assert a matrix (return it unchanged).
            </summary>
            <param name="value">The matrix to assert (unchange).</param>
            <returns>The asserted (unchanged) matrix.</returns>
        </member>
        <member name="M:SharpDX.Matrix.op_Subtraction(SharpDX.Matrix,SharpDX.Matrix)">
            <summary>
            Subtracts two matricies.
            </summary>
            <param name="left">The first matrix to subtract.</param>
            <param name="right">The second matrix to subtract.</param>
            <returns>The difference between the two matricies.</returns>
        </member>
        <member name="M:SharpDX.Matrix.op_UnaryNegation(SharpDX.Matrix)">
            <summary>
            Negates a matrix.
            </summary>
            <param name="value">The matrix to negate.</param>
            <returns>The negated matrix.</returns>
        </member>
        <member name="M:SharpDX.Matrix.op_Multiply(System.Single,SharpDX.Matrix)">
            <summary>
            Scales a matrix by a given value.
            </summary>
            <param name="right">The matrix to scale.</param>
            <param name="left">The amount by which to scale.</param>
            <returns>The scaled matrix.</returns>
        </member>
        <member name="M:SharpDX.Matrix.op_Multiply(SharpDX.Matrix,System.Single)">
            <summary>
            Scales a matrix by a given value.
            </summary>
            <param name="left">The matrix to scale.</param>
            <param name="right">The amount by which to scale.</param>
            <returns>The scaled matrix.</returns>
        </member>
        <member name="M:SharpDX.Matrix.op_Multiply(SharpDX.Matrix,SharpDX.Matrix)">
            <summary>
            Multiplies two matricies.
            </summary>
            <param name="left">The first matrix to multiply.</param>
            <param name="right">The second matrix to multiply.</param>
            <returns>The product of the two matricies.</returns>
        </member>
        <member name="M:SharpDX.Matrix.op_Division(SharpDX.Matrix,System.Single)">
            <summary>
            Scales a matrix by a given value.
            </summary>
            <param name="left">The matrix to scale.</param>
            <param name="right">The amount by which to scale.</param>
            <returns>The scaled matrix.</returns>
        </member>
        <member name="M:SharpDX.Matrix.op_Division(SharpDX.Matrix,SharpDX.Matrix)">
            <summary>
            Divides two matricies.
            </summary>
            <param name="left">The first matrix to divide.</param>
            <param name="right">The second matrix to divide.</param>
            <returns>The quotient of the two matricies.</returns>
        </member>
        <member name="M:SharpDX.Matrix.op_Equality(SharpDX.Matrix,SharpDX.Matrix)">
            <summary>
            Tests for equality between two objects.
            </summary>
            <param name="left">The first value to compare.</param>
            <param name="right">The second value to compare.</param>
            <returns><c>true</c> if <paramref name="left"/> has the same value as <paramref name="right"/>; otherwise, <c>false</c>.</returns>
        </member>
        <member name="M:SharpDX.Matrix.op_Inequality(SharpDX.Matrix,SharpDX.Matrix)">
            <summary>
            Tests for inequality between two objects.
            </summary>
            <param name="left">The first value to compare.</param>
            <param name="right">The second value to compare.</param>
            <returns><c>true</c> if <paramref name="left"/> has a different value than <paramref name="right"/>; otherwise, <c>false</c>.</returns>
        </member>
        <member name="M:SharpDX.Matrix.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.Matrix.ToString(System.String)">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <param name="format">The format.</param>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.Matrix.ToString(System.IFormatProvider)">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <param name="formatProvider">The format provider.</param>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.Matrix.ToString(System.String,System.IFormatProvider)">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <param name="format">The format.</param>
            <param name="formatProvider">The format provider.</param>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.Matrix.GetHashCode">
            <summary>
            Returns a hash code for this instance.
            </summary>
            <returns>
            A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. 
            </returns>
        </member>
        <member name="M:SharpDX.Matrix.Equals(SharpDX.Matrix)">
            <summary>
            Determines whether the specified <see cref="T:SharpDX.Matrix"/> is equal to this instance.
            </summary>
            <param name="other">The <see cref="T:SharpDX.Matrix"/> to compare with this instance.</param>
            <returns>
            <c>true</c> if the specified <see cref="T:SharpDX.Matrix"/> is equal to this instance; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="M:SharpDX.Matrix.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to this instance.
            </summary>
            <param name="value">The <see cref="T:System.Object"/> to compare with this instance.</param>
            <returns>
            <c>true</c> if the specified <see cref="T:System.Object"/> is equal to this instance; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="P:SharpDX.Matrix.Row1">
            <summary>
            Gets or sets the first row in the matrix; that is M11, M12, M13, and M14.
            </summary>
        </member>
        <member name="P:SharpDX.Matrix.Row2">
            <summary>
            Gets or sets the second row in the matrix; that is M21, M22, M23, and M24.
            </summary>
        </member>
        <member name="P:SharpDX.Matrix.Row3">
            <summary>
            Gets or sets the third row in the matrix; that is M31, M32, M33, and M34.
            </summary>
        </member>
        <member name="P:SharpDX.Matrix.Row4">
            <summary>
            Gets or sets the fourth row in the matrix; that is M41, M42, M43, and M44.
            </summary>
        </member>
        <member name="P:SharpDX.Matrix.Column1">
            <summary>
            Gets or sets the first column in the matrix; that is M11, M21, M31, and M41.
            </summary>
        </member>
        <member name="P:SharpDX.Matrix.Column2">
            <summary>
            Gets or sets the second column in the matrix; that is M12, M22, M32, and M42.
            </summary>
        </member>
        <member name="P:SharpDX.Matrix.Column3">
            <summary>
            Gets or sets the third column in the matrix; that is M13, M23, M33, and M43.
            </summary>
        </member>
        <member name="P:SharpDX.Matrix.Column4">
            <summary>
            Gets or sets the fourth column in the matrix; that is M14, M24, M34, and M44.
            </summary>
        </member>
        <member name="P:SharpDX.Matrix.TranslationVector">
            <summary>
            Gets or sets the translation of the matrix; that is M41, M42, and M43.
            </summary>
        </member>
        <member name="P:SharpDX.Matrix.ScaleVector">
            <summary>
            Gets or sets the scale of the matrix; that is M11, M22, and M33.
            </summary>
        </member>
        <member name="P:SharpDX.Matrix.IsIdentity">
            <summary>
            Gets a value indicating whether this instance is an identity matrix.
            </summary>
            <value>
            <c>true</c> if this instance is an identity matrix; otherwise, <c>false</c>.
            </value>
        </member>
        <member name="P:SharpDX.Matrix.Item(System.Int32)">
            <summary>
            Gets or sets the component at the specified index.
            </summary>
            <value>The value of the matrix component, depending on the index.</value>
            <param name="index">The zero-based index of the component to access.</param>
            <returns>The value of the component at the specified index.</returns>
            <exception cref="T:System.ArgumentOutOfRangeException">Thrown when the <paramref name="index"/> is out of the range [0, 15].</exception>
        </member>
        <member name="P:SharpDX.Matrix.Item(System.Int32,System.Int32)">
            <summary>
            Gets or sets the component at the specified index.
            </summary>
            <value>The value of the matrix component, depending on the index.</value>
            <param name="row">The row of the matrix to access.</param>
            <param name="column">The column of the matrix to access.</param>
            <returns>The value of the component at the specified index.</returns>
            <exception cref="T:System.ArgumentOutOfRangeException">Thrown when the <paramref name="row"/> or <paramref name="column"/>is out of the range [0, 3].</exception>
        </member>
        <member name="T:SharpDX.Multimedia.SoundStream">
            <summary>
            Generic sound input stream supporting WAV (Pcm,Float), ADPCM, xWMA sound file formats.
            </summary>
        </member>
        <member name="M:SharpDX.Multimedia.SoundStream.#ctor(System.IO.Stream)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Multimedia.SoundStream"/> class.
            </summary>
            <param name="stream">The sound stream.</param>
        </member>
        <member name="M:SharpDX.Multimedia.SoundStream.Initialize(System.IO.Stream)">
            <summary>
            Initializes the specified stream.
            </summary>
            <param name="stream">The stream.</param>
        </member>
        <member name="M:SharpDX.Multimedia.SoundStream.ToDataStream">
            <summary>
            Converts this stream to a DataStream by loading all the data from the source stream.
            </summary>
            <returns></returns>
        </member>
        <member name="M:SharpDX.Multimedia.SoundStream.op_Implicit(SharpDX.Multimedia.SoundStream)~SharpDX.DataStream">
            <summary>
            Performs an implicit conversion from <see cref="T:SharpDX.Multimedia.SoundStream"/> to <see cref="T:SharpDX.DataStream"/>.
            </summary>
            <param name="stream">The stream.</param>
            <returns>
            The result of the conversion.
            </returns>
        </member>
        <member name="M:SharpDX.Multimedia.SoundStream.Flush">
            <summary>
            When overridden in a derived class, clears all buffers for this stream and causes any buffered data to be written to the underlying device.
            </summary>
            <exception cref="T:System.IO.IOException">
            An I/O error occurs.
              </exception>
        </member>
        <member name="M:SharpDX.Multimedia.SoundStream.Seek(System.Int64,System.IO.SeekOrigin)">
            <summary>
            When overridden in a derived class, sets the position within the current stream.
            </summary>
            <param name="offset">A byte offset relative to the <paramref name="origin"/> parameter.</param>
            <param name="origin">A value of type <see cref="T:System.IO.SeekOrigin"/> indicating the reference point used to obtain the new position.</param>
            <returns>
            The new position within the current stream.
            </returns>
            <exception cref="T:System.IO.IOException">
            An I/O error occurs.
              </exception>
              
            <exception cref="T:System.NotSupportedException">
            The stream does not support seeking, such as if the stream is constructed from a pipe or console output.
              </exception>
              
            <exception cref="T:System.ObjectDisposedException">
            Methods were called after the stream was closed.
              </exception>
        </member>
        <member name="M:SharpDX.Multimedia.SoundStream.SetLength(System.Int64)">
            <summary>
            When overridden in a derived class, sets the length of the current stream.
            </summary>
            <param name="value">The desired length of the current stream in bytes.</param>
            <exception cref="T:System.IO.IOException">
            An I/O error occurs.
              </exception>
              
            <exception cref="T:System.NotSupportedException">
            The stream does not support both writing and seeking, such as if the stream is constructed from a pipe or console output.
              </exception>
              
            <exception cref="T:System.ObjectDisposedException">
            Methods were called after the stream was closed.
              </exception>
        </member>
        <member name="M:SharpDX.Multimedia.SoundStream.Read(System.Byte[],System.Int32,System.Int32)">
            <summary>
            When overridden in a derived class, reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read.
            </summary>
            <param name="buffer">An array of bytes. When this method returns, the buffer contains the specified byte array with the values between <paramref name="offset"/> and (<paramref name="offset"/> + <paramref name="count"/> - 1) replaced by the bytes read from the current source.</param>
            <param name="offset">The zero-based byte offset in <paramref name="buffer"/> at which to begin storing the data read from the current stream.</param>
            <param name="count">The maximum number of bytes to be read from the current stream.</param>
            <returns>
            The total number of bytes read into the buffer. This can be less than the number of bytes requested if that many bytes are not currently available, or zero (0) if the end of the stream has been reached.
            </returns>
            <exception cref="T:System.ArgumentException">
            The sum of <paramref name="offset"/> and <paramref name="count"/> is larger than the buffer length.
              </exception>
              
            <exception cref="T:System.ArgumentNullException">
              <paramref name="buffer"/> is null.
              </exception>
              
            <exception cref="T:System.ArgumentOutOfRangeException">
              <paramref name="offset"/> or <paramref name="count"/> is negative.
              </exception>
              
            <exception cref="T:System.IO.IOException">
            An I/O error occurs.
              </exception>
              
            <exception cref="T:System.NotSupportedException">
            The stream does not support reading.
              </exception>
              
            <exception cref="T:System.ObjectDisposedException">
            Methods were called after the stream was closed.
              </exception>
        </member>
        <member name="M:SharpDX.Multimedia.SoundStream.Write(System.Byte[],System.Int32,System.Int32)">
            <summary>
            When overridden in a derived class, writes a sequence of bytes to the current stream and advances the current position within this stream by the number of bytes written.
            </summary>
            <param name="buffer">An array of bytes. This method copies <paramref name="count"/> bytes from <paramref name="buffer"/> to the current stream.</param>
            <param name="offset">The zero-based byte offset in <paramref name="buffer"/> at which to begin copying bytes to the current stream.</param>
            <param name="count">The number of bytes to be written to the current stream.</param>
            <exception cref="T:System.ArgumentException">
            The sum of <paramref name="offset"/> and <paramref name="count"/> is greater than the buffer length.
              </exception>
              
            <exception cref="T:System.ArgumentNullException">
              <paramref name="buffer"/> is null.
              </exception>
              
            <exception cref="T:System.ArgumentOutOfRangeException">
              <paramref name="offset"/> or <paramref name="count"/> is negative.
              </exception>
              
            <exception cref="T:System.IO.IOException">
            An I/O error occurs.
              </exception>
              
            <exception cref="T:System.NotSupportedException">
            The stream does not support writing.
              </exception>
              
            <exception cref="T:System.ObjectDisposedException">
            Methods were called after the stream was closed.
              </exception>
        </member>
        <member name="P:SharpDX.Multimedia.SoundStream.DecodedPacketsInfo">
            <summary>
            Gets the decoded packets info.
            </summary>
            <remarks>
            This property is only valid for XWMA stream.</remarks>
        </member>
        <member name="P:SharpDX.Multimedia.SoundStream.Format">
            <summary>
            Gets the wave format of this instance.
            </summary>
        </member>
        <member name="P:SharpDX.Multimedia.SoundStream.CanRead">
            <summary>
            When overridden in a derived class, gets a value indicating whether the current stream supports reading.
            </summary>
            <returns>true if the stream supports reading; otherwise, false.
              </returns>
        </member>
        <member name="P:SharpDX.Multimedia.SoundStream.CanSeek">
            <summary>
            When overridden in a derived class, gets a value indicating whether the current stream supports seeking.
            </summary>
            <returns>true if the stream supports seeking; otherwise, false.
              </returns>
        </member>
        <member name="P:SharpDX.Multimedia.SoundStream.CanWrite">
            <summary>
            When overridden in a derived class, gets a value indicating whether the current stream supports writing.
            </summary>
            <returns>true if the stream supports writing; otherwise, false.
              </returns>
        </member>
        <member name="P:SharpDX.Multimedia.SoundStream.Position">
            <summary>
            When overridden in a derived class, gets or sets the position within the current stream.
            </summary>
            <returns>
            The current position within the stream.
              </returns>
              
            <exception cref="T:System.IO.IOException">
            An I/O error occurs.
              </exception>
              
            <exception cref="T:System.NotSupportedException">
            The stream does not support seeking.
              </exception>
              
            <exception cref="T:System.ObjectDisposedException">
            Methods were called after the stream was closed.
              </exception>
        </member>
        <member name="P:SharpDX.Multimedia.SoundStream.Length">
            <summary>
            When overridden in a derived class, gets the length in bytes of the stream.
            </summary>
            <returns>
            A long value representing the length of the stream in bytes.
              </returns>
              
            <exception cref="T:System.NotSupportedException">
            A class derived from Stream does not support seeking.
              </exception>
              
            <exception cref="T:System.ObjectDisposedException">
            Methods were called after the stream was closed.
              </exception>
        </member>
        <member name="T:SharpDX.Multimedia.WaveFormatAdpcm">
            <summary>
            WaveFormatAdpcm
            http://msdn.microsoft.com/en-us/library/microsoft.directx_sdk.xaudio2.adpcmwaveformat%28v=vs.85%29.aspx
            Additional documentation: http://icculus.org/SDL_sound/downloads/external_documentation/wavecomp.htm
            </summary>
            <unmanaged>WAVEFORMATADPCM</unmanaged>
        </member>
        <member name="T:SharpDX.Multimedia.WaveFormat">
            <summary>
            Represents a Wave file format
            </summary>
            <unmanaged>WAVEFORMATEX</unmanaged>
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormat.waveFormatTag">
            <summary>format type</summary>
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormat.channels">
            <summary>number of channels</summary>
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormat.sampleRate">
            <summary>sample rate</summary>
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormat.averageBytesPerSecond">
            <summary>for buffer estimation</summary>
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormat.blockAlign">
            <summary>block size of data</summary>
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormat.bitsPerSample">
            <summary>number of bits per sample of mono data</summary>
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormat.extraSize">
            <summary>number of following bytes</summary>
        </member>
        <member name="M:SharpDX.Multimedia.WaveFormat.#ctor">
            <summary>
            Creates a new PCM 44.1Khz stereo 16 bit format
            </summary>
        </member>
        <member name="M:SharpDX.Multimedia.WaveFormat.#ctor(System.Int32,System.Int32)">
            <summary>
            Creates a new 16 bit wave format with the specified sample
            rate and channel count
            </summary>
            <param name="sampleRate">Sample Rate</param>
            <param name="channels">Number of channels</param>
        </member>
        <member name="M:SharpDX.Multimedia.WaveFormat.ConvertLatencyToByteSize(System.Int32)">
            <summary>
            Gets the size of a wave buffer equivalent to the latency in milliseconds.
            </summary>
            <param name="milliseconds">The milliseconds.</param>
            <returns></returns>
        </member>
        <member name="M:SharpDX.Multimedia.WaveFormat.CreateCustomFormat(SharpDX.Multimedia.WaveFormatEncoding,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
            <summary>
            Creates a WaveFormat with custom members
            </summary>
            <param name="tag">The encoding</param>
            <param name="sampleRate">Sample Rate</param>
            <param name="channels">Number of channels</param>
            <param name="averageBytesPerSecond">Average Bytes Per Second</param>
            <param name="blockAlign">Block Align</param>
            <param name="bitsPerSample">Bits Per Sample</param>
            <returns></returns>
        </member>
        <member name="M:SharpDX.Multimedia.WaveFormat.CreateALawFormat(System.Int32,System.Int32)">
            <summary>
            Creates an A-law wave format
            </summary>
            <param name="sampleRate">Sample Rate</param>
            <param name="channels">Number of Channels</param>
            <returns>Wave Format</returns>
        </member>
        <member name="M:SharpDX.Multimedia.WaveFormat.CreateMuLawFormat(System.Int32,System.Int32)">
            <summary>
            Creates a Mu-law wave format
            </summary>
            <param name="sampleRate">Sample Rate</param>
            <param name="channels">Number of Channels</param>
            <returns>Wave Format</returns>
        </member>
        <member name="M:SharpDX.Multimedia.WaveFormat.#ctor(System.Int32,System.Int32,System.Int32)">
            <summary>
            Creates a new PCM format with the specified sample rate, bit depth and channels
            </summary>
        </member>
        <member name="M:SharpDX.Multimedia.WaveFormat.CreateIeeeFloatWaveFormat(System.Int32,System.Int32)">
            <summary>
            Creates a new 32 bit IEEE floating point wave format
            </summary>
            <param name="sampleRate">sample rate</param>
            <param name="channels">number of channels</param>
        </member>
        <member name="M:SharpDX.Multimedia.WaveFormat.MarshalFrom(System.Byte[])">
            <summary>
            Helper function to retrieve a WaveFormat structure from a pointer
            </summary>
            <param name="rawdata">Buffer to the WaveFormat rawdata</param>
            <returns>WaveFormat structure</returns>
        </member>
        <member name="M:SharpDX.Multimedia.WaveFormat.MarshalFrom(System.IntPtr)">
            <summary>
            Helper function to retrieve a WaveFormat structure from a pointer
            </summary>
            <param name="pointer">Pointer to the WaveFormat rawdata</param>
            <returns>WaveFormat structure</returns>
        </member>
        <member name="M:SharpDX.Multimedia.WaveFormat.MarshalToPtr(SharpDX.Multimedia.WaveFormat)">
            <summary>
            Helper function to marshal WaveFormat to an IntPtr
            </summary>
            <param name="format">WaveFormat</param>
            <returns>IntPtr to WaveFormat structure (needs to be freed by callee)</returns>
        </member>
        <member name="M:SharpDX.Multimedia.WaveFormat.#ctor(System.IO.BinaryReader)">
            <summary>
            Reads a new WaveFormat object from a stream
            </summary>
            <param name="br">A binary reader that wraps the stream</param>
        </member>
        <member name="M:SharpDX.Multimedia.WaveFormat.ToString">
            <summary>
            Reports this WaveFormat as a string
            </summary>
            <returns>String describing the wave format</returns>
        </member>
        <member name="M:SharpDX.Multimedia.WaveFormat.Equals(System.Object)">
            <summary>
            Compares with another WaveFormat object
            </summary>
            <param name="obj">Object to compare to</param>
            <returns>True if the objects are the same</returns>
        </member>
        <member name="M:SharpDX.Multimedia.WaveFormat.GetHashCode">
            <summary>
            Provides a Hashcode for this WaveFormat
            </summary>
            <returns>A hashcode</returns>
        </member>
        <member name="P:SharpDX.Multimedia.WaveFormat.Encoding">
            <summary>
            Returns the encoding type used
            </summary>
        </member>
        <member name="P:SharpDX.Multimedia.WaveFormat.Channels">
            <summary>
            Returns the number of channels (1=mono,2=stereo etc)
            </summary>
        </member>
        <member name="P:SharpDX.Multimedia.WaveFormat.SampleRate">
            <summary>
            Returns the sample rate (samples per second)
            </summary>
        </member>
        <member name="P:SharpDX.Multimedia.WaveFormat.AverageBytesPerSecond">
            <summary>
            Returns the average number of bytes used per second
            </summary>
        </member>
        <member name="P:SharpDX.Multimedia.WaveFormat.BlockAlign">
            <summary>
            Returns the block alignment
            </summary>
        </member>
        <member name="P:SharpDX.Multimedia.WaveFormat.BitsPerSample">
            <summary>
            Returns the number of bits per sample (usually 16 or 32, sometimes 24 or 8)
            Can be 0 for some codecs
            </summary>
        </member>
        <member name="P:SharpDX.Multimedia.WaveFormat.ExtraSize">
            <summary>
            Returns the number of extra bytes used by this waveformat. Often 0,
            except for compressed formats which store extra data after the WAVEFORMATEX header
            </summary>
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormat.__Native.extraSize">
            <summary>number of following bytes</summary>
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormat.__PcmNative.waveFormatTag">
            <summary>format type</summary>
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormat.__PcmNative.channels">
            <summary>number of channels</summary>
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormat.__PcmNative.sampleRate">
            <summary>sample rate</summary>
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormat.__PcmNative.averageBytesPerSecond">
            <summary>for buffer estimation</summary>
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormat.__PcmNative.blockAlign">
            <summary>block size of data</summary>
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormat.__PcmNative.bitsPerSample">
            <summary>number of bits per sample of mono data</summary>
        </member>
        <member name="M:SharpDX.Multimedia.WaveFormatAdpcm.#ctor">
            <summary>
            Parameterless constructor for marshalling
            </summary>
        </member>
        <member name="M:SharpDX.Multimedia.WaveFormatAdpcm.#ctor(System.Int32,System.Int32,System.Int32)">
            <summary>
            Creates a new WaveFormatAdpcm for MicrosoftADPCM
            </summary>
            <param name="rate">The rate.</param>
            <param name="channels">The channels.</param>
            <param name="blockAlign">The block align. If 0, then 256 for [0, 11KHz], 512 for ]11KHz, 22Khz], 1024 for ]22Khz, +inf]</param>
        </member>
        <member name="P:SharpDX.Multimedia.WaveFormatAdpcm.SamplesPerBlock">
            <summary>
            Gets or sets the samples per block.
            </summary>
            <value>
            The samples per block.
            </value>
        </member>
        <member name="P:SharpDX.Multimedia.WaveFormatAdpcm.Coefficients1">
            <summary>
            Gets or sets the coefficients.
            </summary>
            <value>
            The coefficients.
            </value>
        </member>
        <member name="P:SharpDX.Multimedia.WaveFormatAdpcm.Coefficients2">
            <summary>
            Gets or sets the coefficients.
            </summary>
            <value>
            The coefficients.
            </value>
        </member>
        <member name="T:SharpDX.Multimedia.FourCC">
            <summary>
            A FourCC descriptor.
            </summary>
        </member>
        <member name="M:SharpDX.Multimedia.FourCC.op_Implicit(SharpDX.Multimedia.FourCC)~System.UInt32">
            <summary>
            Performs an implicit conversion from <see cref="T:SharpDX.Multimedia.FourCC"/> to <see cref="T:System.Int32"/>.
            </summary>
            <param name="d">The d.</param>
            <returns>
            The result of the conversion.
            </returns>
        </member>
        <member name="M:SharpDX.Multimedia.FourCC.op_Implicit(SharpDX.Multimedia.FourCC)~System.String">
            <summary>
            Performs an implicit conversion from <see cref="T:SharpDX.Multimedia.FourCC"/> to <see cref="T:System.String"/>.
            </summary>
            <param name="d">The d.</param>
            <returns>
            The result of the conversion.
            </returns>
        </member>
        <member name="M:SharpDX.Multimedia.FourCC.op_Implicit(System.String)~SharpDX.Multimedia.FourCC">
            <summary>
            Performs an implicit conversion from <see cref="T:System.String"/> to <see cref="T:SharpDX.Multimedia.FourCC"/>.
            </summary>
            <param name="d">The d.</param>
            <returns>
            The result of the conversion.
            </returns>
        </member>
        <member name="M:SharpDX.Multimedia.FourCC.op_Implicit(System.UInt32)~SharpDX.Multimedia.FourCC">
            <summary>
            Performs an implicit conversion from <see cref="T:System.Int32"/> to <see cref="T:SharpDX.Multimedia.FourCC"/>.
            </summary>
            <param name="d">The d.</param>
            <returns>
            The result of the conversion.
            </returns>
        </member>
        <member name="M:SharpDX.Multimedia.FourCC.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.Multimedia.FourCC.FromFourCC(System.UInt32)">
            <summary>
            Converts a FourCC integer to a string
            </summary>
            <param name="fourCC">The FourCC.</param>
            <returns>A FourCC string</returns>
        </member>
        <member name="M:SharpDX.Multimedia.FourCC.ToFourCC(System.String)">
            <summary>
            Convert a FourCC string to int
            </summary>
            <param name="fourCC">The fourCC.</param>
            <returns>an integer version of the FourCC</returns>
        </member>
        <member name="P:SharpDX.Multimedia.FourCC.Value">
            <summary>
            Gets the value.
            </summary>
        </member>
        <member name="T:SharpDX.Multimedia.RiffChunk">
            <summary>
            A chunk of a Riff stream.
            </summary>
        </member>
        <member name="M:SharpDX.Multimedia.RiffChunk.#ctor(System.IO.Stream,SharpDX.Multimedia.FourCC,System.UInt32,System.UInt32,System.Boolean,System.Boolean)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Multimedia.RiffChunk"/> class.
            </summary>
            <param name="stream">The stream holding this chunk</param>
            <param name="type">The type.</param>
            <param name="size">The size.</param>
            <param name="dataPosition">The data offset.</param>
            <param name="isList">if set to <c>true</c> [is list].</param>
            <param name="isHeader">if set to <c>true</c> [is header].</param>
        </member>
        <member name="M:SharpDX.Multimedia.RiffChunk.GetData">
            <summary>
            Gets the raw data contained in this chunk.
            </summary>
            <returns></returns>
        </member>
        <member name="M:SharpDX.Multimedia.RiffChunk.GetDataAs``1">
            <summary>
            Gets structured data contained in this chunk.
            </summary>
            <typeparam name="T">The type of the data to return</typeparam>
            <returns>
            A structure filled with the chunk data
            </returns>
        </member>
        <member name="M:SharpDX.Multimedia.RiffChunk.GetDataAsArray``1">
            <summary>
            Gets structured data contained in this chunk.
            </summary>
            <typeparam name="T">The type of the data to return</typeparam>
            <returns>A structure filled with the chunk data</returns>
        </member>
        <member name="M:SharpDX.Multimedia.RiffChunk.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="P:SharpDX.Multimedia.RiffChunk.Stream">
            <summary>
            Gets the type.
            </summary>
        </member>
        <member name="P:SharpDX.Multimedia.RiffChunk.Type">
            <summary>
            Gets the <see cref="T:SharpDX.Multimedia.FourCC"/> of this chunk.
            </summary>
        </member>
        <member name="P:SharpDX.Multimedia.RiffChunk.Size">
            <summary>
            Gets the size of the data enbedded by this chunk.
            </summary>
        </member>
        <member name="P:SharpDX.Multimedia.RiffChunk.DataPosition">
            <summary>
            Gets the position of the data embedded by this chunk relative to the stream.
            </summary>
        </member>
        <member name="P:SharpDX.Multimedia.RiffChunk.IsList">
            <summary>
            Gets or sets a value indicating whether this instance is a list chunk.
            </summary>
            <value>
              <c>true</c> if this instance is list; otherwise, <c>false</c>.
            </value>
        </member>
        <member name="P:SharpDX.Multimedia.RiffChunk.IsHeader">
            <summary>
            Gets a value indicating whether this instance is a header chunk.
            </summary>
            <value>
              <c>true</c> if this instance is a header; otherwise, <c>false</c>.
            </value>
        </member>
        <member name="T:SharpDX.Multimedia.RiffParser">
            <summary>
            Riff chunk enumerator.
            </summary>
        </member>
        <member name="M:SharpDX.Multimedia.RiffParser.#ctor(System.IO.Stream)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Multimedia.RiffParser"/> class.
            </summary>
            <param name="input">The input.</param>
        </member>
        <member name="M:SharpDX.Multimedia.RiffParser.Dispose">
            <summary>
            Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
            </summary>
        </member>
        <member name="M:SharpDX.Multimedia.RiffParser.MoveNext">
            <summary>
            Advances the enumerator to the next element of the collection.
            </summary>
            <returns>
            true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the collection.
            </returns>
            <exception cref="T:System.InvalidOperationException">
            The collection was modified after the enumerator was created.
              </exception>
        </member>
        <member name="M:SharpDX.Multimedia.RiffParser.Reset">
            <summary>
            Sets the enumerator to its initial position, which is before the first element in the collection.
            </summary>
            <exception cref="T:System.InvalidOperationException">
            The collection was modified after the enumerator was created.
              </exception>
        </member>
        <member name="M:SharpDX.Multimedia.RiffParser.Ascend">
            <summary>
            Ascends to the outer chunk.
            </summary>
        </member>
        <member name="M:SharpDX.Multimedia.RiffParser.Descend">
            <summary>
            Descends to the current chunk.
            </summary>
        </member>
        <member name="M:SharpDX.Multimedia.RiffParser.GetAllChunks">
            <summary>
            Gets all chunks.
            </summary>
            <returns></returns>
        </member>
        <member name="M:SharpDX.Multimedia.RiffParser.GetEnumerator">
            <summary>
            Returns an enumerator that iterates through the collection.
            </summary>
            <returns>
            A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
            </returns>
        </member>
        <member name="P:SharpDX.Multimedia.RiffParser.ChunkStack">
            <summary>
            Gets the current stack of chunks.
            </summary>
        </member>
        <member name="P:SharpDX.Multimedia.RiffParser.Current">
            <summary>
            Gets the element in the collection at the current position of the enumerator.
            </summary>
            <returns>
            The element in the collection at the current position of the enumerator.
              </returns>
        </member>
        <member name="T:SharpDX.Multimedia.SpeakersExtensions">
            <summary>
            Helper class for Speaker mask.
            </summary>
        </member>
        <member name="M:SharpDX.Multimedia.SpeakersExtensions.ToChannelCount(SharpDX.Multimedia.Speakers)">
            <summary>
            Counts the channels from a speaker mask.
            </summary>
            <param name="speakers">The speakers mask.</param>
            <returns></returns>
        </member>
        <member name="T:SharpDX.Multimedia.WaveFormatExtensible">
            <summary>
            WaveFormatExtensible
            http://www.microsoft.com/whdc/device/audio/multichaud.mspx
            </summary>
            <unmanaged>WAVEFORMATEXTENSIBLE</unmanaged>
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatExtensible.GuidSubFormat">
            <summary>
            Guid of the subformat.
            </summary>
        </member>
        <member name="F:SharpDX.Multimedia.WaveFormatExtensible.ChannelMask">
            <summary>
            Speaker configuration
            </summary>
        </member>
        <member name="M:SharpDX.Multimedia.WaveFormatExtensible.#ctor">
            <summary>
            Parameterless constructor for marshalling
            </summary>
        </member>
        <member name="M:SharpDX.Multimedia.WaveFormatExtensible.#ctor(System.Int32,System.Int32,System.Int32)">
            <summary>
            Creates a new WaveFormatExtensible for PCM or IEEE
            </summary>
        </member>
        <member name="M:SharpDX.Multimedia.WaveFormatExtensible.ToString">
            <summary>
            String representation
            </summary>
        </member>
        <member name="T:SharpDX.NamespaceDoc">
            <summary>
            The <see cref="N:SharpDX"/> namespace contains fundamental classes used by SharpDX.
            </summary>
        </member>
        <member name="T:SharpDX.TagAttribute">
            <summary>
            A general purpose tag attribute.
            </summary>
        </member>
        <member name="M:SharpDX.TagAttribute.#ctor(System.String)">
            <summary>
            Initializes a new instance of <see cref="T:SharpDX.TagAttribute"/> class.
            </summary>
            <param name="value"></param>
        </member>
        <member name="P:SharpDX.TagAttribute.Value">
            <summary>
            Gets the value.
            </summary>
        </member>
        <member name="T:SharpDX.Win32Native">
            <summary>
            Internal class to interact with Native Message
            </summary>
        </member>
        <member name="T:SharpDX.Plane">
            <summary>
            Represents a plane in three dimensional space.
            </summary>
        </member>
        <member name="F:SharpDX.Plane.Normal">
            <summary>
            The normal vector of the plane.
            </summary>
        </member>
        <member name="F:SharpDX.Plane.D">
            <summary>
            The distance of the plane along its normal from the origin.
            </summary>
        </member>
        <member name="M:SharpDX.Plane.#ctor(System.Single)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Plane"/> struct.
            </summary>
            <param name="value">The value that will be assigned to all components.</param>
        </member>
        <member name="M:SharpDX.Plane.#ctor(System.Single,System.Single,System.Single,System.Single)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Plane"/> struct.
            </summary>
            <param name="a">The X component of the normal.</param>
            <param name="b">The Y component of the normal.</param>
            <param name="c">The Z component of the normal.</param>
            <param name="d">The distance of the plane along its normal from the origin.</param>
        </member>
        <member name="M:SharpDX.Plane.#ctor(SharpDX.Vector3,SharpDX.Vector3)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Plane" /> class.
            </summary>
            <param name="point">Any point that lies along the plane.</param>
            <param name="normal">The normal vector to the plane.</param>
        </member>
        <member name="M:SharpDX.Plane.#ctor(SharpDX.Vector3,System.Single)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Plane"/> struct.
            </summary>
            <param name="value">The normal of the plane.</param>
            <param name="d">The distance of the plane along its normal from the origin</param>
        </member>
        <member name="M:SharpDX.Plane.#ctor(SharpDX.Vector3,SharpDX.Vector3,SharpDX.Vector3)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Plane"/> struct.
            </summary>
            <param name="point1">First point of a triangle defining the plane.</param>
            <param name="point2">Second point of a triangle defining the plane.</param>
            <param name="point3">Third point of a triangle defining the plane.</param>
        </member>
        <member name="M:SharpDX.Plane.#ctor(System.Single[])">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Plane"/> struct.
            </summary>
            <param name="values">The values to assign to the A, B, C, and D components of the plane. This must be an array with four elements.</param>
            <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="values"/> is <c>null</c>.</exception>
            <exception cref="T:System.ArgumentOutOfRangeException">Thrown when <paramref name="values"/> contains more or less than four elements.</exception>
        </member>
        <member name="M:SharpDX.Plane.Normalize">
            <summary>
            Changes the coefficients of the normal vector of the plane to make it of unit length.
            </summary>
        </member>
        <member name="M:SharpDX.Plane.ToArray">
            <summary>
            Creates an array containing the elements of the plane.
            </summary>
            <returns>A four-element array containing the components of the plane.</returns>
        </member>
        <member name="M:SharpDX.Plane.Intersects(SharpDX.Vector3@)">
            <summary>
            Determines if there is an intersection between the current object and a point.
            </summary>
            <param name="point">The point to test.</param>
            <returns>Whether the two objects intersected.</returns>
        </member>
        <member name="M:SharpDX.Plane.Intersects(SharpDX.Ray@)">
            <summary>
            Determines if there is an intersection between the current object and a <see cref="T:SharpDX.Ray"/>.
            </summary>
            <param name="ray">The ray to test.</param>
            <returns>Whether the two objects intersected.</returns>
        </member>
        <member name="M:SharpDX.Plane.Intersects(SharpDX.Ray@,System.Single@)">
            <summary>
            Determines if there is an intersection between the current object and a <see cref="T:SharpDX.Ray"/>.
            </summary>
            <param name="ray">The ray to test.</param>
            <param name="distance">When the method completes, contains the distance of the intersection,
            or 0 if there was no intersection.</param>
            <returns>Whether the two objects intersected.</returns>
        </member>
        <member name="M:SharpDX.Plane.Intersects(SharpDX.Ray@,SharpDX.Vector3@)">
            <summary>
            Determines if there is an intersection between the current object and a <see cref="T:SharpDX.Ray"/>.
            </summary>
            <param name="ray">The ray to test.</param>
            <param name="point">When the method completes, contains the point of intersection,
            or <see cref="F:SharpDX.Vector3.Zero"/> if there was no intersection.</param>
            <returns>Whether the two objects intersected.</returns>
        </member>
        <member name="M:SharpDX.Plane.Intersects(SharpDX.Plane@)">
            <summary>
            Determines if there is an intersection between the current object and a <see cref="T:SharpDX.Plane"/>.
            </summary>
            <param name="plane">The plane to test.</param>
            <returns>Whether the two objects intersected.</returns>
        </member>
        <member name="M:SharpDX.Plane.Intersects(SharpDX.Plane@,SharpDX.Ray@)">
            <summary>
            Determines if there is an intersection between the current object and a <see cref="T:SharpDX.Plane"/>.
            </summary>
            <param name="plane">The plane to test.</param>
            <param name="line">When the method completes, contains the line of intersection
            as a <see cref="T:SharpDX.Ray"/>, or a zero ray if there was no intersection.</param>
            <returns>Whether the two objects intersected.</returns>
        </member>
        <member name="M:SharpDX.Plane.Intersects(SharpDX.Vector3@,SharpDX.Vector3@,SharpDX.Vector3@)">
            <summary>
            Determines if there is an intersection between the current object and a triangle.
            </summary>
            <param name="vertex1">The first vertex of the triangle to test.</param>
            <param name="vertex2">The second vertex of the triagnle to test.</param>
            <param name="vertex3">The third vertex of the triangle to test.</param>
            <returns>Whether the two objects intersected.</returns>
        </member>
        <member name="M:SharpDX.Plane.Intersects(SharpDX.BoundingBox@)">
            <summary>
            Determines if there is an intersection between the current object and a <see cref="T:SharpDX.BoundingBox"/>.
            </summary>
            <param name="box">The box to test.</param>
            <returns>Whether the two objects intersected.</returns>
        </member>
        <member name="M:SharpDX.Plane.Intersects(SharpDX.BoundingSphere@)">
            <summary>
            Determines if there is an intersection between the current object and a <see cref="T:SharpDX.BoundingSphere"/>.
            </summary>
            <param name="sphere">The sphere to test.</param>
            <returns>Whether the two objects intersected.</returns>
        </member>
        <member name="M:SharpDX.Plane.Multiply(SharpDX.Plane@,System.Single,SharpDX.Plane@)">
            <summary>
            Scales the plane by the given scaling factor.
            </summary>
            <param name="value">The plane to scale.</param>
            <param name="scale">The amount by which to scale the plane.</param>
            <param name="result">When the method completes, contains the scaled plane.</param>
        </member>
        <member name="M:SharpDX.Plane.Multiply(SharpDX.Plane,System.Single)">
            <summary>
            Scales the plane by the given scaling factor.
            </summary>
            <param name="value">The plane to scale.</param>
            <param name="scale">The amount by which to scale the plane.</param>
            <returns>The scaled plane.</returns>
        </member>
        <member name="M:SharpDX.Plane.Dot(SharpDX.Plane@,SharpDX.Vector4@,System.Single@)">
            <summary>
            Calculates the dot product of the specified vector and plane.
            </summary>
            <param name="left">The source plane.</param>
            <param name="right">The source vector.</param>
            <param name="result">When the method completes, contains the dot product of the specified plane and vector.</param>
        </member>
        <member name="M:SharpDX.Plane.Dot(SharpDX.Plane,SharpDX.Vector4)">
            <summary>
            Calculates the dot product of the specified vector and plane.
            </summary>
            <param name="left">The source plane.</param>
            <param name="right">The source vector.</param>
            <returns>The dot product of the specified plane and vector.</returns>
        </member>
        <member name="M:SharpDX.Plane.DotCoordinate(SharpDX.Plane@,SharpDX.Vector3@,System.Single@)">
            <summary>
            Calculates the dot product of a specified vector and the normal of the plane plus the distance value of the plane.
            </summary>
            <param name="left">The source plane.</param>
            <param name="right">The source vector.</param>
            <param name="result">When the method completes, contains the dot product of a specified vector and the normal of the Plane plus the distance value of the plane.</param>
        </member>
        <member name="M:SharpDX.Plane.DotCoordinate(SharpDX.Plane,SharpDX.Vector3)">
            <summary>
            Calculates the dot product of a specified vector and the normal of the plane plus the distance value of the plane.
            </summary>
            <param name="left">The source plane.</param>
            <param name="right">The source vector.</param>
            <returns>The dot product of a specified vector and the normal of the Plane plus the distance value of the plane.</returns>
        </member>
        <member name="M:SharpDX.Plane.DotNormal(SharpDX.Plane@,SharpDX.Vector3@,System.Single@)">
            <summary>
            Calculates the dot product of the specified vector and the normal of the plane.
            </summary>
            <param name="left">The source plane.</param>
            <param name="right">The source vector.</param>
            <param name="result">When the method completes, contains the dot product of the specified vector and the normal of the plane.</param>
        </member>
        <member name="M:SharpDX.Plane.DotNormal(SharpDX.Plane,SharpDX.Vector3)">
            <summary>
            Calculates the dot product of the specified vector and the normal of the plane.
            </summary>
            <param name="left">The source plane.</param>
            <param name="right">The source vector.</param>
            <returns>The dot product of the specified vector and the normal of the plane.</returns>
        </member>
        <member name="M:SharpDX.Plane.Normalize(SharpDX.Plane@,SharpDX.Plane@)">
            <summary>
            Changes the coefficients of the normal vector of the plane to make it of unit length.
            </summary>
            <param name="plane">The source plane.</param>
            <param name="result">When the method completes, contains the normalized plane.</param>
        </member>
        <member name="M:SharpDX.Plane.Normalize(SharpDX.Plane)">
            <summary>
            Changes the coefficients of the normal vector of the plane to make it of unit length.
            </summary>
            <param name="plane">The source plane.</param>
            <returns>The normalized plane.</returns>
        </member>
        <member name="M:SharpDX.Plane.Transform(SharpDX.Plane@,SharpDX.Quaternion@,SharpDX.Plane@)">
            <summary>
            Transforms a normalized plane by a quaternion rotation.
            </summary>
            <param name="plane">The normalized source plane.</param>
            <param name="rotation">The quaternion rotation.</param>
            <param name="result">When the method completes, contains the transformed plane.</param>
        </member>
        <member name="M:SharpDX.Plane.Transform(SharpDX.Plane,SharpDX.Quaternion)">
            <summary>
            Transforms a normalized plane by a quaternion rotation.
            </summary>
            <param name="plane">The normalized source plane.</param>
            <param name="rotation">The quaternion rotation.</param>
            <returns>The transformed plane.</returns>
        </member>
        <member name="M:SharpDX.Plane.Transform(SharpDX.Plane[],SharpDX.Quaternion@)">
            <summary>
            Transforms an array of normalized planes by a quaternion rotation.
            </summary>
            <param name="planes">The array of normalized planes to transform.</param>
            <param name="rotation">The quaternion rotation.</param>
            <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="planes"/> is <c>null</c>.</exception>
        </member>
        <member name="M:SharpDX.Plane.Transform(SharpDX.Plane@,SharpDX.Matrix@,SharpDX.Plane@)">
            <summary>
            Transforms a normalized plane by a matrix.
            </summary>
            <param name="plane">The normalized source plane.</param>
            <param name="transformation">The transformation matrix.</param>
            <param name="result">When the method completes, contains the transformed plane.</param>
        </member>
        <member name="M:SharpDX.Plane.Transform(SharpDX.Plane,SharpDX.Matrix)">
            <summary>
            Transforms a normalized plane by a matrix.
            </summary>
            <param name="plane">The normalized source plane.</param>
            <param name="transformation">The transformation matrix.</param>
            <returns>When the method completes, contains the transformed plane.</returns>
        </member>
        <member name="M:SharpDX.Plane.Transform(SharpDX.Plane[],SharpDX.Matrix@)">
            <summary>
            Transforms an array of normalized planes by a matrix.
            </summary>
            <param name="planes">The array of normalized planes to transform.</param>
            <param name="transformation">The transformation matrix.</param>
            <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="planes"/> is <c>null</c>.</exception>
        </member>
        <member name="M:SharpDX.Plane.op_Multiply(System.Single,SharpDX.Plane)">
            <summary>
            Scales a plane by the given value.
            </summary>
            <param name="scale">The amount by which to scale the plane.</param>
            <param name="plane">The plane to scale.</param>
            <returns>The scaled plane.</returns>
        </member>
        <member name="M:SharpDX.Plane.op_Multiply(SharpDX.Plane,System.Single)">
            <summary>
            Scales a plane by the given value.
            </summary>
            <param name="plane">The plane to scale.</param>
            <param name="scale">The amount by which to scale the plane.</param>
            <returns>The scaled plane.</returns>
        </member>
        <member name="M:SharpDX.Plane.op_Equality(SharpDX.Plane,SharpDX.Plane)">
            <summary>
            Tests for equality between two objects.
            </summary>
            <param name="left">The first value to compare.</param>
            <param name="right">The second value to compare.</param>
            <returns><c>true</c> if <paramref name="left"/> has the same value as <paramref name="right"/>; otherwise, <c>false</c>.</returns>
        </member>
        <member name="M:SharpDX.Plane.op_Inequality(SharpDX.Plane,SharpDX.Plane)">
            <summary>
            Tests for inequality between two objects.
            </summary>
            <param name="left">The first value to compare.</param>
            <param name="right">The second value to compare.</param>
            <returns><c>true</c> if <paramref name="left"/> has a different value than <paramref name="right"/>; otherwise, <c>false</c>.</returns>
        </member>
        <member name="M:SharpDX.Plane.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.Plane.ToString(System.String)">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <param name="format">The format.</param>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.Plane.ToString(System.IFormatProvider)">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <param name="formatProvider">The format provider.</param>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.Plane.ToString(System.String,System.IFormatProvider)">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <param name="format">The format.</param>
            <param name="formatProvider">The format provider.</param>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.Plane.GetHashCode">
            <summary>
            Returns a hash code for this instance.
            </summary>
            <returns>
            A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. 
            </returns>
        </member>
        <member name="M:SharpDX.Plane.Equals(SharpDX.Plane)">
            <summary>
            Determines whether the specified <see cref="T:SharpDX.Vector4"/> is equal to this instance.
            </summary>
            <param name="value">The <see cref="T:SharpDX.Vector4"/> to compare with this instance.</param>
            <returns>
            <c>true</c> if the specified <see cref="T:SharpDX.Vector4"/> is equal to this instance; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="M:SharpDX.Plane.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to this instance.
            </summary>
            <param name="value">The <see cref="T:System.Object"/> to compare with this instance.</param>
            <returns>
            <c>true</c> if the specified <see cref="T:System.Object"/> is equal to this instance; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="P:SharpDX.Plane.Item(System.Int32)">
            <summary>
            Gets or sets the component at the specified index.
            </summary>
            <value>The value of the A, B, C, or D component, depending on the index.</value>
            <param name="index">The index of the component to access. Use 0 for the A component, 1 for the B component, 2 for the C component, and 3 for the D component.</param>
            <returns>The value of the component at the specified index.</returns>
            <exception cref="T:System.ArgumentOutOfRangeException">Thrown when the <paramref name="index"/> is out of the range [0, 3].</exception>
        </member>
        <member name="T:SharpDX.Quaternion">
            <summary>
            Represents a four dimensional mathematical quaternion.
            </summary>
        </member>
        <member name="F:SharpDX.Quaternion.SizeInBytes">
            <summary>
            The size of the <see cref="T:SharpDX.Quaternion"/> type, in bytes.
            </summary>
        </member>
        <member name="F:SharpDX.Quaternion.Zero">
            <summary>
            A <see cref="T:SharpDX.Quaternion"/> with all of its components set to zero.
            </summary>
        </member>
        <member name="F:SharpDX.Quaternion.One">
            <summary>
            A <see cref="T:SharpDX.Quaternion"/> with all of its components set to one.
            </summary>
        </member>
        <member name="F:SharpDX.Quaternion.Identity">
            <summary>
            The identity <see cref="T:SharpDX.Quaternion"/> (0, 0, 0, 1).
            </summary>
        </member>
        <member name="F:SharpDX.Quaternion.X">
            <summary>
            The X component of the quaternion.
            </summary>
        </member>
        <member name="F:SharpDX.Quaternion.Y">
            <summary>
            The Y component of the quaternion.
            </summary>
        </member>
        <member name="F:SharpDX.Quaternion.Z">
            <summary>
            The Z component of the quaternion.
            </summary>
        </member>
        <member name="F:SharpDX.Quaternion.W">
            <summary>
            The W component of the quaternion.
            </summary>
        </member>
        <member name="M:SharpDX.Quaternion.#ctor(System.Single)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Quaternion"/> struct.
            </summary>
            <param name="value">The value that will be assigned to all components.</param>
        </member>
        <member name="M:SharpDX.Quaternion.#ctor(SharpDX.Vector4)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Quaternion"/> struct.
            </summary>
            <param name="value">A vector containing the values with which to initialize the components.</param>
        </member>
        <member name="M:SharpDX.Quaternion.#ctor(SharpDX.Vector3,System.Single)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Quaternion"/> struct.
            </summary>
            <param name="value">A vector containing the values with which to initialize the X, Y, and Z components.</param>
            <param name="w">Initial value for the W component of the quaternion.</param>
        </member>
        <member name="M:SharpDX.Quaternion.#ctor(SharpDX.Vector2,System.Single,System.Single)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Quaternion"/> struct.
            </summary>
            <param name="value">A vector containing the values with which to initialize the X and Y components.</param>
            <param name="z">Initial value for the Z component of the quaternion.</param>
            <param name="w">Initial value for the W component of the quaternion.</param>
        </member>
        <member name="M:SharpDX.Quaternion.#ctor(System.Single,System.Single,System.Single,System.Single)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Quaternion"/> struct.
            </summary>
            <param name="x">Initial value for the X component of the quaternion.</param>
            <param name="y">Initial value for the Y component of the quaternion.</param>
            <param name="z">Initial value for the Z component of the quaternion.</param>
            <param name="w">Initial value for the W component of the quaternion.</param>
        </member>
        <member name="M:SharpDX.Quaternion.#ctor(System.Single[])">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Quaternion"/> struct.
            </summary>
            <param name="values">The values to assign to the X, Y, Z, and W components of the quaternion. This must be an array with four elements.</param>
            <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="values"/> is <c>null</c>.</exception>
            <exception cref="T:System.ArgumentOutOfRangeException">Thrown when <paramref name="values"/> contains more or less than four elements.</exception>
        </member>
        <member name="M:SharpDX.Quaternion.Conjugate">
            <summary>
            Conjugates the quaternion.
            </summary>
        </member>
        <member name="M:SharpDX.Quaternion.Invert">
            <summary>
            Conjugates and renormalizes the quaternion.
            </summary>
        </member>
        <member name="M:SharpDX.Quaternion.Length">
            <summary>
            Calculates the length of the quaternion.
            </summary>
            <returns>The length of the quaternion.</returns>
            <remarks>
            <see cref="M:SharpDX.Quaternion.LengthSquared"/> may be preferred when only the relative length is needed
            and speed is of the essence.
            </remarks>
        </member>
        <member name="M:SharpDX.Quaternion.LengthSquared">
            <summary>
            Calculates the squared length of the quaternion.
            </summary>
            <returns>The squared length of the quaternion.</returns>
            <remarks>
            This method may be preferred to <see cref="M:SharpDX.Quaternion.Length"/> when only a relative length is needed
            and speed is of the essence.
            </remarks>
        </member>
        <member name="M:SharpDX.Quaternion.Normalize">
            <summary>
            Converts the quaternion into a unit quaternion.
            </summary>
        </member>
        <member name="M:SharpDX.Quaternion.ToArray">
            <summary>
            Creates an array containing the elements of the quaternion.
            </summary>
            <returns>A four-element array containing the components of the quaternion.</returns>
        </member>
        <member name="M:SharpDX.Quaternion.Add(SharpDX.Quaternion@,SharpDX.Quaternion@,SharpDX.Quaternion@)">
            <summary>
            Adds two quaternions.
            </summary>
            <param name="left">The first quaternion to add.</param>
            <param name="right">The second quaternion to add.</param>
            <param name="result">When the method completes, contains the sum of the two quaternions.</param>
        </member>
        <member name="M:SharpDX.Quaternion.Add(SharpDX.Quaternion,SharpDX.Quaternion)">
            <summary>
            Adds two quaternions.
            </summary>
            <param name="left">The first quaternion to add.</param>
            <param name="right">The second quaternion to add.</param>
            <returns>The sum of the two quaternions.</returns>
        </member>
        <member name="M:SharpDX.Quaternion.Subtract(SharpDX.Quaternion@,SharpDX.Quaternion@,SharpDX.Quaternion@)">
            <summary>
            Subtracts two quaternions.
            </summary>
            <param name="left">The first quaternion to subtract.</param>
            <param name="right">The second quaternion to subtract.</param>
            <param name="result">When the method completes, contains the difference of the two quaternions.</param>
        </member>
        <member name="M:SharpDX.Quaternion.Subtract(SharpDX.Quaternion,SharpDX.Quaternion)">
            <summary>
            Subtracts two quaternions.
            </summary>
            <param name="left">The first quaternion to subtract.</param>
            <param name="right">The second quaternion to subtract.</param>
            <returns>The difference of the two quaternions.</returns>
        </member>
        <member name="M:SharpDX.Quaternion.Multiply(SharpDX.Quaternion@,System.Single,SharpDX.Quaternion@)">
            <summary>
            Scales a quaternion by the given value.
            </summary>
            <param name="value">The quaternion to scale.</param>
            <param name="scale">The amount by which to scale the quaternion.</param>
            <param name="result">When the method completes, contains the scaled quaternion.</param>
        </member>
        <member name="M:SharpDX.Quaternion.Multiply(SharpDX.Quaternion,System.Single)">
            <summary>
            Scales a quaternion by the given value.
            </summary>
            <param name="value">The quaternion to scale.</param>
            <param name="scale">The amount by which to scale the quaternion.</param>
            <returns>The scaled quaternion.</returns>
        </member>
        <member name="M:SharpDX.Quaternion.Multiply(SharpDX.Quaternion@,SharpDX.Quaternion@,SharpDX.Quaternion@)">
            <summary>
            Modulates a quaternion by another.
            </summary>
            <param name="left">The first quaternion to modulate.</param>
            <param name="right">The second quaternion to modulate.</param>
            <param name="result">When the moethod completes, contains the modulated quaternion.</param>
        </member>
        <member name="M:SharpDX.Quaternion.Multiply(SharpDX.Quaternion,SharpDX.Quaternion)">
            <summary>
            Modulates a quaternion by another.
            </summary>
            <param name="left">The first quaternion to modulate.</param>
            <param name="right">The second quaternion to modulate.</param>
            <returns>The modulated quaternion.</returns>
        </member>
        <member name="M:SharpDX.Quaternion.Negate(SharpDX.Quaternion@,SharpDX.Quaternion@)">
            <summary>
            Reverses the direction of a given quaternion.
            </summary>
            <param name="value">The quaternion to negate.</param>
            <param name="result">When the method completes, contains a quaternion facing in the opposite direction.</param>
        </member>
        <member name="M:SharpDX.Quaternion.Negate(SharpDX.Quaternion)">
            <summary>
            Reverses the direction of a given quaternion.
            </summary>
            <param name="value">The quaternion to negate.</param>
            <returns>A quaternion facing in the opposite direction.</returns>
        </member>
        <member name="M:SharpDX.Quaternion.Barycentric(SharpDX.Quaternion@,SharpDX.Quaternion@,SharpDX.Quaternion@,System.Single,System.Single,SharpDX.Quaternion@)">
            <summary>
            Returns a <see cref="T:SharpDX.Quaternion"/> containing the 4D Cartesian coordinates of a point specified in Barycentric coordinates relative to a 2D triangle.
            </summary>
            <param name="value1">A <see cref="T:SharpDX.Quaternion"/> containing the 4D Cartesian coordinates of vertex 1 of the triangle.</param>
            <param name="value2">A <see cref="T:SharpDX.Quaternion"/> containing the 4D Cartesian coordinates of vertex 2 of the triangle.</param>
            <param name="value3">A <see cref="T:SharpDX.Quaternion"/> containing the 4D Cartesian coordinates of vertex 3 of the triangle.</param>
            <param name="amount1">Barycentric coordinate b2, which expresses the weighting factor toward vertex 2 (specified in <paramref name="value2"/>).</param>
            <param name="amount2">Barycentric coordinate b3, which expresses the weighting factor toward vertex 3 (specified in <paramref name="value3"/>).</param>
            <param name="result">When the method completes, contains a new <see cref="T:SharpDX.Quaternion"/> containing the 4D Cartesian coordinates of the specified point.</param>
        </member>
        <member name="M:SharpDX.Quaternion.Barycentric(SharpDX.Quaternion,SharpDX.Quaternion,SharpDX.Quaternion,System.Single,System.Single)">
            <summary>
            Returns a <see cref="T:SharpDX.Quaternion"/> containing the 4D Cartesian coordinates of a point specified in Barycentric coordinates relative to a 2D triangle.
            </summary>
            <param name="value1">A <see cref="T:SharpDX.Quaternion"/> containing the 4D Cartesian coordinates of vertex 1 of the triangle.</param>
            <param name="value2">A <see cref="T:SharpDX.Quaternion"/> containing the 4D Cartesian coordinates of vertex 2 of the triangle.</param>
            <param name="value3">A <see cref="T:SharpDX.Quaternion"/> containing the 4D Cartesian coordinates of vertex 3 of the triangle.</param>
            <param name="amount1">Barycentric coordinate b2, which expresses the weighting factor toward vertex 2 (specified in <paramref name="value2"/>).</param>
            <param name="amount2">Barycentric coordinate b3, which expresses the weighting factor toward vertex 3 (specified in <paramref name="value3"/>).</param>
            <returns>A new <see cref="T:SharpDX.Quaternion"/> containing the 4D Cartesian coordinates of the specified point.</returns>
        </member>
        <member name="M:SharpDX.Quaternion.Conjugate(SharpDX.Quaternion@,SharpDX.Quaternion@)">
            <summary>
            Conjugates a quaternion.
            </summary>
            <param name="value">The quaternion to conjugate.</param>
            <param name="result">When the method completes, contains the conjugated quaternion.</param>
        </member>
        <member name="M:SharpDX.Quaternion.Conjugate(SharpDX.Quaternion)">
            <summary>
            Conjugates a quaternion.
            </summary>
            <param name="value">The quaternion to conjugate.</param>
            <returns>The conjugated quaternion.</returns>
        </member>
        <member name="M:SharpDX.Quaternion.Dot(SharpDX.Quaternion@,SharpDX.Quaternion@,System.Single@)">
            <summary>
            Calculates the dot product of two quaternions.
            </summary>
            <param name="left">First source quaternion.</param>
            <param name="right">Second source quaternion.</param>
            <param name="result">When the method completes, contains the dot product of the two quaternions.</param>
        </member>
        <member name="M:SharpDX.Quaternion.Dot(SharpDX.Quaternion,SharpDX.Quaternion)">
            <summary>
            Calculates the dot product of two quaternions.
            </summary>
            <param name="left">First source quaternion.</param>
            <param name="right">Second source quaternion.</param>
            <returns>The dot product of the two quaternions.</returns>
        </member>
        <member name="M:SharpDX.Quaternion.Exponential(SharpDX.Quaternion@,SharpDX.Quaternion@)">
            <summary>
            Exponentiates a quaternion.
            </summary>
            <param name="value">The quaternion to exponentiate.</param>
            <param name="result">When the method completes, contains the exponentiated quaternion.</param>
        </member>
        <member name="M:SharpDX.Quaternion.Exponential(SharpDX.Quaternion)">
            <summary>
            Exponentiates a quaternion.
            </summary>
            <param name="value">The quaternion to exponentiate.</param>
            <returns>The exponentiated quaternion.</returns>
        </member>
        <member name="M:SharpDX.Quaternion.Invert(SharpDX.Quaternion@,SharpDX.Quaternion@)">
            <summary>
            Conjugates and renormalizes the quaternion.
            </summary>
            <param name="value">The quaternion to conjugate and renormalize.</param>
            <param name="result">When the method completes, contains the conjugated and renormalized quaternion.</param>
        </member>
        <member name="M:SharpDX.Quaternion.Invert(SharpDX.Quaternion)">
            <summary>
            Conjugates and renormalizes the quaternion.
            </summary>
            <param name="value">The quaternion to conjugate and renormalize.</param>
            <returns>The conjugated and renormalized quaternion.</returns>
        </member>
        <member name="M:SharpDX.Quaternion.Lerp(SharpDX.Quaternion@,SharpDX.Quaternion@,System.Single,SharpDX.Quaternion@)">
            <summary>
            Performs a linear interpolation between two quaternions.
            </summary>
            <param name="start">Start quaternion.</param>
            <param name="end">End quaternion.</param>
            <param name="amount">Value between 0 and 1 indicating the weight of <paramref name="end"/>.</param>
            <param name="result">When the method completes, contains the linear interpolation of the two quaternions.</param>
            <remarks>
            This method performs the linear interpolation based on the following formula.
            <code>start + (end - start) * amount</code>
            Passing <paramref name="amount"/> a value of 0 will cause <paramref name="start"/> to be returned; a value of 1 will cause <paramref name="end"/> to be returned. 
            </remarks>
        </member>
        <member name="M:SharpDX.Quaternion.Lerp(SharpDX.Quaternion,SharpDX.Quaternion,System.Single)">
            <summary>
            Performs a linear interpolation between two quaternion.
            </summary>
            <param name="start">Start quaternion.</param>
            <param name="end">End quaternion.</param>
            <param name="amount">Value between 0 and 1 indicating the weight of <paramref name="end"/>.</param>
            <returns>The linear interpolation of the two quaternions.</returns>
            <remarks>
            This method performs the linear interpolation based on the following formula.
            <code>start + (end - start) * amount</code>
            Passing <paramref name="amount"/> a value of 0 will cause <paramref name="start"/> to be returned; a value of 1 will cause <paramref name="end"/> to be returned. 
            </remarks>
        </member>
        <member name="M:SharpDX.Quaternion.Logarithm(SharpDX.Quaternion@,SharpDX.Quaternion@)">
            <summary>
            Calculates the natural logarithm of the specified quaternion.
            </summary>
            <param name="value">The quaternion whose logarithm will be calculated.</param>
            <param name="result">When the method completes, contains the natural logarithm of the quaternion.</param>
        </member>
        <member name="M:SharpDX.Quaternion.Logarithm(SharpDX.Quaternion)">
            <summary>
            Calculates the natural logarithm of the specified quaternion.
            </summary>
            <param name="value">The quaternion whose logarithm will be calculated.</param>
            <returns>The natural logarithm of the quaternion.</returns>
        </member>
        <member name="M:SharpDX.Quaternion.Normalize(SharpDX.Quaternion@,SharpDX.Quaternion@)">
            <summary>
            Converts the quaternion into a unit quaternion.
            </summary>
            <param name="value">The quaternion to normalize.</param>
            <param name="result">When the method completes, contains the normalized quaternion.</param>
        </member>
        <member name="M:SharpDX.Quaternion.Normalize(SharpDX.Quaternion)">
            <summary>
            Converts the quaternion into a unit quaternion.
            </summary>
            <param name="value">The quaternion to normalize.</param>
            <returns>The normalized quaternion.</returns>
        </member>
        <member name="M:SharpDX.Quaternion.RotationAxis(SharpDX.Vector3@,System.Single,SharpDX.Quaternion@)">
            <summary>
            Creates a quaternion given a rotation and an axis.
            </summary>
            <param name="axis">The axis of rotation.</param>
            <param name="angle">The angle of rotation.</param>
            <param name="result">When the method completes, contains the newly created quaternion.</param>
        </member>
        <member name="M:SharpDX.Quaternion.RotationAxis(SharpDX.Vector3,System.Single)">
            <summary>
            Creates a quaternion given a rotation and an axis.
            </summary>
            <param name="axis">The axis of rotation.</param>
            <param name="angle">The angle of rotation.</param>
            <returns>The newly created quaternion.</returns>
        </member>
        <member name="M:SharpDX.Quaternion.RotationMatrix(SharpDX.Matrix@,SharpDX.Quaternion@)">
            <summary>
            Creates a quaternion given a rotation matrix.
            </summary>
            <param name="matrix">The rotation matrix.</param>
            <param name="result">When the method completes, contains the newly created quaternion.</param>
        </member>
        <member name="M:SharpDX.Quaternion.RotationMatrix(SharpDX.Matrix)">
            <summary>
            Creates a quaternion given a rotation matrix.
            </summary>
            <param name="matrix">The rotation matrix.</param>
            <returns>The newly created quaternion.</returns>
        </member>
        <member name="M:SharpDX.Quaternion.RotationYawPitchRoll(System.Single,System.Single,System.Single,SharpDX.Quaternion@)">
            <summary>
            Creates a quaternion given a yaw, pitch, and roll value.
            </summary>
            <param name="yaw">The yaw of rotation.</param>
            <param name="pitch">The pitch of rotation.</param>
            <param name="roll">The roll of rotation.</param>
            <param name="result">When the method completes, contains the newly created quaternion.</param>
        </member>
        <member name="M:SharpDX.Quaternion.RotationYawPitchRoll(System.Single,System.Single,System.Single)">
            <summary>
            Creates a quaternion given a yaw, pitch, and roll value.
            </summary>
            <param name="yaw">The yaw of rotation.</param>
            <param name="pitch">The pitch of rotation.</param>
            <param name="roll">The roll of rotation.</param>
            <returns>The newly created quaternion.</returns>
        </member>
        <member name="M:SharpDX.Quaternion.Slerp(SharpDX.Quaternion@,SharpDX.Quaternion@,System.Single,SharpDX.Quaternion@)">
            <summary>
            Interpolates between two quaternions, using spherical linear interpolation.
            </summary>
            <param name="start">Start quaternion.</param>
            <param name="end">End quaternion.</param>
            <param name="amount">Value between 0 and 1 indicating the weight of <paramref name="end"/>.</param>
            <param name="result">When the method completes, contains the spherical linear interpolation of the two quaternions.</param>
        </member>
        <member name="M:SharpDX.Quaternion.Slerp(SharpDX.Quaternion,SharpDX.Quaternion,System.Single)">
            <summary>
            Interpolates between two quaternions, using spherical linear interpolation.
            </summary>
            <param name="start">Start quaternion.</param>
            <param name="end">End quaternion.</param>
            <param name="amount">Value between 0 and 1 indicating the weight of <paramref name="end"/>.</param>
            <returns>The spherical linear interpolation of the two quaternions.</returns>
        </member>
        <member name="M:SharpDX.Quaternion.Squad(SharpDX.Quaternion@,SharpDX.Quaternion@,SharpDX.Quaternion@,SharpDX.Quaternion@,System.Single,SharpDX.Quaternion@)">
            <summary>
            Interpolates between quaternions, using spherical quadrangle interpolation.
            </summary>
            <param name="value1">First source quaternion.</param>
            <param name="value2">Second source quaternion.</param>
            <param name="value3">Thrid source quaternion.</param>
            <param name="value4">Fourth source quaternion.</param>
            <param name="amount">Value between 0 and 1 indicating the weight of interpolation.</param>
            <param name="result">When the method completes, contains the spherical quadrangle interpolation of the quaternions.</param>
        </member>
        <member name="M:SharpDX.Quaternion.Squad(SharpDX.Quaternion,SharpDX.Quaternion,SharpDX.Quaternion,SharpDX.Quaternion,System.Single)">
            <summary>
            Interpolates between quaternions, using spherical quadrangle interpolation.
            </summary>
            <param name="value1">First source quaternion.</param>
            <param name="value2">Second source quaternion.</param>
            <param name="value3">Thrid source quaternion.</param>
            <param name="value4">Fourth source quaternion.</param>
            <param name="amount">Value between 0 and 1 indicating the weight of interpolation.</param>
            <returns>The spherical quadrangle interpolation of the quaternions.</returns>
        </member>
        <member name="M:SharpDX.Quaternion.SquadSetup(SharpDX.Quaternion,SharpDX.Quaternion,SharpDX.Quaternion,SharpDX.Quaternion)">
            <summary>
            Sets up control points for spherical quadrangle interpolation.
            </summary>
            <param name="value1">First source quaternion.</param>
            <param name="value2">Second source quaternion.</param>
            <param name="value3">Third source quaternion.</param>
            <param name="value4">Fourth source quaternion.</param>
            <returns>An array of three quaternions that represent control points for spherical quadrangle interpolation.</returns>
        </member>
        <member name="M:SharpDX.Quaternion.op_Addition(SharpDX.Quaternion,SharpDX.Quaternion)">
            <summary>
            Adds two quaternions.
            </summary>
            <param name="left">The first quaternion to add.</param>
            <param name="right">The second quaternion to add.</param>
            <returns>The sum of the two quaternions.</returns>
        </member>
        <member name="M:SharpDX.Quaternion.op_Subtraction(SharpDX.Quaternion,SharpDX.Quaternion)">
            <summary>
            Subtracts two quaternions.
            </summary>
            <param name="left">The first quaternion to subtract.</param>
            <param name="right">The second quaternion to subtract.</param>
            <returns>The difference of the two quaternions.</returns>
        </member>
        <member name="M:SharpDX.Quaternion.op_UnaryNegation(SharpDX.Quaternion)">
            <summary>
            Reverses the direction of a given quaternion.
            </summary>
            <param name="value">The quaternion to negate.</param>
            <returns>A quaternion facing in the opposite direction.</returns>
        </member>
        <member name="M:SharpDX.Quaternion.op_Multiply(System.Single,SharpDX.Quaternion)">
            <summary>
            Scales a quaternion by the given value.
            </summary>
            <param name="value">The quaternion to scale.</param>
            <param name="scale">The amount by which to scale the quaternion.</param>
            <returns>The scaled quaternion.</returns>
        </member>
        <member name="M:SharpDX.Quaternion.op_Multiply(SharpDX.Quaternion,System.Single)">
            <summary>
            Scales a quaternion by the given value.
            </summary>
            <param name="value">The quaternion to scale.</param>
            <param name="scale">The amount by which to scale the quaternion.</param>
            <returns>The scaled quaternion.</returns>
        </member>
        <member name="M:SharpDX.Quaternion.op_Multiply(SharpDX.Quaternion,SharpDX.Quaternion)">
            <summary>
            Multiplies a quaternion by another.
            </summary>
            <param name="left">The first quaternion to multiply.</param>
            <param name="right">The second quaternion to multiply.</param>
            <returns>The multiplied quaternion.</returns>
        </member>
        <member name="M:SharpDX.Quaternion.op_Equality(SharpDX.Quaternion,SharpDX.Quaternion)">
            <summary>
            Tests for equality between two objects.
            </summary>
            <param name="left">The first value to compare.</param>
            <param name="right">The second value to compare.</param>
            <returns><c>true</c> if <paramref name="left"/> has the same value as <paramref name="right"/>; otherwise, <c>false</c>.</returns>
        </member>
        <member name="M:SharpDX.Quaternion.op_Inequality(SharpDX.Quaternion,SharpDX.Quaternion)">
            <summary>
            Tests for inequality between two objects.
            </summary>
            <param name="left">The first value to compare.</param>
            <param name="right">The second value to compare.</param>
            <returns><c>true</c> if <paramref name="left"/> has a different value than <paramref name="right"/>; otherwise, <c>false</c>.</returns>
        </member>
        <member name="M:SharpDX.Quaternion.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.Quaternion.ToString(System.String)">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <param name="format">The format.</param>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.Quaternion.ToString(System.IFormatProvider)">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <param name="formatProvider">The format provider.</param>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.Quaternion.ToString(System.String,System.IFormatProvider)">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <param name="format">The format.</param>
            <param name="formatProvider">The format provider.</param>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.Quaternion.GetHashCode">
            <summary>
            Returns a hash code for this instance.
            </summary>
            <returns>
            A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. 
            </returns>
        </member>
        <member name="M:SharpDX.Quaternion.Equals(SharpDX.Quaternion)">
            <summary>
            Determines whether the specified <see cref="T:SharpDX.Quaternion"/> is equal to this instance.
            </summary>
            <param name="other">The <see cref="T:SharpDX.Quaternion"/> to compare with this instance.</param>
            <returns>
            <c>true</c> if the specified <see cref="T:SharpDX.Quaternion"/> is equal to this instance; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="M:SharpDX.Quaternion.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to this instance.
            </summary>
            <param name="value">The <see cref="T:System.Object"/> to compare with this instance.</param>
            <returns>
            <c>true</c> if the specified <see cref="T:System.Object"/> is equal to this instance; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="P:SharpDX.Quaternion.IsIdentity">
            <summary>
            Gets a value indicating whether this instance is equivalent to the identity quaternion.
            </summary>
            <value>
            <c>true</c> if this instance is an identity quaternion; otherwise, <c>false</c>.
            </value>
        </member>
        <member name="P:SharpDX.Quaternion.IsNormalized">
            <summary>
            Gets a value indicting whether this instance is normalized.
            </summary>
        </member>
        <member name="P:SharpDX.Quaternion.Angle">
            <summary>
            Gets the angle of the quaternion.
            </summary>
            <value>The quaternion's angle.</value>
        </member>
        <member name="P:SharpDX.Quaternion.Axis">
            <summary>
            Gets the axis components of the quaternion.
            </summary>
            <value>The axis components of the quaternion.</value>
        </member>
        <member name="P:SharpDX.Quaternion.Item(System.Int32)">
            <summary>
            Gets or sets the component at the specified index.
            </summary>
            <value>The value of the X, Y, Z, or W component, depending on the index.</value>
            <param name="index">The index of the component to access. Use 0 for the X component, 1 for the Y component, 2 for the Z component, and 3 for the W component.</param>
            <returns>The value of the component at the specified index.</returns>
            <exception cref="T:System.ArgumentOutOfRangeException">Thrown when the <paramref name="index"/> is out of the range [0, 3].</exception>
        </member>
        <member name="T:SharpDX.Ray">
            <summary>
            Represents a three dimensional line based on a point in space and a direction.
            </summary>
        </member>
        <member name="F:SharpDX.Ray.Position">
            <summary>
            The position in three dimensional space where the ray starts.
            </summary>
        </member>
        <member name="F:SharpDX.Ray.Direction">
            <summary>
            The normalized direction in which the ray points.
            </summary>
        </member>
        <member name="M:SharpDX.Ray.#ctor(SharpDX.Vector3,SharpDX.Vector3)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Ray"/> struct.
            </summary>
            <param name="position">The position in three dimensional space of the origin of the ray.</param>
            <param name="direction">The normalized direction of the ray.</param>
        </member>
        <member name="M:SharpDX.Ray.Intersects(SharpDX.Vector3@)">
            <summary>
            Determines if there is an intersection between the current object and a point.
            </summary>
            <param name="point">The point to test.</param>
            <returns>Whether the two objects intersected.</returns>
        </member>
        <member name="M:SharpDX.Ray.Intersects(SharpDX.Ray@)">
            <summary>
            Determines if there is an intersection between the current object and a <see cref="T:SharpDX.Ray"/>.
            </summary>
            <param name="ray">The ray to test.</param>
            <returns>Whether the two objects intersected.</returns>
        </member>
        <member name="M:SharpDX.Ray.Intersects(SharpDX.Ray@,SharpDX.Vector3@)">
            <summary>
            Determines if there is an intersection between the current object and a <see cref="T:SharpDX.Ray"/>.
            </summary>
            <param name="ray">The ray to test.</param>
            <param name="point">When the method completes, contains the point of intersection,
            or <see cref="F:SharpDX.Vector3.Zero"/> if there was no intersection.</param>
            <returns>Whether the two objects intersected.</returns>
        </member>
        <member name="M:SharpDX.Ray.Intersects(SharpDX.Plane@)">
            <summary>
            Determines if there is an intersection between the current object and a <see cref="T:SharpDX.Plane"/>.
            </summary>
            <param name="plane">The plane to test</param>
            <returns>Whether the two objects intersected.</returns>
        </member>
        <member name="M:SharpDX.Ray.Intersects(SharpDX.Plane@,System.Single@)">
            <summary>
            Determines if there is an intersection between the current object and a <see cref="T:SharpDX.Plane"/>.
            </summary>
            <param name="plane">The plane to test.</param>
            <param name="distance">When the method completes, contains the distance of the intersection,
            or 0 if there was no intersection.</param>
            <returns>Whether the two objects intersected.</returns>
        </member>
        <member name="M:SharpDX.Ray.Intersects(SharpDX.Plane@,SharpDX.Vector3@)">
            <summary>
            Determines if there is an intersection between the current object and a <see cref="T:SharpDX.Plane"/>.
            </summary>
            <param name="plane">The plane to test.</param>
            <param name="point">When the method completes, contains the point of intersection,
            or <see cref="F:SharpDX.Vector3.Zero"/> if there was no intersection.</param>
            <returns>Whether the two objects intersected.</returns>
        </member>
        <member name="M:SharpDX.Ray.Intersects(SharpDX.Vector3@,SharpDX.Vector3@,SharpDX.Vector3@)">
            <summary>
            Determines if there is an intersection between the current object and a triangle.
            </summary>
            <param name="vertex1">The first vertex of the triangle to test.</param>
            <param name="vertex2">The second vertex of the triangle to test.</param>
            <param name="vertex3">The third vertex of the triangle to test.</param>
            <returns>Whether the two objects intersected.</returns>
        </member>
        <member name="M:SharpDX.Ray.Intersects(SharpDX.Vector3@,SharpDX.Vector3@,SharpDX.Vector3@,System.Single@)">
            <summary>
            Determines if there is an intersection between the current object and a triangle.
            </summary>
            <param name="vertex1">The first vertex of the triangle to test.</param>
            <param name="vertex2">The second vertex of the triangle to test.</param>
            <param name="vertex3">The third vertex of the triangle to test.</param>
            <param name="distance">When the method completes, contains the distance of the intersection,
            or 0 if there was no intersection.</param>
            <returns>Whether the two objects intersected.</returns>
        </member>
        <member name="M:SharpDX.Ray.Intersects(SharpDX.Vector3@,SharpDX.Vector3@,SharpDX.Vector3@,SharpDX.Vector3@)">
            <summary>
            Determines if there is an intersection between the current object and a triangle.
            </summary>
            <param name="vertex1">The first vertex of the triangle to test.</param>
            <param name="vertex2">The second vertex of the triangle to test.</param>
            <param name="vertex3">The third vertex of the triangle to test.</param>
            <param name="point">When the method completes, contains the point of intersection,
            or <see cref="F:SharpDX.Vector3.Zero"/> if there was no intersection.</param>
            <returns>Whether the two objects intersected.</returns>
        </member>
        <member name="M:SharpDX.Ray.Intersects(SharpDX.BoundingBox@)">
            <summary>
            Determines if there is an intersection between the current object and a <see cref="T:SharpDX.BoundingBox"/>.
            </summary>
            <param name="box">The box to test.</param>
            <returns>Whether the two objects intersected.</returns>
        </member>
        <member name="M:SharpDX.Ray.Intersects(SharpDX.BoundingBox@,System.Single@)">
            <summary>
            Determines if there is an intersection between the current object and a <see cref="T:SharpDX.BoundingBox"/>.
            </summary>
            <param name="box">The box to test.</param>
            <param name="distance">When the method completes, contains the distance of the intersection,
            or 0 if there was no intersection.</param>
            <returns>Whether the two objects intersected.</returns>
        </member>
        <member name="M:SharpDX.Ray.Intersects(SharpDX.BoundingBox@,SharpDX.Vector3@)">
            <summary>
            Determines if there is an intersection between the current object and a <see cref="T:SharpDX.BoundingBox"/>.
            </summary>
            <param name="box">The box to test.</param>
            <param name="point">When the method completes, contains the point of intersection,
            or <see cref="F:SharpDX.Vector3.Zero"/> if there was no intersection.</param>
            <returns>Whether the two objects intersected.</returns>
        </member>
        <member name="M:SharpDX.Ray.Intersects(SharpDX.BoundingSphere@)">
            <summary>
            Determines if there is an intersection between the current object and a <see cref="T:SharpDX.BoundingSphere"/>.
            </summary>
            <param name="sphere">The sphere to test.</param>
            <returns>Whether the two objects intersected.</returns>
        </member>
        <member name="M:SharpDX.Ray.Intersects(SharpDX.BoundingSphere@,System.Single@)">
            <summary>
            Determines if there is an intersection between the current object and a <see cref="T:SharpDX.BoundingSphere"/>.
            </summary>
            <param name="sphere">The sphere to test.</param>
            <param name="distance">When the method completes, contains the distance of the intersection,
            or 0 if there was no intersection.</param>
            <returns>Whether the two objects intersected.</returns>
        </member>
        <member name="M:SharpDX.Ray.Intersects(SharpDX.BoundingSphere@,SharpDX.Vector3@)">
            <summary>
            Determines if there is an intersection between the current object and a <see cref="T:SharpDX.BoundingSphere"/>.
            </summary>
            <param name="sphere">The sphere to test.</param>
            <param name="point">When the method completes, contains the point of intersection,
            or <see cref="F:SharpDX.Vector3.Zero"/> if there was no intersection.</param>
            <returns>Whether the two objects intersected.</returns>
        </member>
        <member name="M:SharpDX.Ray.op_Equality(SharpDX.Ray,SharpDX.Ray)">
            <summary>
            Tests for equality between two objects.
            </summary>
            <param name="left">The first value to compare.</param>
            <param name="right">The second value to compare.</param>
            <returns><c>true</c> if <paramref name="left"/> has the same value as <paramref name="right"/>; otherwise, <c>false</c>.</returns>
        </member>
        <member name="M:SharpDX.Ray.op_Inequality(SharpDX.Ray,SharpDX.Ray)">
            <summary>
            Tests for inequality between two objects.
            </summary>
            <param name="left">The first value to compare.</param>
            <param name="right">The second value to compare.</param>
            <returns><c>true</c> if <paramref name="left"/> has a different value than <paramref name="right"/>; otherwise, <c>false</c>.</returns>
        </member>
        <member name="M:SharpDX.Ray.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.Ray.ToString(System.String)">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <param name="format">The format.</param>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.Ray.ToString(System.IFormatProvider)">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <param name="formatProvider">The format provider.</param>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.Ray.ToString(System.String,System.IFormatProvider)">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <param name="format">The format.</param>
            <param name="formatProvider">The format provider.</param>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.Ray.GetHashCode">
            <summary>
            Returns a hash code for this instance.
            </summary>
            <returns>
            A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. 
            </returns>
        </member>
        <member name="M:SharpDX.Ray.Equals(SharpDX.Ray)">
            <summary>
            Determines whether the specified <see cref="T:SharpDX.Vector4"/> is equal to this instance.
            </summary>
            <param name="value">The <see cref="T:SharpDX.Vector4"/> to compare with this instance.</param>
            <returns>
            <c>true</c> if the specified <see cref="T:SharpDX.Vector4"/> is equal to this instance; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="M:SharpDX.Ray.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to this instance.
            </summary>
            <param name="value">The <see cref="T:System.Object"/> to compare with this instance.</param>
            <returns>
            <c>true</c> if the specified <see cref="T:System.Object"/> is equal to this instance; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="T:SharpDX.Rectangle">
            <summary>
            Define a Rectangle. This structure is slightly different from System.Drawing.Rectangle as It is 
            internally storing Left,Top,Right,Bottom instead of Left,Top,Width,Height.
            Although automatic casting from a to System.Drawing.Rectangle is provided by this class.
            </summary>
        </member>
        <member name="F:SharpDX.Rectangle.Empty">
            <summary>
            An empty rectangle
            </summary>
        </member>
        <member name="M:SharpDX.Rectangle.#ctor(System.Int32,System.Int32,System.Int32,System.Int32)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Rectangle"/> struct.
            </summary>
            <param name="left">The left.</param>
            <param name="top">The top.</param>
            <param name="right">The right.</param>
            <param name="bottom">The bottom.</param>
        </member>
        <member name="M:SharpDX.Rectangle.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to this instance.
            </summary>
            <param name="obj">The <see cref="T:System.Object"/> to compare with this instance.</param>
            <returns>
            	<c>true</c> if the specified <see cref="T:System.Object"/> is equal to this instance; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="M:SharpDX.Rectangle.GetHashCode">
            <summary>
            Returns a hash code for this instance.
            </summary>
            <returns>
            A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. 
            </returns>
        </member>
        <member name="M:SharpDX.Rectangle.op_Equality(SharpDX.Rectangle,SharpDX.Rectangle)">
            <summary>
            Implements the operator ==.
            </summary>
            <param name="left">The left.</param>
            <param name="right">The right.</param>
            <returns>The result of the operator.</returns>
        </member>
        <member name="M:SharpDX.Rectangle.op_Inequality(SharpDX.Rectangle,SharpDX.Rectangle)">
            <summary>
            Implements the operator !=.
            </summary>
            <param name="left">The left.</param>
            <param name="right">The right.</param>
            <returns>The result of the operator.</returns>
        </member>
        <member name="P:SharpDX.Rectangle.Left">
            <summary>
            Gets or sets the left.
            </summary>
            <value>The left.</value>
        </member>
        <member name="P:SharpDX.Rectangle.Top">
            <summary>
            Gets or sets the top.
            </summary>
            <value>The top.</value>
        </member>
        <member name="P:SharpDX.Rectangle.Right">
            <summary>
            Gets or sets the right.
            </summary>
            <value>The right.</value>
        </member>
        <member name="P:SharpDX.Rectangle.Bottom">
            <summary>
            Gets or sets the bottom.
            </summary>
            <value>The bottom.</value>
        </member>
        <member name="P:SharpDX.Rectangle.X">
            <summary>
            Gets or sets the left position.
            </summary>
            <value>The left position.</value>
        </member>
        <member name="P:SharpDX.Rectangle.Y">
            <summary>
            Gets or sets the top position.
            </summary>
            <value>The top position.</value>
        </member>
        <member name="P:SharpDX.Rectangle.Width">
            <summary>
            Gets or sets the width.
            </summary>
            <value>The width.</value>
        </member>
        <member name="P:SharpDX.Rectangle.Height">
            <summary>
            Gets or sets the height.
            </summary>
            <value>The height.</value>
        </member>
        <member name="T:SharpDX.RectangleF">
            <summary>
            Define a RectangleF. This structure is slightly different from System.Drawing.RectangleF as It is 
            internally storing Left,Top,Right,Bottom instead of Left,Top,Width,Height.
            Although automatic casting from a to System.Drawing.Rectangle is provided by this class.
            </summary>
        </member>
        <member name="F:SharpDX.RectangleF.Empty">
            <summary>
            An empty rectangle
            </summary>
        </member>
        <member name="M:SharpDX.RectangleF.#ctor(System.Single,System.Single,System.Single,System.Single)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.RectangleF"/> struct.
            </summary>
            <param name="left">The left.</param>
            <param name="top">The top.</param>
            <param name="right">The right.</param>
            <param name="bottom">The bottom.</param>
        </member>
        <member name="M:SharpDX.RectangleF.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to this instance.
            </summary>
            <param name="obj">The <see cref="T:System.Object"/> to compare with this instance.</param>
            <returns>
            	<c>true</c> if the specified <see cref="T:System.Object"/> is equal to this instance; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="M:SharpDX.RectangleF.Equals(SharpDX.RectangleF)">
            <inheritdoc/>
        </member>
        <member name="M:SharpDX.RectangleF.GetHashCode">
            <summary>
            Returns a hash code for this instance.
            </summary>
            <returns>
            A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. 
            </returns>
        </member>
        <member name="M:SharpDX.RectangleF.op_Equality(SharpDX.RectangleF,SharpDX.RectangleF)">
            <summary>
            Implements the operator ==.
            </summary>
            <param name="left">The left.</param>
            <param name="right">The right.</param>
            <returns>The result of the operator.</returns>
        </member>
        <member name="M:SharpDX.RectangleF.op_Inequality(SharpDX.RectangleF,SharpDX.RectangleF)">
            <summary>
            Implements the operator !=.
            </summary>
            <param name="left">The left.</param>
            <param name="right">The right.</param>
            <returns>The result of the operator.</returns>
        </member>
        <member name="P:SharpDX.RectangleF.Left">
            <summary>
            Gets or sets the left.
            </summary>
            <value>The left.</value>
        </member>
        <member name="P:SharpDX.RectangleF.Top">
            <summary>
            Gets or sets the top.
            </summary>
            <value>The top.</value>
        </member>
        <member name="P:SharpDX.RectangleF.Right">
            <summary>
            Gets or sets the right.
            </summary>
            <value>The right.</value>
        </member>
        <member name="P:SharpDX.RectangleF.Bottom">
            <summary>
            Gets or sets the bottom.
            </summary>
            <value>The bottom.</value>
        </member>
        <member name="P:SharpDX.RectangleF.X">
            <summary>
            Gets or sets the left position.
            </summary>
            <value>The left position.</value>
        </member>
        <member name="P:SharpDX.RectangleF.Y">
            <summary>
            Gets or sets the top position.
            </summary>
            <value>The top position.</value>
        </member>
        <member name="P:SharpDX.RectangleF.Width">
            <summary>
            Gets or sets the width.
            </summary>
            <value>The width.</value>
        </member>
        <member name="P:SharpDX.RectangleF.Height">
            <summary>
            Gets or sets the height.
            </summary>
            <value>The height.</value>
        </member>
        <member name="T:SharpDX.Result">
            <summary>
            Result structure for COM methods.
            </summary>
        </member>
        <member name="M:SharpDX.Result.#ctor(System.Int32)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Result"/> struct.
            </summary>
            <param name="code">The HRESULT error code.</param>
        </member>
        <member name="M:SharpDX.Result.#ctor(System.UInt32)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Result"/> struct.
            </summary>
            <param name="code">The HRESULT error code.</param>
        </member>
        <member name="M:SharpDX.Result.op_Explicit(SharpDX.Result)~System.Int32">
            <summary>
            Performs an implicit conversion from <see cref="T:SharpDX.Result"/> to <see cref="T:System.Int32"/>.
            </summary>
            <param name="result">The result.</param>
            <returns>The result of the conversion.</returns>
        </member>
        <member name="M:SharpDX.Result.op_Explicit(SharpDX.Result)~System.UInt32">
            <summary>
            Performs an implicit conversion from <see cref="T:SharpDX.Result"/> to <see cref="T:System.UInt32"/>.
            </summary>
            <param name="result">The result.</param>
            <returns>The result of the conversion.</returns>
        </member>
        <member name="M:SharpDX.Result.op_Implicit(System.Int32)~SharpDX.Result">
            <summary>
            Performs an implicit conversion from <see cref="T:System.Int32"/> to <see cref="T:SharpDX.Result"/>.
            </summary>
            <param name="result">The result.</param>
            <returns>The result of the conversion.</returns>
        </member>
        <member name="M:SharpDX.Result.op_Implicit(System.UInt32)~SharpDX.Result">
            <summary>
            Performs an implicit conversion from <see cref="T:System.UInt32"/> to <see cref="T:SharpDX.Result"/>.
            </summary>
            <param name="result">The result.</param>
            <returns>The result of the conversion.</returns>
        </member>
        <member name="M:SharpDX.Result.Equals(SharpDX.Result)">
            <summary>
            Equalses the specified other.
            </summary>
            <param name="other">The other.</param>
            <returns></returns>
        </member>
        <member name="M:SharpDX.Result.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to this instance.
            </summary>
            <param name="obj">The <see cref="T:System.Object"/> to compare with this instance.</param>
            <returns>
            	<c>true</c> if the specified <see cref="T:System.Object"/> is equal to this instance; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="M:SharpDX.Result.GetHashCode">
            <summary>
            Returns a hash code for this instance.
            </summary>
            <returns>
            A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. 
            </returns>
        </member>
        <member name="M:SharpDX.Result.op_Equality(SharpDX.Result,SharpDX.Result)">
            <summary>
            Implements the operator ==.
            </summary>
            <param name="left">The left.</param>
            <param name="right">The right.</param>
            <returns>The result of the operator.</returns>
        </member>
        <member name="M:SharpDX.Result.op_Inequality(SharpDX.Result,SharpDX.Result)">
            <summary>
            Implements the operator !=.
            </summary>
            <param name="left">The left.</param>
            <param name="right">The right.</param>
            <returns>The result of the operator.</returns>
        </member>
        <member name="M:SharpDX.Result.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.Result.CheckError">
            <summary>
            Checks the error.
            </summary>
        </member>
        <member name="M:SharpDX.Result.GetResultFromException(System.Exception)">
            <summary>
            Gets a <see cref="T:SharpDX.Result"/> from an <see cref="T:System.Exception"/>.
            </summary>
            <param name="ex">The exception</param>
            <returns>The associated result code</returns>
        </member>
        <member name="F:SharpDX.Result.Ok">
            <summary>
            Result code Ok
            </summary>
        </member>
        <member name="F:SharpDX.Result.False">
            <summary>
            Result code False
            </summary>
        </member>
        <member name="F:SharpDX.Result.Abord">
            <summary>
            Result code Abord
            </summary>
        </member>
        <member name="F:SharpDX.Result.AccessDenied">
            <summary>
            Result code AccessDenied
            </summary>
        </member>
        <member name="F:SharpDX.Result.Fail">
            <summary>
            Result code Fail
            </summary>
        </member>
        <member name="F:SharpDX.Result.Handle">
            <summary>
            Resuld code Handle
            </summary>
        </member>
        <member name="F:SharpDX.Result.InvalidArg">
            <summary>
            Result code invalid argument
            </summary>
        </member>
        <member name="F:SharpDX.Result.NoInterface">
            <summary>
            Result code no interface
            </summary>
        </member>
        <member name="F:SharpDX.Result.NotImplemented">
            <summary>
            Result code not implemented
            </summary>
        </member>
        <member name="F:SharpDX.Result.OutOfMemory">
            <summary>
            Result code out of memory
            </summary>
        </member>
        <member name="F:SharpDX.Result.InvalidPointer">
            <summary>
            Result code Invalid pointer
            </summary>
        </member>
        <member name="F:SharpDX.Result.UnexpectedFailure">
            <summary>
            Unexpected failure
            </summary>
        </member>
        <member name="P:SharpDX.Result.Code">
            <summary>
            Gets the HRESULT error code.
            </summary>
            <value>The HRESULT error code.</value>
        </member>
        <member name="P:SharpDX.Result.Success">
            <summary>
            Gets a value indicating whether this <see cref="T:SharpDX.Result"/> is success.
            </summary>
            <value><c>true</c> if success; otherwise, <c>false</c>.</value>
        </member>
        <member name="P:SharpDX.Result.Failure">
            <summary>
            Gets a value indicating whether this <see cref="T:SharpDX.Result"/> is failure.
            </summary>
            <value><c>true</c> if failure; otherwise, <c>false</c>.</value>
        </member>
        <member name="T:SharpDX.PointerSize">
            <summary>
              The maximum number of bytes to which a pointer can point. Use for a count that must span the full range of a pointer.
              Equivalent to Windows type SIZE_T.
            </summary>
        </member>
        <member name="M:SharpDX.PointerSize.#ctor(System.IntPtr)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.PointerSize"/> struct.
            </summary>
            <param name="size">The size.</param>
        </member>
        <member name="M:SharpDX.PointerSize.#ctor(System.Void*)">
            <summary>
              Default constructor.
            </summary>
            <param name = "size">value to set</param>
        </member>
        <member name="M:SharpDX.PointerSize.#ctor(System.Int32)">
            <summary>
              Default constructor.
            </summary>
            <param name = "size">value to set</param>
        </member>
        <member name="M:SharpDX.PointerSize.#ctor(System.Int64)">
            <summary>
              Default constructor.
            </summary>
            <param name = "size">value to set</param>
        </member>
        <member name="M:SharpDX.PointerSize.ToString">
            <summary>
              Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <returns>
              A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.PointerSize.ToString(System.String)">
            <summary>
              Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <param name="format">The format.</param>
            <returns>
              A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.PointerSize.GetHashCode">
            <summary>
              Returns a hash code for this instance.
            </summary>
            <returns>
              A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. 
            </returns>
        </member>
        <member name="M:SharpDX.PointerSize.Equals(SharpDX.PointerSize)">
            <summary>
              Determines whether the specified <see cref="T:SharpDX.PointerSize"/> is equal to this instance.
            </summary>
            <param name="other">The <see cref="T:SharpDX.PointerSize"/> to compare with this instance.</param>
            <returns>
              <c>true</c> if the specified <see cref="T:SharpDX.PointerSize"/> is equal to this instance; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="M:SharpDX.PointerSize.Equals(System.Object)">
            <summary>
              Determines whether the specified <see cref="T:System.Object"/> is equal to this instance.
            </summary>
            <param name="value">The <see cref="T:System.Object"/> to compare with this instance.</param>
            <returns>
              <c>true</c> if the specified <see cref="T:System.Object"/> is equal to this instance; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="M:SharpDX.PointerSize.op_Addition(SharpDX.PointerSize,SharpDX.PointerSize)">
            <summary>
              Adds two sizes.
            </summary>
            <param name = "left">The first size to add.</param>
            <param name = "right">The second size to add.</param>
            <returns>The sum of the two sizes.</returns>
        </member>
        <member name="M:SharpDX.PointerSize.op_UnaryPlus(SharpDX.PointerSize)">
            <summary>
              Assert a size (return it unchanged).
            </summary>
            <param name = "value">The size to assert (unchange).</param>
            <returns>The asserted (unchanged) size.</returns>
        </member>
        <member name="M:SharpDX.PointerSize.op_Subtraction(SharpDX.PointerSize,SharpDX.PointerSize)">
            <summary>
              Subtracts two sizes.
            </summary>
            <param name = "left">The first size to subtract.</param>
            <param name = "right">The second size to subtract.</param>
            <returns>The difference of the two sizes.</returns>
        </member>
        <member name="M:SharpDX.PointerSize.op_UnaryNegation(SharpDX.PointerSize)">
            <summary>
              Reverses the direction of a given size.
            </summary>
            <param name = "value">The size to negate.</param>
            <returns>A size facing in the opposite direction.</returns>
        </member>
        <member name="M:SharpDX.PointerSize.op_Multiply(System.Int32,SharpDX.PointerSize)">
            <summary>
              Scales a size by the given value.
            </summary>
            <param name = "value">The size to scale.</param>
            <param name = "scale">The amount by which to scale the size.</param>
            <returns>The scaled size.</returns>
        </member>
        <member name="M:SharpDX.PointerSize.op_Multiply(SharpDX.PointerSize,System.Int32)">
            <summary>
              Scales a size by the given value.
            </summary>
            <param name = "value">The size to scale.</param>
            <param name = "scale">The amount by which to scale the size.</param>
            <returns>The scaled size.</returns>
        </member>
        <member name="M:SharpDX.PointerSize.op_Division(SharpDX.PointerSize,System.Int32)">
            <summary>
              Scales a size by the given value.
            </summary>
            <param name = "value">The size to scale.</param>
            <param name = "scale">The amount by which to scale the size.</param>
            <returns>The scaled size.</returns>
        </member>
        <member name="M:SharpDX.PointerSize.op_Equality(SharpDX.PointerSize,SharpDX.PointerSize)">
            <summary>
              Tests for equality between two objects.
            </summary>
            <param name = "left">The first value to compare.</param>
            <param name = "right">The second value to compare.</param>
            <returns><c>true</c> if <paramref name = "left" /> has the same value as <paramref name = "right" />; otherwise, <c>false</c>.</returns>
        </member>
        <member name="M:SharpDX.PointerSize.op_Inequality(SharpDX.PointerSize,SharpDX.PointerSize)">
            <summary>
              Tests for inequality between two objects.
            </summary>
            <param name = "left">The first value to compare.</param>
            <param name = "right">The second value to compare.</param>
            <returns><c>true</c> if <paramref name = "left" /> has a different value than <paramref name = "right" />; otherwise, <c>false</c>.</returns>
        </member>
        <member name="M:SharpDX.PointerSize.op_Implicit(SharpDX.PointerSize)~System.Int32">
            <summary>
              Performs an implicit conversion from <see cref="T:SharpDX.PointerSize"/> to <see cref="T:System.Int32"/>.
            </summary>
            <param name="value">The value.</param>
            <returns>The result of the conversion.</returns>
        </member>
        <member name="M:SharpDX.PointerSize.op_Implicit(SharpDX.PointerSize)~System.Int64">
            <summary>
              Performs an implicit conversion from <see cref="T:SharpDX.PointerSize"/> to <see cref="T:System.Int64"/>.
            </summary>
            <param name="value">The value.</param>
            <returns>The result of the conversion.</returns>
        </member>
        <member name="M:SharpDX.PointerSize.op_Implicit(System.Int32)~SharpDX.PointerSize">
            <summary>
              Performs an implicit conversion from <see cref="T:SharpDX.PointerSize"/> to <see cref="T:System.Int32"/>.
            </summary>
            <param name="value">The value.</param>
            <returns>The result of the conversion.</returns>
        </member>
        <member name="M:SharpDX.PointerSize.op_Implicit(System.Int64)~SharpDX.PointerSize">
            <summary>
              Performs an implicit conversion from <see cref="T:SharpDX.PointerSize"/> to <see cref="T:System.Int64"/>.
            </summary>
            <param name="value">The value.</param>
            <returns>The result of the conversion.</returns>
        </member>
        <member name="M:SharpDX.PointerSize.op_Implicit(System.IntPtr)~SharpDX.PointerSize">
            <summary>
            Performs an implicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.PointerSize"/>.
            </summary>
            <param name="value">The value.</param>
            <returns>The result of the conversion.</returns>
        </member>
        <member name="M:SharpDX.PointerSize.op_Implicit(SharpDX.PointerSize)~System.IntPtr">
            <summary>
              Performs an implicit conversion from <see cref="T:SharpDX.PointerSize"/> to <see cref="T:System.IntPtr"/>.
            </summary>
            <param name="value">The value.</param>
            <returns>The result of the conversion.</returns>
        </member>
        <member name="M:SharpDX.PointerSize.op_Implicit(System.Void*)~SharpDX.PointerSize">
            <summary>
              Performs an implicit conversion from void* to <see cref="T:SharpDX.PointerSize"/>.
            </summary>
            <param name="value">The value.</param>
            <returns>The result of the conversion.</returns>
        </member>
        <member name="M:SharpDX.PointerSize.op_Implicit(SharpDX.PointerSize)~System.Void*">
            <summary>
              Performs an implicit conversion from <see cref="T:SharpDX.PointerSize"/> to void*.
            </summary>
            <param name="value">The value.</param>
            <returns>The result of the conversion.</returns>
        </member>
        <member name="T:SharpDX.GetValueFastDelegate`1">
            <summary>
            A Delegate to get a property value from an object.
            </summary>
            <typeparam name="T">Type of the getter</typeparam>
            <param name="obj">The obj to get the property from</param>
            <param name="value">The value to get</param>
        </member>
        <member name="T:SharpDX.SetValueFastDelegate`1">
            <summary>
            A Delegate to set a property value to an object.
            </summary>
            <typeparam name="T">Type of the setter</typeparam>
            <param name="obj">The obj to set the property from</param>
            <param name="value">The value to set</param>
        </member>
        <member name="T:SharpDX.Utilities">
            <summary>
            Utility class.
            </summary>
        </member>
        <member name="M:SharpDX.Utilities.CopyMemory(System.IntPtr,System.IntPtr,System.Int32)">
            <summary>
            Native memcpy.
            </summary>
            <param name="dest">The destination memory location</param>
            <param name="src">The source memory location.</param>
            <param name="sizeInBytesToCopy">The count.</param>
            <returns></returns>
        </member>
        <member name="M:SharpDX.Utilities.ClearMemory(System.IntPtr,System.Byte,System.Int32)">
            <summary>
            Clears the memory.
            </summary>
            <param name="dest">The dest.</param>
            <param name="value">The value.</param>
            <param name="sizeInBytesToClear">The size in bytes to clear.</param>
        </member>
        <member name="M:SharpDX.Utilities.SizeOf``1">
            <summary>
            Return the sizeof a struct from a CLR. Equivalent to sizeof operator but works on generics too.
            </summary>
            <typeparam name="T">a struct to evaluate</typeparam>
            <returns>sizeof this struct</returns>
        </member>
        <member name="M:SharpDX.Utilities.SizeOf``1(``0[])">
            <summary>
            Return the sizeof an array of struct. Equivalent to sizeof operator but works on generics too.
            </summary>
            <typeparam name="T">a struct</typeparam>
            <param name="array">The array of struct to evaluate.</param>
            <returns>sizeof in bytes of this array of struct</returns>
        </member>
        <member name="M:SharpDX.Utilities.Pin``1(``0@,System.Action{System.IntPtr})">
            <summary>
            Pins the specified source and call an action with the pinned pointer.
            </summary>
            <typeparam name="T">The type of the structure to pin</typeparam>
            <param name="source">The source.</param>
            <param name="pinAction">The pin action to perform on the pinned pointer.</param>
        </member>
        <member name="M:SharpDX.Utilities.Pin``1(``0[],System.Action{System.IntPtr})">
            <summary>
            Pins the specified source and call an action with the pinned pointer.
            </summary>
            <typeparam name="T">The type of the structure to pin</typeparam>
            <param name="source">The source array.</param>
            <param name="pinAction">The pin action to perform on the pinned pointer.</param>
        </member>
        <member name="M:SharpDX.Utilities.ToByteArray``1(``0[])">
            <summary>
            Covnerts a structured array to an equivalent byte array.
            </summary>
            <typeparam name="T"></typeparam>
            <param name="source">The source.</param>
            <returns></returns>
        </member>
        <member name="M:SharpDX.Utilities.Read``1(System.IntPtr,``0@)">
            <summary>
            Reads the specified T data from a memory location.
            </summary>
            <typeparam name="T">Type of a data to read</typeparam>
            <param name="source">Memory location to read from.</param>
            <param name="data">The data write to.</param>
            <returns>source pointer + sizeof(T)</returns>
        </member>
        <member name="M:SharpDX.Utilities.ReadOut``1(System.IntPtr,``0@)">
            <summary>
            Reads the specified T data from a memory location.
            </summary>
            <typeparam name="T">Type of a data to read</typeparam>
            <param name="source">Memory location to read from.</param>
            <param name="data">The data write to.</param>
            <returns>source pointer + sizeof(T)</returns>
        </member>
        <member name="M:SharpDX.Utilities.Read``1(System.IntPtr,``0[],System.Int32,System.Int32)">
            <summary>
            Reads the specified array T[] data from a memory location.
            </summary>
            <typeparam name="T">Type of a data to read</typeparam>
            <param name="source">Memory location to read from.</param>
            <param name="data">The data write to.</param>
            <param name="offset">The offset in the array to write to.</param>
            <param name="count">The number of T element to read from the memory location</param>
            <returns>source pointer + sizeof(T) * count</returns>
        </member>
        <member name="M:SharpDX.Utilities.Write``1(System.IntPtr,``0@)">
            <summary>
            Writes the specified T data to a memory location.
            </summary>
            <typeparam name="T">Type of a data to write</typeparam>
            <param name="destination">Memory location to write to.</param>
            <param name="data">The data to write.</param>
            <returns>destination pointer + sizeof(T)</returns>
        </member>
        <member name="M:SharpDX.Utilities.Write``1(System.IntPtr,``0[],System.Int32,System.Int32)">
            <summary>
            Writes the specified array T[] data to a memory location.
            </summary>
            <typeparam name="T">Type of a data to write</typeparam>
            <param name="destination">Memory location to write to.</param>
            <param name="data">The array of T data to write.</param>
            <param name="offset">The offset in the array to read from.</param>
            <param name="count">The number of T element to write to the memory location</param>
            <returns>destination pointer + sizeof(T) * count</returns>
        </member>
        <member name="M:SharpDX.Utilities.ConvertToIntArray(System.Boolean[])">
            <summary>
            Converts to int array.
            </summary>
            <param name="array">The array.</param>
            <returns></returns>
        </member>
        <member name="M:SharpDX.Utilities.ConvertToBoolArray(System.Int32[])">
            <summary>
            Converts to bool array.
            </summary>
            <param name="array">The array.</param>
            <returns></returns>
        </member>
        <member name="M:SharpDX.Utilities.GetGuidFromType(System.Type)">
            <summary>
            Gets the <see cref="T:System.Guid"/> from a type.
            </summary>
            <param name="type">The type.</param>
            <returns>The guid associated with this type</returns>
        </member>
        <member name="M:SharpDX.Utilities.PtrToStringAnsi(System.IntPtr,System.Int32)">
            <summary>
            Converts a pointer to a null-terminating string up to maxLength characters to a .Net string.
            </summary>
            <param name="pointer">The pointer to an ansi null string.</param>
            <param name="maxLength">Maximum length of the string</param>
            <returns></returns>
        </member>
        <member name="M:SharpDX.Utilities.PtrToStringUni(System.IntPtr,System.Int32)">
            <summary>
            Converts a pointer to a null-terminating string up to maxLength characters to a .Net string.
            </summary>
            <param name="pointer">The pointer to an unicode null string.</param>
            <param name="maxLength">Maximum length of the string</param>
            <returns></returns>
        </member>
        <member name="M:SharpDX.Utilities.GetIUnknownForObject(System.Object)">
            <summary>
            Gets the IUnknown from object. Similar to <see cref="M:System.Runtime.InteropServices.Marshal.GetIUnknownForObject(System.Object)"/> but accept null object
            by returning an IntPtr.Zero IUnknown pointer.
            </summary>
            <param name="obj">The managed object.</param>
            <returns>an IUnknown pointer to a  managed object</returns>
        </member>
        <member name="M:SharpDX.Utilities.GetObjectForIUnknown(System.IntPtr)">
            <summary>
            Gets an object from an IUnknown pointer. Similar to <see cref="M:System.Runtime.InteropServices.Marshal.GetObjectForIUnknown(System.IntPtr)"/> but accept IntPtr.Zero
            by returning a null object.
            </summary>
            <param name="iunknownPtr">an IUnknown pointer to a  managed object</param>
            <returns>The managed object.</returns>
        </member>
        <member name="M:SharpDX.Utilities.Join``1(System.String,``0[])">
            <summary>
            String helper join method to display an array of object as a single string.
            </summary>
            <param name="separator">The separator.</param>
            <param name="array">The array.</param>
            <returns>a string with array elements serparated by the seperator</returns>
        </member>
        <member name="M:SharpDX.Utilities.Join(System.String,System.Collections.IEnumerable)">
            <summary>
            String helper join method to display an enumrable of object as a single string.
            </summary>
            <param name="separator">The separator.</param>
            <param name="elements">The enumerable.</param>
            <returns>a string with array elements serparated by the seperator</returns>
        </member>
        <member name="M:SharpDX.Utilities.Join(System.String,System.Collections.IEnumerator)">
            <summary>
            String helper join method to display an enumrable of object as a single string.
            </summary>
            <param name="separator">The separator.</param>
            <param name="elements">The enumerable.</param>
            <returns>a string with array elements serparated by the seperator</returns>
        </member>
        <member name="M:SharpDX.Utilities.BlobToString(SharpDX.Direct3D.Blob)">
            <summary>
            Converts a blob to a string.
            </summary>
            <param name="blob">A blob.</param>
            <returns>A string extracted from a blob.</returns>
        </member>
        <member name="M:SharpDX.Utilities.ReadStream(System.IO.Stream)">
            <summary>
              Read stream to a byte[] buffer
            </summary>
            <param name = "stream">input stream</param>
            <returns>a byte[] buffer</returns>
        </member>
        <member name="M:SharpDX.Utilities.ReadStream(System.IO.Stream,System.Int32@)">
            <summary>
              Read stream to a byte[] buffer
            </summary>
            <param name = "stream">input stream</param>
            <param name = "readLength">length to read</param>
            <returns>a byte[] buffer</returns>
        </member>
        <member name="M:SharpDX.Utilities.GetCustomAttribute``1(System.Reflection.MemberInfo,System.Boolean)">
            <summary>
            Gets the custom attribute.
            </summary>
            <typeparam name="T">Type of the custom attribute</typeparam>
            <param name="memberInfo">The member info.</param>
            <param name="inherited">if set to <c>true</c> [inherited].</param>
            <returns>The custom attribute or null if not found</returns>
        </member>
        <member name="M:SharpDX.Utilities.GetCustomAttributes``1(System.Reflection.MemberInfo,System.Boolean)">
            <summary>
            Gets the custom attributes.
            </summary>
            <typeparam name="T">Type of the custom attribute</typeparam>
            <param name="memberInfo">The member info.</param>
            <param name="inherited">if set to <c>true</c> [inherited].</param>
            <returns>The custom attribute or null if not found</returns>
        </member>
        <member name="M:SharpDX.Utilities.IsAssignableFrom(System.Type,System.Type)">
            <summary>
            Determines whether fromType can be assigned to toType.
            </summary>
            <param name="toType">To type.</param>
            <param name="fromType">From type.</param>
            <returns>
              <c>true</c> if [is assignable from] [the specified to type]; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="M:SharpDX.Utilities.IsEnum(System.Type)">
            <summary>
            Determines whether the specified type to test is an enum.
            </summary>
            <param name="typeToTest">The type to test.</param>
            <returns>
              <c>true</c> if the specified type to test is an enum; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="M:SharpDX.Utilities.BuildPropertyGetter``1(System.Type,System.Reflection.PropertyInfo)">
            <summary>
            Builds a fast property getter from a type and a property info.
            </summary>
            <typeparam name="T">Type of the getter</typeparam>
            <param name="customEffectType">Type of the custom effect.</param>
            <param name="propertyInfo">The property info to get the value from.</param>
            <returns>A compiled delegate </returns>
        </member>
        <member name="M:SharpDX.Utilities.BuildPropertySetter``1(System.Type,System.Reflection.PropertyInfo)">
            <summary>
            Builds a fast property setter from a type and a property info.
            </summary>
            <typeparam name="T">Type of the setter</typeparam>
            <param name="customEffectType">Type of the custom effect.</param>
            <param name="propertyInfo">The property info to set the value to.</param>
            <returns>A compiled delegate</returns>
        </member>
        <member name="M:SharpDX.Utilities.FindExplicitConverstion(System.Type,System.Type)">
            <summary>
            Finds an explicit converstion between a source type and a target type
            </summary>
            <param name="sourceType">Type of the source.</param>
            <param name="targetType">Type of the target.</param>
            <returns>The method to perform the conversion. null if not found</returns>
        </member>
        <member name="M:SharpDX.Utilities.LoadLibrary(System.String)">
            <summary>
            Loads a native library.
            </summary>
            <param name="dllName">Name of the DLL.</param>
            <exception cref="T:SharpDX.SharpDXException">If dll was not found</exception>
            <returns></returns>
        </member>
        <member name="M:SharpDX.Utilities.GetProcAddress(System.IntPtr,System.String)">
            <summary>
            Gets the proc address of a dll.
            </summary>
            <param name="handle">The handle.</param>
            <param name="dllFunctionToImport">The DLL function to import.</param>
            <exception cref="T:SharpDX.SharpDXException">If the function was not found</exception>
            <returns></returns>
        </member>
        <member name="T:SharpDX.Utilities.CoInit">
            <summary>Determines the concurrency model used for incoming calls to objects created by this thread. This concurrency model can be either apartment-threaded or multi-threaded.</summary>
        </member>
        <member name="F:SharpDX.Utilities.CoInit.MultiThreaded">
            <summary>
            Initializes the thread for apartment-threaded object concurrency.
            </summary>
        </member>
        <member name="F:SharpDX.Utilities.CoInit.ApartmentThreaded">
            <summary>
            Initializes the thread for multi-threaded object concurrency.
            </summary>
        </member>
        <member name="F:SharpDX.Utilities.CoInit.DisableOle1Dde">
            <summary>
            Disables DDE for OLE1 support.
            </summary>
        </member>
        <member name="F:SharpDX.Utilities.CoInit.SpeedOverMemory">
            <summary>
            Trade memory for speed.
            </summary>
        </member>
        <member name="T:SharpDX.Vector2">
            <summary>
            Represents a two dimensional mathematical vector.
            </summary>
        </member>
        <member name="F:SharpDX.Vector2.SizeInBytes">
            <summary>
            The size of the <see cref="T:SharpDX.Vector2"/> type, in bytes.
            </summary>
        </member>
        <member name="F:SharpDX.Vector2.Zero">
            <summary>
            A <see cref="T:SharpDX.Vector2"/> with all of its components set to zero.
            </summary>
        </member>
        <member name="F:SharpDX.Vector2.UnitX">
            <summary>
            The X unit <see cref="T:SharpDX.Vector2"/> (1, 0).
            </summary>
        </member>
        <member name="F:SharpDX.Vector2.UnitY">
            <summary>
            The Y unit <see cref="T:SharpDX.Vector2"/> (0, 1).
            </summary>
        </member>
        <member name="F:SharpDX.Vector2.One">
            <summary>
            A <see cref="T:SharpDX.Vector2"/> with all of its components set to one.
            </summary>
        </member>
        <member name="F:SharpDX.Vector2.X">
            <summary>
            The X component of the vector.
            </summary>
        </member>
        <member name="F:SharpDX.Vector2.Y">
            <summary>
            The Y component of the vector.
            </summary>
        </member>
        <member name="M:SharpDX.Vector2.#ctor(System.Single)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Vector2"/> struct.
            </summary>
            <param name="value">The value that will be assigned to all components.</param>
        </member>
        <member name="M:SharpDX.Vector2.#ctor(System.Single,System.Single)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Vector2"/> struct.
            </summary>
            <param name="x">Initial value for the X component of the vector.</param>
            <param name="y">Initial value for the Y component of the vector.</param>
        </member>
        <member name="M:SharpDX.Vector2.#ctor(System.Single[])">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Vector2"/> struct.
            </summary>
            <param name="values">The values to assign to the X and Y components of the vector. This must be an array with two elements.</param>
            <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="values"/> is <c>null</c>.</exception>
            <exception cref="T:System.ArgumentOutOfRangeException">Thrown when <paramref name="values"/> contains more or less than two elements.</exception>
        </member>
        <member name="M:SharpDX.Vector2.Length">
            <summary>
            Calculates the length of the vector.
            </summary>
            <returns>The length of the vector.</returns>
            <remarks>
            <see cref="M:SharpDX.Vector2.LengthSquared"/> may be preferred when only the relative length is needed
            and speed is of the essence.
            </remarks>
        </member>
        <member name="M:SharpDX.Vector2.LengthSquared">
            <summary>
            Calculates the squared length of the vector.
            </summary>
            <returns>The squared length of the vector.</returns>
            <remarks>
            This method may be preferred to <see cref="M:SharpDX.Vector2.Length"/> when only a relative length is needed
            and speed is of the essence.
            </remarks>
        </member>
        <member name="M:SharpDX.Vector2.Normalize">
            <summary>
            Converts the vector into a unit vector.
            </summary>
        </member>
        <member name="M:SharpDX.Vector2.ToArray">
            <summary>
            Creates an array containing the elements of the vector.
            </summary>
            <returns>A two-element array containing the components of the vector.</returns>
        </member>
        <member name="M:SharpDX.Vector2.Add(SharpDX.Vector2@,SharpDX.Vector2@,SharpDX.Vector2@)">
            <summary>
            Adds two vectors.
            </summary>
            <param name="left">The first vector to add.</param>
            <param name="right">The second vector to add.</param>
            <param name="result">When the method completes, contains the sum of the two vectors.</param>
        </member>
        <member name="M:SharpDX.Vector2.Add(SharpDX.Vector2,SharpDX.Vector2)">
            <summary>
            Adds two vectors.
            </summary>
            <param name="left">The first vector to add.</param>
            <param name="right">The second vector to add.</param>
            <returns>The sum of the two vectors.</returns>
        </member>
        <member name="M:SharpDX.Vector2.Subtract(SharpDX.Vector2@,SharpDX.Vector2@,SharpDX.Vector2@)">
            <summary>
            Subtracts two vectors.
            </summary>
            <param name="left">The first vector to subtract.</param>
            <param name="right">The second vector to subtract.</param>
            <param name="result">When the method completes, contains the difference of the two vectors.</param>
        </member>
        <member name="M:SharpDX.Vector2.Subtract(SharpDX.Vector2,SharpDX.Vector2)">
            <summary>
            Subtracts two vectors.
            </summary>
            <param name="left">The first vector to subtract.</param>
            <param name="right">The second vector to subtract.</param>
            <returns>The difference of the two vectors.</returns>
        </member>
        <member name="M:SharpDX.Vector2.Multiply(SharpDX.Vector2@,System.Single,SharpDX.Vector2@)">
            <summary>
            Scales a vector by the given value.
            </summary>
            <param name="value">The vector to scale.</param>
            <param name="scale">The amount by which to scale the vector.</param>
            <param name="result">When the method completes, contains the scaled vector.</param>
        </member>
        <member name="M:SharpDX.Vector2.Multiply(SharpDX.Vector2,System.Single)">
            <summary>
            Scales a vector by the given value.
            </summary>
            <param name="value">The vector to scale.</param>
            <param name="scale">The amount by which to scale the vector.</param>
            <returns>The scaled vector.</returns>
        </member>
        <member name="M:SharpDX.Vector2.Modulate(SharpDX.Vector2@,SharpDX.Vector2@,SharpDX.Vector2@)">
            <summary>
            Modulates a vector with another by performing component-wise multiplication.
            </summary>
            <param name="left">The first vector to modulate.</param>
            <param name="right">The second vector to modulate.</param>
            <param name="result">When the method completes, contains the modulated vector.</param>
        </member>
        <member name="M:SharpDX.Vector2.Modulate(SharpDX.Vector2,SharpDX.Vector2)">
            <summary>
            Modulates a vector with another by performing component-wise multiplication.
            </summary>
            <param name="left">The first vector to modulate.</param>
            <param name="right">The second vector to modulate.</param>
            <returns>The modulated vector.</returns>
        </member>
        <member name="M:SharpDX.Vector2.Divide(SharpDX.Vector2@,System.Single,SharpDX.Vector2@)">
            <summary>
            Scales a vector by the given value.
            </summary>
            <param name="value">The vector to scale.</param>
            <param name="scale">The amount by which to scale the vector.</param>
            <param name="result">When the method completes, contains the scaled vector.</param>
        </member>
        <member name="M:SharpDX.Vector2.Divide(SharpDX.Vector2,System.Single)">
            <summary>
            Scales a vector by the given value.
            </summary>
            <param name="value">The vector to scale.</param>
            <param name="scale">The amount by which to scale the vector.</param>
            <returns>The scaled vector.</returns>
        </member>
        <member name="M:SharpDX.Vector2.Negate(SharpDX.Vector2@,SharpDX.Vector2@)">
            <summary>
            Reverses the direction of a given vector.
            </summary>
            <param name="value">The vector to negate.</param>
            <param name="result">When the method completes, contains a vector facing in the opposite direction.</param>
        </member>
        <member name="M:SharpDX.Vector2.Negate(SharpDX.Vector2)">
            <summary>
            Reverses the direction of a given vector.
            </summary>
            <param name="value">The vector to negate.</param>
            <returns>A vector facing in the opposite direction.</returns>
        </member>
        <member name="M:SharpDX.Vector2.Barycentric(SharpDX.Vector2@,SharpDX.Vector2@,SharpDX.Vector2@,System.Single,System.Single,SharpDX.Vector2@)">
            <summary>
            Returns a <see cref="T:SharpDX.Vector2"/> containing the 2D Cartesian coordinates of a point specified in Barycentric coordinates relative to a 2D triangle.
            </summary>
            <param name="value1">A <see cref="T:SharpDX.Vector2"/> containing the 2D Cartesian coordinates of vertex 1 of the triangle.</param>
            <param name="value2">A <see cref="T:SharpDX.Vector2"/> containing the 2D Cartesian coordinates of vertex 2 of the triangle.</param>
            <param name="value3">A <see cref="T:SharpDX.Vector2"/> containing the 2D Cartesian coordinates of vertex 3 of the triangle.</param>
            <param name="amount1">Barycentric coordinate b2, which expresses the weighting factor toward vertex 2 (specified in <paramref name="value2"/>).</param>
            <param name="amount2">Barycentric coordinate b3, which expresses the weighting factor toward vertex 3 (specified in <paramref name="value3"/>).</param>
            <param name="result">When the method completes, contains the 2D Cartesian coordinates of the specified point.</param>
        </member>
        <member name="M:SharpDX.Vector2.Barycentric(SharpDX.Vector2,SharpDX.Vector2,SharpDX.Vector2,System.Single,System.Single)">
            <summary>
            Returns a <see cref="T:SharpDX.Vector2"/> containing the 2D Cartesian coordinates of a point specified in Barycentric coordinates relative to a 2D triangle.
            </summary>
            <param name="value1">A <see cref="T:SharpDX.Vector2"/> containing the 2D Cartesian coordinates of vertex 1 of the triangle.</param>
            <param name="value2">A <see cref="T:SharpDX.Vector2"/> containing the 2D Cartesian coordinates of vertex 2 of the triangle.</param>
            <param name="value3">A <see cref="T:SharpDX.Vector2"/> containing the 2D Cartesian coordinates of vertex 3 of the triangle.</param>
            <param name="amount1">Barycentric coordinate b2, which expresses the weighting factor toward vertex 2 (specified in <paramref name="value2"/>).</param>
            <param name="amount2">Barycentric coordinate b3, which expresses the weighting factor toward vertex 3 (specified in <paramref name="value3"/>).</param>
            <returns>A new <see cref="T:SharpDX.Vector2"/> containing the 2D Cartesian coordinates of the specified point.</returns>
        </member>
        <member name="M:SharpDX.Vector2.Clamp(SharpDX.Vector2@,SharpDX.Vector2@,SharpDX.Vector2@,SharpDX.Vector2@)">
            <summary>
            Restricts a value to be within a specified range.
            </summary>
            <param name="value">The value to clamp.</param>
            <param name="min">The minimum value.</param>
            <param name="max">The maximum value.</param>
            <param name="result">When the method completes, contains the clamped value.</param>
        </member>
        <member name="M:SharpDX.Vector2.Clamp(SharpDX.Vector2,SharpDX.Vector2,SharpDX.Vector2)">
            <summary>
            Restricts a value to be within a specified range.
            </summary>
            <param name="value">The value to clamp.</param>
            <param name="min">The minimum value.</param>
            <param name="max">The maximum value.</param>
            <returns>The clamped value.</returns>
        </member>
        <member name="M:SharpDX.Vector2.Distance(SharpDX.Vector2@,SharpDX.Vector2@,System.Single@)">
            <summary>
            Calculates the distance between two vectors.
            </summary>
            <param name="value1">The first vector.</param>
            <param name="value2">The second vector.</param>
            <param name="result">When the method completes, contains the distance between the two vectors.</param>
            <remarks>
            <see cref="M:SharpDX.Vector2.DistanceSquared(SharpDX.Vector2@,SharpDX.Vector2@,System.Single@)"/> may be preferred when only the relative distance is needed
            and speed is of the essence.
            </remarks>
        </member>
        <member name="M:SharpDX.Vector2.Distance(SharpDX.Vector2,SharpDX.Vector2)">
            <summary>
            Calculates the distance between two vectors.
            </summary>
            <param name="value1">The first vector.</param>
            <param name="value2">The second vector.</param>
            <returns>The distance between the two vectors.</returns>
            <remarks>
            <see cref="M:SharpDX.Vector2.DistanceSquared(SharpDX.Vector2,SharpDX.Vector2)"/> may be preferred when only the relative distance is needed
            and speed is of the essence.
            </remarks>
        </member>
        <member name="M:SharpDX.Vector2.DistanceSquared(SharpDX.Vector2@,SharpDX.Vector2@,System.Single@)">
            <summary>
            Calculates the squared distance between two vectors.
            </summary>
            <param name="value1">The first vector.</param>
            <param name="value2">The second vector</param>
            <param name="result">When the method completes, contains the squared distance between the two vectors.</param>
            <remarks>Distance squared is the value before taking the square root. 
            Distance squared can often be used in place of distance if relative comparisons are being made. 
            For example, consider three points A, B, and C. To determine whether B or C is further from A, 
            compare the distance between A and B to the distance between A and C. Calculating the two distances 
            involves two square roots, which are computationally expensive. However, using distance squared 
            provides the same information and avoids calculating two square roots.
            </remarks>
        </member>
        <member name="M:SharpDX.Vector2.DistanceSquared(SharpDX.Vector2,SharpDX.Vector2)">
            <summary>
            Calculates the squared distance between two vectors.
            </summary>
            <param name="value1">The first vector.</param>
            <param name="value2">The second vector.</param>
            <returns>The squared distance between the two vectors.</returns>
            <remarks>Distance squared is the value before taking the square root. 
            Distance squared can often be used in place of distance if relative comparisons are being made. 
            For example, consider three points A, B, and C. To determine whether B or C is further from A, 
            compare the distance between A and B to the distance between A and C. Calculating the two distances 
            involves two square roots, which are computationally expensive. However, using distance squared 
            provides the same information and avoids calculating two square roots.
            </remarks>
        </member>
        <member name="M:SharpDX.Vector2.Dot(SharpDX.Vector2@,SharpDX.Vector2@,System.Single@)">
            <summary>
            Calculates the dot product of two vectors.
            </summary>
            <param name="left">First source vector.</param>
            <param name="right">Second source vector.</param>
            <param name="result">When the method completes, contains the dot product of the two vectors.</param>
        </member>
        <member name="M:SharpDX.Vector2.Dot(SharpDX.Vector2,SharpDX.Vector2)">
            <summary>
            Calculates the dot product of two vectors.
            </summary>
            <param name="left">First source vector.</param>
            <param name="right">Second source vector.</param>
            <returns>The dot product of the two vectors.</returns>
        </member>
        <member name="M:SharpDX.Vector2.Normalize(SharpDX.Vector2@,SharpDX.Vector2@)">
            <summary>
            Converts the vector into a unit vector.
            </summary>
            <param name="value">The vector to normalize.</param>
            <param name="result">When the method completes, contains the normalized vector.</param>
        </member>
        <member name="M:SharpDX.Vector2.Normalize(SharpDX.Vector2)">
            <summary>
            Converts the vector into a unit vector.
            </summary>
            <param name="value">The vector to normalize.</param>
            <returns>The normalized vector.</returns>
        </member>
        <member name="M:SharpDX.Vector2.Lerp(SharpDX.Vector2@,SharpDX.Vector2@,System.Single,SharpDX.Vector2@)">
            <summary>
            Performs a linear interpolation between two vectors.
            </summary>
            <param name="start">Start vector.</param>
            <param name="end">End vector.</param>
            <param name="amount">Value between 0 and 1 indicating the weight of <paramref name="end"/>.</param>
            <param name="result">When the method completes, contains the linear interpolation of the two vectors.</param>
            <remarks>
            This method performs the linear interpolation based on the following formula.
            <code>start + (end - start) * amount</code>
            Passing <paramref name="amount"/> a value of 0 will cause <paramref name="start"/> to be returned; a value of 1 will cause <paramref name="end"/> to be returned. 
            </remarks>
        </member>
        <member name="M:SharpDX.Vector2.Lerp(SharpDX.Vector2,SharpDX.Vector2,System.Single)">
            <summary>
            Performs a linear interpolation between two vectors.
            </summary>
            <param name="start">Start vector.</param>
            <param name="end">End vector.</param>
            <param name="amount">Value between 0 and 1 indicating the weight of <paramref name="end"/>.</param>
            <returns>The linear interpolation of the two vectors.</returns>
            <remarks>
            This method performs the linear interpolation based on the following formula.
            <code>start + (end - start) * amount</code>
            Passing <paramref name="amount"/> a value of 0 will cause <paramref name="start"/> to be returned; a value of 1 will cause <paramref name="end"/> to be returned. 
            </remarks>
        </member>
        <member name="M:SharpDX.Vector2.SmoothStep(SharpDX.Vector2@,SharpDX.Vector2@,System.Single,SharpDX.Vector2@)">
            <summary>
            Performs a cubic interpolation between two vectors.
            </summary>
            <param name="start">Start vector.</param>
            <param name="end">End vector.</param>
            <param name="amount">Value between 0 and 1 indicating the weight of <paramref name="end"/>.</param>
            <param name="result">When the method completes, contains the cubic interpolation of the two vectors.</param>
        </member>
        <member name="M:SharpDX.Vector2.SmoothStep(SharpDX.Vector2,SharpDX.Vector2,System.Single)">
            <summary>
            Performs a cubic interpolation between two vectors.
            </summary>
            <param name="start">Start vector.</param>
            <param name="end">End vector.</param>
            <param name="amount">Value between 0 and 1 indicating the weight of <paramref name="end"/>.</param>
            <returns>The cubic interpolation of the two vectors.</returns>
        </member>
        <member name="M:SharpDX.Vector2.Hermite(SharpDX.Vector2@,SharpDX.Vector2@,SharpDX.Vector2@,SharpDX.Vector2@,System.Single,SharpDX.Vector2@)">
            <summary>
            Performs a Hermite spline interpolation.
            </summary>
            <param name="value1">First source position vector.</param>
            <param name="tangent1">First source tangent vector.</param>
            <param name="value2">Second source position vector.</param>
            <param name="tangent2">Second source tangent vector.</param>
            <param name="amount">Weighting factor.</param>
            <param name="result">When the method completes, contains the result of the Hermite spline interpolation.</param>
        </member>
        <member name="M:SharpDX.Vector2.Hermite(SharpDX.Vector2,SharpDX.Vector2,SharpDX.Vector2,SharpDX.Vector2,System.Single)">
            <summary>
            Performs a Hermite spline interpolation.
            </summary>
            <param name="value1">First source position vector.</param>
            <param name="tangent1">First source tangent vector.</param>
            <param name="value2">Second source position vector.</param>
            <param name="tangent2">Second source tangent vector.</param>
            <param name="amount">Weighting factor.</param>
            <returns>The result of the Hermite spline interpolation.</returns>
        </member>
        <member name="M:SharpDX.Vector2.CatmullRom(SharpDX.Vector2@,SharpDX.Vector2@,SharpDX.Vector2@,SharpDX.Vector2@,System.Single,SharpDX.Vector2@)">
            <summary>
            Performs a Catmull-Rom interpolation using the specified positions.
            </summary>
            <param name="value1">The first position in the interpolation.</param>
            <param name="value2">The second position in the interpolation.</param>
            <param name="value3">The third position in the interpolation.</param>
            <param name="value4">The fourth position in the interpolation.</param>
            <param name="amount">Weighting factor.</param>
            <param name="result">When the method completes, contains the result of the Catmull-Rom interpolation.</param>
        </member>
        <member name="M:SharpDX.Vector2.CatmullRom(SharpDX.Vector2,SharpDX.Vector2,SharpDX.Vector2,SharpDX.Vector2,System.Single)">
            <summary>
            Performs a Catmull-Rom interpolation using the specified positions.
            </summary>
            <param name="value1">The first position in the interpolation.</param>
            <param name="value2">The second position in the interpolation.</param>
            <param name="value3">The third position in the interpolation.</param>
            <param name="value4">The fourth position in the interpolation.</param>
            <param name="amount">Weighting factor.</param>
            <returns>A vector that is the result of the Catmull-Rom interpolation.</returns>
        </member>
        <member name="M:SharpDX.Vector2.Max(SharpDX.Vector2@,SharpDX.Vector2@,SharpDX.Vector2@)">
            <summary>
            Returns a vector containing the largest components of the specified vectors.
            </summary>
            <param name="left">The first source vector.</param>
            <param name="right">The second source vector.</param>
            <param name="result">When the method completes, contains an new vector composed of the largest components of the source vectors.</param>
        </member>
        <member name="M:SharpDX.Vector2.Max(SharpDX.Vector2,SharpDX.Vector2)">
            <summary>
            Returns a vector containing the largest components of the specified vectors.
            </summary>
            <param name="left">The first source vector.</param>
            <param name="right">The second source vector.</param>
            <returns>A vector containing the largest components of the source vectors.</returns>
        </member>
        <member name="M:SharpDX.Vector2.Min(SharpDX.Vector2@,SharpDX.Vector2@,SharpDX.Vector2@)">
            <summary>
            Returns a vector containing the smallest components of the specified vectors.
            </summary>
            <param name="left">The first source vector.</param>
            <param name="right">The second source vector.</param>
            <param name="result">When the method completes, contains an new vector composed of the smallest components of the source vectors.</param>
        </member>
        <member name="M:SharpDX.Vector2.Min(SharpDX.Vector2,SharpDX.Vector2)">
            <summary>
            Returns a vector containing the smallest components of the specified vectors.
            </summary>
            <param name="left">The first source vector.</param>
            <param name="right">The second source vector.</param>
            <returns>A vector containing the smallest components of the source vectors.</returns>
        </member>
        <member name="M:SharpDX.Vector2.Reflect(SharpDX.Vector2@,SharpDX.Vector2@,SharpDX.Vector2@)">
            <summary>
            Returns the reflection of a vector off a surface that has the specified normal. 
            </summary>
            <param name="vector">The source vector.</param>
            <param name="normal">Normal of the surface.</param>
            <param name="result">When the method completes, contains the reflected vector.</param>
            <remarks>Reflect only gives the direction of a reflection off a surface, it does not determine 
            whether the original vector was close enough to the surface to hit it.</remarks>
        </member>
        <member name="M:SharpDX.Vector2.Reflect(SharpDX.Vector2,SharpDX.Vector2)">
            <summary>
            Returns the reflection of a vector off a surface that has the specified normal. 
            </summary>
            <param name="vector">The source vector.</param>
            <param name="normal">Normal of the surface.</param>
            <returns>The reflected vector.</returns>
            <remarks>Reflect only gives the direction of a reflection off a surface, it does not determine 
            whether the original vector was close enough to the surface to hit it.</remarks>
        </member>
        <member name="M:SharpDX.Vector2.Orthogonalize(SharpDX.Vector2[],SharpDX.Vector2[])">
            <summary>
            Orthogonalizes a list of vectors.
            </summary>
            <param name="destination">The list of orthogonalized vectors.</param>
            <param name="source">The list of vectors to orthogonalize.</param>
            <remarks>
            <para>Orthogonalization is the process of making all vectors orthogonal to each other. This
            means that any given vector in the list will be orthogonal to any other given vector in the
            list.</para>
            <para>Because this method uses the modified Gram-Schmidt process, the resulting vectors
            tend to be numerically unstable. The numeric stability decreases according to the vectors
            position in the list so that the first vector is the most stable and the last vector is the
            least stable.</para>
            </remarks>
            <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="source"/> or <paramref name="destination"/> is <c>null</c>.</exception>
            <exception cref="T:System.ArgumentOutOfRangeException">Thrown when <paramref name="destination"/> is shorter in length than <paramref name="source"/>.</exception>
        </member>
        <member name="M:SharpDX.Vector2.Orthonormalize(SharpDX.Vector2[],SharpDX.Vector2[])">
            <summary>
            Orthonormalizes a list of vectors.
            </summary>
            <param name="destination">The list of orthonormalized vectors.</param>
            <param name="source">The list of vectors to orthonormalize.</param>
            <remarks>
            <para>Orthonormalization is the process of making all vectors orthogonal to each
            other and making all vectors of unit length. This means that any given vector will
            be orthogonal to any other given vector in the list.</para>
            <para>Because this method uses the modified Gram-Schmidt process, the resulting vectors
            tend to be numerically unstable. The numeric stability decreases according to the vectors
            position in the list so that the first vector is the most stable and the last vector is the
            least stable.</para>
            </remarks>
            <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="source"/> or <paramref name="destination"/> is <c>null</c>.</exception>
            <exception cref="T:System.ArgumentOutOfRangeException">Thrown when <paramref name="destination"/> is shorter in length than <paramref name="source"/>.</exception>
        </member>
        <member name="M:SharpDX.Vector2.Transform(SharpDX.Vector2@,SharpDX.Quaternion@,SharpDX.Vector2@)">
            <summary>
            Transforms a 2D vector by the given <see cref="T:SharpDX.Quaternion"/> rotation.
            </summary>
            <param name="vector">The vector to rotate.</param>
            <param name="rotation">The <see cref="T:SharpDX.Quaternion"/> rotation to apply.</param>
            <param name="result">When the method completes, contains the transformed <see cref="T:SharpDX.Vector4"/>.</param>
        </member>
        <member name="M:SharpDX.Vector2.Transform(SharpDX.Vector2,SharpDX.Quaternion)">
            <summary>
            Transforms a 2D vector by the given <see cref="T:SharpDX.Quaternion"/> rotation.
            </summary>
            <param name="vector">The vector to rotate.</param>
            <param name="rotation">The <see cref="T:SharpDX.Quaternion"/> rotation to apply.</param>
            <returns>The transformed <see cref="T:SharpDX.Vector4"/>.</returns>
        </member>
        <member name="M:SharpDX.Vector2.Transform(SharpDX.Vector2[],SharpDX.Quaternion@,SharpDX.Vector2[])">
            <summary>
            Transforms an array of vectors by the given <see cref="T:SharpDX.Quaternion"/> rotation.
            </summary>
            <param name="source">The array of vectors to transform.</param>
            <param name="rotation">The <see cref="T:SharpDX.Quaternion"/> rotation to apply.</param>
            <param name="destination">The array for which the transformed vectors are stored.
            This array may be the same array as <paramref name="source"/>.</param>
            <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="source"/> or <paramref name="destination"/> is <c>null</c>.</exception>
            <exception cref="T:System.ArgumentOutOfRangeException">Thrown when <paramref name="destination"/> is shorter in length than <paramref name="source"/>.</exception>
        </member>
        <member name="M:SharpDX.Vector2.Transform(SharpDX.Vector2@,SharpDX.Matrix@,SharpDX.Vector4@)">
            <summary>
            Transforms a 2D vector by the given <see cref="T:SharpDX.Matrix"/>.
            </summary>
            <param name="vector">The source vector.</param>
            <param name="transform">The transformation <see cref="T:SharpDX.Matrix"/>.</param>
            <param name="result">When the method completes, contains the transformed <see cref="T:SharpDX.Vector4"/>.</param>
        </member>
        <member name="M:SharpDX.Vector2.Transform(SharpDX.Vector2,SharpDX.Matrix)">
            <summary>
            Transforms a 2D vector by the given <see cref="T:SharpDX.Matrix"/>.
            </summary>
            <param name="vector">The source vector.</param>
            <param name="transform">The transformation <see cref="T:SharpDX.Matrix"/>.</param>
            <returns>The transformed <see cref="T:SharpDX.Vector4"/>.</returns>
        </member>
        <member name="M:SharpDX.Vector2.Transform(SharpDX.Vector2[],SharpDX.Matrix@,SharpDX.Vector4[])">
            <summary>
            Transforms an array of 2D vectors by the given <see cref="T:SharpDX.Matrix"/>.
            </summary>
            <param name="source">The array of vectors to transform.</param>
            <param name="transform">The transformation <see cref="T:SharpDX.Matrix"/>.</param>
            <param name="destination">The array for which the transformed vectors are stored.</param>
            <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="source"/> or <paramref name="destination"/> is <c>null</c>.</exception>
            <exception cref="T:System.ArgumentOutOfRangeException">Thrown when <paramref name="destination"/> is shorter in length than <paramref name="source"/>.</exception>
        </member>
        <member name="M:SharpDX.Vector2.TransformCoordinate(SharpDX.Vector2@,SharpDX.Matrix@,SharpDX.Vector2@)">
            <summary>
            Performs a coordinate transformation using the given <see cref="T:SharpDX.Matrix"/>.
            </summary>
            <param name="coordinate">The coordinate vector to transform.</param>
            <param name="transform">The transformation <see cref="T:SharpDX.Matrix"/>.</param>
            <param name="result">When the method completes, contains the transformed coordinates.</param>
            <remarks>
            A coordinate transform performs the transformation with the assumption that the w component
            is one. The four dimensional vector obtained from the transformation operation has each
            component in the vector divided by the w component. This forces the wcomponent to be one and
            therefore makes the vector homogeneous. The homogeneous vector is often prefered when working
            with coordinates as the w component can safely be ignored.
            </remarks>
        </member>
        <member name="M:SharpDX.Vector2.TransformCoordinate(SharpDX.Vector2,SharpDX.Matrix)">
            <summary>
            Performs a coordinate transformation using the given <see cref="T:SharpDX.Matrix"/>.
            </summary>
            <param name="coordinate">The coordinate vector to transform.</param>
            <param name="transform">The transformation <see cref="T:SharpDX.Matrix"/>.</param>
            <returns>The transformed coordinates.</returns>
            <remarks>
            A coordinate transform performs the transformation with the assumption that the w component
            is one. The four dimensional vector obtained from the transformation operation has each
            component in the vector divided by the w component. This forces the wcomponent to be one and
            therefore makes the vector homogeneous. The homogeneous vector is often prefered when working
            with coordinates as the w component can safely be ignored.
            </remarks>
        </member>
        <member name="M:SharpDX.Vector2.TransformCoordinate(SharpDX.Vector2[],SharpDX.Matrix@,SharpDX.Vector2[])">
            <summary>
            Performs a coordinate transformation on an array of vectors using the given <see cref="T:SharpDX.Matrix"/>.
            </summary>
            <param name="source">The array of coordinate vectors to trasnform.</param>
            <param name="transform">The transformation <see cref="T:SharpDX.Matrix"/>.</param>
            <param name="destination">The array for which the transformed vectors are stored.
            This array may be the same array as <paramref name="source"/>.</param>
            <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="source"/> or <paramref name="destination"/> is <c>null</c>.</exception>
            <exception cref="T:System.ArgumentOutOfRangeException">Thrown when <paramref name="destination"/> is shorter in length than <paramref name="source"/>.</exception>
            <remarks>
            A coordinate transform performs the transformation with the assumption that the w component
            is one. The four dimensional vector obtained from the transformation operation has each
            component in the vector divided by the w component. This forces the wcomponent to be one and
            therefore makes the vector homogeneous. The homogeneous vector is often prefered when working
            with coordinates as the w component can safely be ignored.
            </remarks>
        </member>
        <member name="M:SharpDX.Vector2.TransformNormal(SharpDX.Vector2@,SharpDX.Matrix@,SharpDX.Vector2@)">
            <summary>
            Performs a normal transformation using the given <see cref="T:SharpDX.Matrix"/>.
            </summary>
            <param name="normal">The normal vector to transform.</param>
            <param name="transform">The transformation <see cref="T:SharpDX.Matrix"/>.</param>
            <param name="result">When the method completes, contains the transformed normal.</param>
            <remarks>
            A normal transform performs the transformation with the assumption that the w component
            is zero. This causes the fourth row and fourth collumn of the matrix to be unused. The
            end result is a vector that is not translated, but all other transformation properties
            apply. This is often prefered for normal vectors as normals purely represent direction
            rather than location because normal vectors should not be translated.
            </remarks>
        </member>
        <member name="M:SharpDX.Vector2.TransformNormal(SharpDX.Vector2,SharpDX.Matrix)">
            <summary>
            Performs a normal transformation using the given <see cref="T:SharpDX.Matrix"/>.
            </summary>
            <param name="normal">The normal vector to transform.</param>
            <param name="transform">The transformation <see cref="T:SharpDX.Matrix"/>.</param>
            <returns>The transformed normal.</returns>
            <remarks>
            A normal transform performs the transformation with the assumption that the w component
            is zero. This causes the fourth row and fourth collumn of the matrix to be unused. The
            end result is a vector that is not translated, but all other transformation properties
            apply. This is often prefered for normal vectors as normals purely represent direction
            rather than location because normal vectors should not be translated.
            </remarks>
        </member>
        <member name="M:SharpDX.Vector2.TransformNormal(SharpDX.Vector2[],SharpDX.Matrix@,SharpDX.Vector2[])">
            <summary>
            Performs a normal transformation on an array of vectors using the given <see cref="T:SharpDX.Matrix"/>.
            </summary>
            <param name="source">The array of normal vectors to transform.</param>
            <param name="transform">The transformation <see cref="T:SharpDX.Matrix"/>.</param>
            <param name="destination">The array for which the transformed vectors are stored.
            This array may be the same array as <paramref name="source"/>.</param>
            <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="source"/> or <paramref name="destination"/> is <c>null</c>.</exception>
            <exception cref="T:System.ArgumentOutOfRangeException">Thrown when <paramref name="destination"/> is shorter in length than <paramref name="source"/>.</exception>
            <remarks>
            A normal transform performs the transformation with the assumption that the w component
            is zero. This causes the fourth row and fourth collumn of the matrix to be unused. The
            end result is a vector that is not translated, but all other transformation properties
            apply. This is often prefered for normal vectors as normals purely represent direction
            rather than location because normal vectors should not be translated.
            </remarks>
        </member>
        <member name="M:SharpDX.Vector2.op_Addition(SharpDX.Vector2,SharpDX.Vector2)">
            <summary>
            Adds two vectors.
            </summary>
            <param name="left">The first vector to add.</param>
            <param name="right">The second vector to add.</param>
            <returns>The sum of the two vectors.</returns>
        </member>
        <member name="M:SharpDX.Vector2.op_UnaryPlus(SharpDX.Vector2)">
            <summary>
            Assert a vector (return it unchanged).
            </summary>
            <param name="value">The vector to assert (unchange).</param>
            <returns>The asserted (unchanged) vector.</returns>
        </member>
        <member name="M:SharpDX.Vector2.op_Subtraction(SharpDX.Vector2,SharpDX.Vector2)">
            <summary>
            Subtracts two vectors.
            </summary>
            <param name="left">The first vector to subtract.</param>
            <param name="right">The second vector to subtract.</param>
            <returns>The difference of the two vectors.</returns>
        </member>
        <member name="M:SharpDX.Vector2.op_UnaryNegation(SharpDX.Vector2)">
            <summary>
            Reverses the direction of a given vector.
            </summary>
            <param name="value">The vector to negate.</param>
            <returns>A vector facing in the opposite direction.</returns>
        </member>
        <member name="M:SharpDX.Vector2.op_Multiply(System.Single,SharpDX.Vector2)">
            <summary>
            Scales a vector by the given value.
            </summary>
            <param name="value">The vector to scale.</param>
            <param name="scale">The amount by which to scale the vector.</param>
            <returns>The scaled vector.</returns>
        </member>
        <member name="M:SharpDX.Vector2.op_Multiply(SharpDX.Vector2,System.Single)">
            <summary>
            Scales a vector by the given value.
            </summary>
            <param name="value">The vector to scale.</param>
            <param name="scale">The amount by which to scale the vector.</param>
            <returns>The scaled vector.</returns>
        </member>
        <member name="M:SharpDX.Vector2.op_Division(SharpDX.Vector2,System.Single)">
            <summary>
            Scales a vector by the given value.
            </summary>
            <param name="value">The vector to scale.</param>
            <param name="scale">The amount by which to scale the vector.</param>
            <returns>The scaled vector.</returns>
        </member>
        <member name="M:SharpDX.Vector2.op_Equality(SharpDX.Vector2,SharpDX.Vector2)">
            <summary>
            Tests for equality between two objects.
            </summary>
            <param name="left">The first value to compare.</param>
            <param name="right">The second value to compare.</param>
            <returns><c>true</c> if <paramref name="left"/> has the same value as <paramref name="right"/>; otherwise, <c>false</c>.</returns>
        </member>
        <member name="M:SharpDX.Vector2.op_Inequality(SharpDX.Vector2,SharpDX.Vector2)">
            <summary>
            Tests for inequality between two objects.
            </summary>
            <param name="left">The first value to compare.</param>
            <param name="right">The second value to compare.</param>
            <returns><c>true</c> if <paramref name="left"/> has a different value than <paramref name="right"/>; otherwise, <c>false</c>.</returns>
        </member>
        <member name="M:SharpDX.Vector2.op_Explicit(SharpDX.Vector2)~SharpDX.Vector3">
            <summary>
            Performs an explicit conversion from <see cref="T:SharpDX.Vector2"/> to <see cref="T:SharpDX.Vector3"/>.
            </summary>
            <param name="value">The value.</param>
            <returns>The result of the conversion.</returns>
        </member>
        <member name="M:SharpDX.Vector2.op_Explicit(SharpDX.Vector2)~SharpDX.Vector4">
            <summary>
            Performs an explicit conversion from <see cref="T:SharpDX.Vector2"/> to <see cref="T:SharpDX.Vector4"/>.
            </summary>
            <param name="value">The value.</param>
            <returns>The result of the conversion.</returns>
        </member>
        <member name="M:SharpDX.Vector2.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.Vector2.ToString(System.String)">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <param name="format">The format.</param>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.Vector2.ToString(System.IFormatProvider)">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <param name="formatProvider">The format provider.</param>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.Vector2.ToString(System.String,System.IFormatProvider)">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <param name="format">The format.</param>
            <param name="formatProvider">The format provider.</param>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.Vector2.GetHashCode">
            <summary>
            Returns a hash code for this instance.
            </summary>
            <returns>
            A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. 
            </returns>
        </member>
        <member name="M:SharpDX.Vector2.Equals(SharpDX.Vector2)">
            <summary>
            Determines whether the specified <see cref="T:SharpDX.Vector2"/> is equal to this instance.
            </summary>
            <param name="other">The <see cref="T:SharpDX.Vector2"/> to compare with this instance.</param>
            <returns>
            	<c>true</c> if the specified <see cref="T:SharpDX.Vector2"/> is equal to this instance; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="M:SharpDX.Vector2.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to this instance.
            </summary>
            <param name="value">The <see cref="T:System.Object"/> to compare with this instance.</param>
            <returns>
            	<c>true</c> if the specified <see cref="T:System.Object"/> is equal to this instance; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="P:SharpDX.Vector2.IsNormalized">
            <summary>
            Gets a value indicting whether this instance is normalized.
            </summary>
        </member>
        <member name="P:SharpDX.Vector2.Item(System.Int32)">
            <summary>
            Gets or sets the component at the specified index.
            </summary>
            <value>The value of the X or Y component, depending on the index.</value>
            <param name="index">The index of the component to access. Use 0 for the X component and 1 for the Y component.</param>
            <returns>The value of the component at the specified index.</returns>
            <exception cref="T:System.ArgumentOutOfRangeException">Thrown when the <paramref name="index"/> is out of the range [0, 1].</exception>
        </member>
        <member name="T:SharpDX.Vector3">
            <summary>
            Represents a three dimensional mathematical vector.
            </summary>
        </member>
        <member name="F:SharpDX.Vector3.SizeInBytes">
            <summary>
            The size of the <see cref="T:SharpDX.Vector3"/> type, in bytes.
            </summary>
        </member>
        <member name="F:SharpDX.Vector3.Zero">
            <summary>
            A <see cref="T:SharpDX.Vector3"/> with all of its components set to zero.
            </summary>
        </member>
        <member name="F:SharpDX.Vector3.UnitX">
            <summary>
            The X unit <see cref="T:SharpDX.Vector3"/> (1, 0, 0).
            </summary>
        </member>
        <member name="F:SharpDX.Vector3.UnitY">
            <summary>
            The Y unit <see cref="T:SharpDX.Vector3"/> (0, 1, 0).
            </summary>
        </member>
        <member name="F:SharpDX.Vector3.UnitZ">
            <summary>
            The Z unit <see cref="T:SharpDX.Vector3"/> (0, 0, 1).
            </summary>
        </member>
        <member name="F:SharpDX.Vector3.One">
            <summary>
            A <see cref="T:SharpDX.Vector3"/> with all of its components set to one.
            </summary>
        </member>
        <member name="F:SharpDX.Vector3.X">
            <summary>
            The X component of the vector.
            </summary>
        </member>
        <member name="F:SharpDX.Vector3.Y">
            <summary>
            The Y component of the vector.
            </summary>
        </member>
        <member name="F:SharpDX.Vector3.Z">
            <summary>
            The Z component of the vector.
            </summary>
        </member>
        <member name="M:SharpDX.Vector3.#ctor(System.Single)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Vector3"/> struct.
            </summary>
            <param name="value">The value that will be assigned to all components.</param>
        </member>
        <member name="M:SharpDX.Vector3.#ctor(System.Single,System.Single,System.Single)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Vector3"/> struct.
            </summary>
            <param name="x">Initial value for the X component of the vector.</param>
            <param name="y">Initial value for the Y component of the vector.</param>
            <param name="z">Initial value for the Z component of the vector.</param>
        </member>
        <member name="M:SharpDX.Vector3.#ctor(SharpDX.Vector2,System.Single)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Vector3"/> struct.
            </summary>
            <param name="value">A vector containing the values with which to initialize the X and Y components.</param>
            <param name="z">Initial value for the Z component of the vector.</param>
        </member>
        <member name="M:SharpDX.Vector3.#ctor(System.Single[])">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Vector3"/> struct.
            </summary>
            <param name="values">The values to assign to the X, Y, and Z components of the vector. This must be an array with three elements.</param>
            <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="values"/> is <c>null</c>.</exception>
            <exception cref="T:System.ArgumentOutOfRangeException">Thrown when <paramref name="values"/> contains more or less than three elements.</exception>
        </member>
        <member name="M:SharpDX.Vector3.Length">
            <summary>
            Calculates the length of the vector.
            </summary>
            <returns>The length of the vector.</returns>
            <remarks>
            <see cref="M:SharpDX.Vector3.LengthSquared"/> may be preferred when only the relative length is needed
            and speed is of the essence.
            </remarks>
        </member>
        <member name="M:SharpDX.Vector3.LengthSquared">
            <summary>
            Calculates the squared length of the vector.
            </summary>
            <returns>The squared length of the vector.</returns>
            <remarks>
            This method may be preferred to <see cref="M:SharpDX.Vector3.Length"/> when only a relative length is needed
            and speed is of the essence.
            </remarks>
        </member>
        <member name="M:SharpDX.Vector3.Normalize">
            <summary>
            Converts the vector into a unit vector.
            </summary>
        </member>
        <member name="M:SharpDX.Vector3.ToArray">
            <summary>
            Creates an array containing the elements of the vector.
            </summary>
            <returns>A three-element array containing the components of the vector.</returns>
        </member>
        <member name="M:SharpDX.Vector3.Add(SharpDX.Vector3@,SharpDX.Vector3@,SharpDX.Vector3@)">
            <summary>
            Adds two vectors.
            </summary>
            <param name="left">The first vector to add.</param>
            <param name="right">The second vector to add.</param>
            <param name="result">When the method completes, contains the sum of the two vectors.</param>
        </member>
        <member name="M:SharpDX.Vector3.Add(SharpDX.Vector3,SharpDX.Vector3)">
            <summary>
            Adds two vectors.
            </summary>
            <param name="left">The first vector to add.</param>
            <param name="right">The second vector to add.</param>
            <returns>The sum of the two vectors.</returns>
        </member>
        <member name="M:SharpDX.Vector3.Subtract(SharpDX.Vector3@,SharpDX.Vector3@,SharpDX.Vector3@)">
            <summary>
            Subtracts two vectors.
            </summary>
            <param name="left">The first vector to subtract.</param>
            <param name="right">The second vector to subtract.</param>
            <param name="result">When the method completes, contains the difference of the two vectors.</param>
        </member>
        <member name="M:SharpDX.Vector3.Subtract(SharpDX.Vector3,SharpDX.Vector3)">
            <summary>
            Subtracts two vectors.
            </summary>
            <param name="left">The first vector to subtract.</param>
            <param name="right">The second vector to subtract.</param>
            <returns>The difference of the two vectors.</returns>
        </member>
        <member name="M:SharpDX.Vector3.Multiply(SharpDX.Vector3@,System.Single,SharpDX.Vector3@)">
            <summary>
            Scales a vector by the given value.
            </summary>
            <param name="value">The vector to scale.</param>
            <param name="scale">The amount by which to scale the vector.</param>
            <param name="result">When the method completes, contains the scaled vector.</param>
        </member>
        <member name="M:SharpDX.Vector3.Multiply(SharpDX.Vector3,System.Single)">
            <summary>
            Scales a vector by the given value.
            </summary>
            <param name="value">The vector to scale.</param>
            <param name="scale">The amount by which to scale the vector.</param>
            <returns>The scaled vector.</returns>
        </member>
        <member name="M:SharpDX.Vector3.Modulate(SharpDX.Vector3@,SharpDX.Vector3@,SharpDX.Vector3@)">
            <summary>
            Modulates a vector with another by performing component-wise multiplication.
            </summary>
            <param name="left">The first vector to modulate.</param>
            <param name="right">The second vector to modulate.</param>
            <param name="result">When the method completes, contains the modulated vector.</param>
        </member>
        <member name="M:SharpDX.Vector3.Modulate(SharpDX.Vector3,SharpDX.Vector3)">
            <summary>
            Modulates a vector with another by performing component-wise multiplication.
            </summary>
            <param name="left">The first vector to modulate.</param>
            <param name="right">The second vector to modulate.</param>
            <returns>The modulated vector.</returns>
        </member>
        <member name="M:SharpDX.Vector3.Divide(SharpDX.Vector3@,System.Single,SharpDX.Vector3@)">
            <summary>
            Scales a vector by the given value.
            </summary>
            <param name="value">The vector to scale.</param>
            <param name="scale">The amount by which to scale the vector.</param>
            <param name="result">When the method completes, contains the scaled vector.</param>
        </member>
        <member name="M:SharpDX.Vector3.Divide(SharpDX.Vector3,System.Single)">
            <summary>
            Scales a vector by the given value.
            </summary>
            <param name="value">The vector to scale.</param>
            <param name="scale">The amount by which to scale the vector.</param>
            <returns>The scaled vector.</returns>
        </member>
        <member name="M:SharpDX.Vector3.Negate(SharpDX.Vector3@,SharpDX.Vector3@)">
            <summary>
            Reverses the direction of a given vector.
            </summary>
            <param name="value">The vector to negate.</param>
            <param name="result">When the method completes, contains a vector facing in the opposite direction.</param>
        </member>
        <member name="M:SharpDX.Vector3.Negate(SharpDX.Vector3)">
            <summary>
            Reverses the direction of a given vector.
            </summary>
            <param name="value">The vector to negate.</param>
            <returns>A vector facing in the opposite direction.</returns>
        </member>
        <member name="M:SharpDX.Vector3.Barycentric(SharpDX.Vector3@,SharpDX.Vector3@,SharpDX.Vector3@,System.Single,System.Single,SharpDX.Vector3@)">
            <summary>
            Returns a <see cref="T:SharpDX.Vector3"/> containing the 3D Cartesian coordinates of a point specified in Barycentric coordinates relative to a 3D triangle.
            </summary>
            <param name="value1">A <see cref="T:SharpDX.Vector3"/> containing the 3D Cartesian coordinates of vertex 1 of the triangle.</param>
            <param name="value2">A <see cref="T:SharpDX.Vector3"/> containing the 3D Cartesian coordinates of vertex 2 of the triangle.</param>
            <param name="value3">A <see cref="T:SharpDX.Vector3"/> containing the 3D Cartesian coordinates of vertex 3 of the triangle.</param>
            <param name="amount1">Barycentric coordinate b2, which expresses the weighting factor toward vertex 2 (specified in <paramref name="value2"/>).</param>
            <param name="amount2">Barycentric coordinate b3, which expresses the weighting factor toward vertex 3 (specified in <paramref name="value3"/>).</param>
            <param name="result">When the method completes, contains the 3D Cartesian coordinates of the specified point.</param>
        </member>
        <member name="M:SharpDX.Vector3.Barycentric(SharpDX.Vector3,SharpDX.Vector3,SharpDX.Vector3,System.Single,System.Single)">
            <summary>
            Returns a <see cref="T:SharpDX.Vector3"/> containing the 3D Cartesian coordinates of a point specified in Barycentric coordinates relative to a 3D triangle.
            </summary>
            <param name="value1">A <see cref="T:SharpDX.Vector3"/> containing the 3D Cartesian coordinates of vertex 1 of the triangle.</param>
            <param name="value2">A <see cref="T:SharpDX.Vector3"/> containing the 3D Cartesian coordinates of vertex 2 of the triangle.</param>
            <param name="value3">A <see cref="T:SharpDX.Vector3"/> containing the 3D Cartesian coordinates of vertex 3 of the triangle.</param>
            <param name="amount1">Barycentric coordinate b2, which expresses the weighting factor toward vertex 2 (specified in <paramref name="value2"/>).</param>
            <param name="amount2">Barycentric coordinate b3, which expresses the weighting factor toward vertex 3 (specified in <paramref name="value3"/>).</param>
            <returns>A new <see cref="T:SharpDX.Vector3"/> containing the 3D Cartesian coordinates of the specified point.</returns>
        </member>
        <member name="M:SharpDX.Vector3.Clamp(SharpDX.Vector3@,SharpDX.Vector3@,SharpDX.Vector3@,SharpDX.Vector3@)">
            <summary>
            Restricts a value to be within a specified range.
            </summary>
            <param name="value">The value to clamp.</param>
            <param name="min">The minimum value.</param>
            <param name="max">The maximum value.</param>
            <param name="result">When the method completes, contains the clamped value.</param>
        </member>
        <member name="M:SharpDX.Vector3.Clamp(SharpDX.Vector3,SharpDX.Vector3,SharpDX.Vector3)">
            <summary>
            Restricts a value to be within a specified range.
            </summary>
            <param name="value">The value to clamp.</param>
            <param name="min">The minimum value.</param>
            <param name="max">The maximum value.</param>
            <returns>The clamped value.</returns>
        </member>
        <member name="M:SharpDX.Vector3.Cross(SharpDX.Vector3@,SharpDX.Vector3@,SharpDX.Vector3@)">
            <summary>
            Calculates the cross product of two vectors.
            </summary>
            <param name="left">First source vector.</param>
            <param name="right">Second source vector.</param>
            <param name="result">When the method completes, contains he cross product of the two vectors.</param>
        </member>
        <member name="M:SharpDX.Vector3.Cross(SharpDX.Vector3,SharpDX.Vector3)">
            <summary>
            Calculates the cross product of two vectors.
            </summary>
            <param name="left">First source vector.</param>
            <param name="right">Second source vector.</param>
            <returns>The cross product of the two vectors.</returns>
        </member>
        <member name="M:SharpDX.Vector3.Distance(SharpDX.Vector3@,SharpDX.Vector3@,System.Single@)">
            <summary>
            Calculates the distance between two vectors.
            </summary>
            <param name="value1">The first vector.</param>
            <param name="value2">The second vector.</param>
            <param name="result">When the method completes, contains the distance between the two vectors.</param>
            <remarks>
            <see cref="M:SharpDX.Vector3.DistanceSquared(SharpDX.Vector3@,SharpDX.Vector3@,System.Single@)"/> may be preferred when only the relative distance is needed
            and speed is of the essence.
            </remarks>
        </member>
        <member name="M:SharpDX.Vector3.Distance(SharpDX.Vector3,SharpDX.Vector3)">
            <summary>
            Calculates the distance between two vectors.
            </summary>
            <param name="value1">The first vector.</param>
            <param name="value2">The second vector.</param>
            <returns>The distance between the two vectors.</returns>
            <remarks>
            <see cref="M:SharpDX.Vector3.DistanceSquared(SharpDX.Vector3,SharpDX.Vector3)"/> may be preferred when only the relative distance is needed
            and speed is of the essence.
            </remarks>
        </member>
        <member name="M:SharpDX.Vector3.DistanceSquared(SharpDX.Vector3@,SharpDX.Vector3@,System.Single@)">
            <summary>
            Calculates the squared distance between two vectors.
            </summary>
            <param name="value1">The first vector.</param>
            <param name="value2">The second vector.</param>
            <param name="result">When the method completes, contains the squared distance between the two vectors.</param>
            <remarks>Distance squared is the value before taking the square root. 
            Distance squared can often be used in place of distance if relative comparisons are being made. 
            For example, consider three points A, B, and C. To determine whether B or C is further from A, 
            compare the distance between A and B to the distance between A and C. Calculating the two distances 
            involves two square roots, which are computationally expensive. However, using distance squared 
            provides the same information and avoids calculating two square roots.
            </remarks>
        </member>
        <member name="M:SharpDX.Vector3.DistanceSquared(SharpDX.Vector3,SharpDX.Vector3)">
            <summary>
            Calculates the squared distance between two vectors.
            </summary>
            <param name="value1">The first vector.</param>
            <param name="value2">The second vector.</param>
            <returns>The squared distance between the two vectors.</returns>
            <remarks>Distance squared is the value before taking the square root. 
            Distance squared can often be used in place of distance if relative comparisons are being made. 
            For example, consider three points A, B, and C. To determine whether B or C is further from A, 
            compare the distance between A and B to the distance between A and C. Calculating the two distances 
            involves two square roots, which are computationally expensive. However, using distance squared 
            provides the same information and avoids calculating two square roots.
            </remarks>
        </member>
        <member name="M:SharpDX.Vector3.Dot(SharpDX.Vector3@,SharpDX.Vector3@,System.Single@)">
            <summary>
            Calculates the dot product of two vectors.
            </summary>
            <param name="left">First source vector.</param>
            <param name="right">Second source vector.</param>
            <param name="result">When the method completes, contains the dot product of the two vectors.</param>
        </member>
        <member name="M:SharpDX.Vector3.Dot(SharpDX.Vector3,SharpDX.Vector3)">
            <summary>
            Calculates the dot product of two vectors.
            </summary>
            <param name="left">First source vector.</param>
            <param name="right">Second source vector.</param>
            <returns>The dot product of the two vectors.</returns>
        </member>
        <member name="M:SharpDX.Vector3.Normalize(SharpDX.Vector3@,SharpDX.Vector3@)">
            <summary>
            Converts the vector into a unit vector.
            </summary>
            <param name="value">The vector to normalize.</param>
            <param name="result">When the method completes, contains the normalized vector.</param>
        </member>
        <member name="M:SharpDX.Vector3.Normalize(SharpDX.Vector3)">
            <summary>
            Converts the vector into a unit vector.
            </summary>
            <param name="value">The vector to normalize.</param>
            <returns>The normalized vector.</returns>
        </member>
        <member name="M:SharpDX.Vector3.Lerp(SharpDX.Vector3@,SharpDX.Vector3@,System.Single,SharpDX.Vector3@)">
            <summary>
            Performs a linear interpolation between two vectors.
            </summary>
            <param name="start">Start vector.</param>
            <param name="end">End vector.</param>
            <param name="amount">Value between 0 and 1 indicating the weight of <paramref name="end"/>.</param>
            <param name="result">When the method completes, contains the linear interpolation of the two vectors.</param>
            <remarks>
            This method performs the linear interpolation based on the following formula.
            <code>start + (end - start) * amount</code>
            Passing <paramref name="amount"/> a value of 0 will cause <paramref name="start"/> to be returned; a value of 1 will cause <paramref name="end"/> to be returned. 
            </remarks>
        </member>
        <member name="M:SharpDX.Vector3.Lerp(SharpDX.Vector3,SharpDX.Vector3,System.Single)">
            <summary>
            Performs a linear interpolation between two vectors.
            </summary>
            <param name="start">Start vector.</param>
            <param name="end">End vector.</param>
            <param name="amount">Value between 0 and 1 indicating the weight of <paramref name="end"/>.</param>
            <returns>The linear interpolation of the two vectors.</returns>
            <remarks>
            This method performs the linear interpolation based on the following formula.
            <code>start + (end - start) * amount</code>
            Passing <paramref name="amount"/> a value of 0 will cause <paramref name="start"/> to be returned; a value of 1 will cause <paramref name="end"/> to be returned. 
            </remarks>
        </member>
        <member name="M:SharpDX.Vector3.SmoothStep(SharpDX.Vector3@,SharpDX.Vector3@,System.Single,SharpDX.Vector3@)">
            <summary>
            Performs a cubic interpolation between two vectors.
            </summary>
            <param name="start">Start vector.</param>
            <param name="end">End vector.</param>
            <param name="amount">Value between 0 and 1 indicating the weight of <paramref name="end"/>.</param>
            <param name="result">When the method completes, contains the cubic interpolation of the two vectors.</param>
        </member>
        <member name="M:SharpDX.Vector3.SmoothStep(SharpDX.Vector3,SharpDX.Vector3,System.Single)">
            <summary>
            Performs a cubic interpolation between two vectors.
            </summary>
            <param name="start">Start vector.</param>
            <param name="end">End vector.</param>
            <param name="amount">Value between 0 and 1 indicating the weight of <paramref name="end"/>.</param>
            <returns>The cubic interpolation of the two vectors.</returns>
        </member>
        <member name="M:SharpDX.Vector3.Hermite(SharpDX.Vector3@,SharpDX.Vector3@,SharpDX.Vector3@,SharpDX.Vector3@,System.Single,SharpDX.Vector3@)">
            <summary>
            Performs a Hermite spline interpolation.
            </summary>
            <param name="value1">First source position vector.</param>
            <param name="tangent1">First source tangent vector.</param>
            <param name="value2">Second source position vector.</param>
            <param name="tangent2">Second source tangent vector.</param>
            <param name="amount">Weighting factor.</param>
            <param name="result">When the method completes, contains the result of the Hermite spline interpolation.</param>
        </member>
        <member name="M:SharpDX.Vector3.Hermite(SharpDX.Vector3,SharpDX.Vector3,SharpDX.Vector3,SharpDX.Vector3,System.Single)">
            <summary>
            Performs a Hermite spline interpolation.
            </summary>
            <param name="value1">First source position vector.</param>
            <param name="tangent1">First source tangent vector.</param>
            <param name="value2">Second source position vector.</param>
            <param name="tangent2">Second source tangent vector.</param>
            <param name="amount">Weighting factor.</param>
            <returns>The result of the Hermite spline interpolation.</returns>
        </member>
        <member name="M:SharpDX.Vector3.CatmullRom(SharpDX.Vector3@,SharpDX.Vector3@,SharpDX.Vector3@,SharpDX.Vector3@,System.Single,SharpDX.Vector3@)">
            <summary>
            Performs a Catmull-Rom interpolation using the specified positions.
            </summary>
            <param name="value1">The first position in the interpolation.</param>
            <param name="value2">The second position in the interpolation.</param>
            <param name="value3">The third position in the interpolation.</param>
            <param name="value4">The fourth position in the interpolation.</param>
            <param name="amount">Weighting factor.</param>
            <param name="result">When the method completes, contains the result of the Catmull-Rom interpolation.</param>
        </member>
        <member name="M:SharpDX.Vector3.CatmullRom(SharpDX.Vector3,SharpDX.Vector3,SharpDX.Vector3,SharpDX.Vector3,System.Single)">
            <summary>
            Performs a Catmull-Rom interpolation using the specified positions.
            </summary>
            <param name="value1">The first position in the interpolation.</param>
            <param name="value2">The second position in the interpolation.</param>
            <param name="value3">The third position in the interpolation.</param>
            <param name="value4">The fourth position in the interpolation.</param>
            <param name="amount">Weighting factor.</param>
            <returns>A vector that is the result of the Catmull-Rom interpolation.</returns>
        </member>
        <member name="M:SharpDX.Vector3.Max(SharpDX.Vector3@,SharpDX.Vector3@,SharpDX.Vector3@)">
            <summary>
            Returns a vector containing the largest components of the specified vectors.
            </summary>
            <param name="left">The first source vector.</param>
            <param name="right">The second source vector.</param>
            <param name="result">When the method completes, contains an new vector composed of the largest components of the source vectors.</param>
        </member>
        <member name="M:SharpDX.Vector3.Max(SharpDX.Vector3,SharpDX.Vector3)">
            <summary>
            Returns a vector containing the largest components of the specified vectors.
            </summary>
            <param name="left">The first source vector.</param>
            <param name="right">The second source vector.</param>
            <returns>A vector containing the largest components of the source vectors.</returns>
        </member>
        <member name="M:SharpDX.Vector3.Min(SharpDX.Vector3@,SharpDX.Vector3@,SharpDX.Vector3@)">
            <summary>
            Returns a vector containing the smallest components of the specified vectors.
            </summary>
            <param name="left">The first source vector.</param>
            <param name="right">The second source vector.</param>
            <param name="result">When the method completes, contains an new vector composed of the smallest components of the source vectors.</param>
        </member>
        <member name="M:SharpDX.Vector3.Min(SharpDX.Vector3,SharpDX.Vector3)">
            <summary>
            Returns a vector containing the smallest components of the specified vectors.
            </summary>
            <param name="left">The first source vector.</param>
            <param name="right">The second source vector.</param>
            <returns>A vector containing the smallest components of the source vectors.</returns>
        </member>
        <member name="M:SharpDX.Vector3.Project(SharpDX.Vector3@,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,SharpDX.Matrix@,SharpDX.Vector3@)">
            <summary>
            Projects a 3D vector from object space into screen space. 
            </summary>
            <param name="vector">The vector to project.</param>
            <param name="x">The X position of the viewport.</param>
            <param name="y">The Y position of the viewport.</param>
            <param name="width">The width of the viewport.</param>
            <param name="height">The height of the viewport.</param>
            <param name="minZ">The minimum depth of the viewport.</param>
            <param name="maxZ">The maximum depth of the viewport.</param>
            <param name="worldViewProjection">The combined world-view-projection matrix.</param>
            <param name="result">When the method completes, contains the vector in screen space.</param>
        </member>
        <member name="M:SharpDX.Vector3.Project(SharpDX.Vector3,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,SharpDX.Matrix)">
            <summary>
            Projects a 3D vector from object space into screen space. 
            </summary>
            <param name="vector">The vector to project.</param>
            <param name="x">The X position of the viewport.</param>
            <param name="y">The Y position of the viewport.</param>
            <param name="width">The width of the viewport.</param>
            <param name="height">The height of the viewport.</param>
            <param name="minZ">The minimum depth of the viewport.</param>
            <param name="maxZ">The maximum depth of the viewport.</param>
            <param name="worldViewProjection">The combined world-view-projection matrix.</param>
            <returns>The vector in screen space.</returns>
        </member>
        <member name="M:SharpDX.Vector3.Unproject(SharpDX.Vector3@,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,SharpDX.Matrix@,SharpDX.Vector3@)">
            <summary>
            Projects a 3D vector from screen space into object space. 
            </summary>
            <param name="vector">The vector to project.</param>
            <param name="x">The X position of the viewport.</param>
            <param name="y">The Y position of the viewport.</param>
            <param name="width">The width of the viewport.</param>
            <param name="height">The height of the viewport.</param>
            <param name="minZ">The minimum depth of the viewport.</param>
            <param name="maxZ">The maximum depth of the viewport.</param>
            <param name="worldViewProjection">The combined world-view-projection matrix.</param>
            <param name="result">When the method completes, contains the vector in object space.</param>
        </member>
        <member name="M:SharpDX.Vector3.Unproject(SharpDX.Vector3,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,SharpDX.Matrix)">
            <summary>
            Projects a 3D vector from screen space into object space. 
            </summary>
            <param name="vector">The vector to project.</param>
            <param name="x">The X position of the viewport.</param>
            <param name="y">The Y position of the viewport.</param>
            <param name="width">The width of the viewport.</param>
            <param name="height">The height of the viewport.</param>
            <param name="minZ">The minimum depth of the viewport.</param>
            <param name="maxZ">The maximum depth of the viewport.</param>
            <param name="worldViewProjection">The combined world-view-projection matrix.</param>
            <returns>The vector in object space.</returns>
        </member>
        <member name="M:SharpDX.Vector3.Reflect(SharpDX.Vector3@,SharpDX.Vector3@,SharpDX.Vector3@)">
            <summary>
            Returns the reflection of a vector off a surface that has the specified normal. 
            </summary>
            <param name="vector">The source vector.</param>
            <param name="normal">Normal of the surface.</param>
            <param name="result">When the method completes, contains the reflected vector.</param>
            <remarks>Reflect only gives the direction of a reflection off a surface, it does not determine 
            whether the original vector was close enough to the surface to hit it.</remarks>
        </member>
        <member name="M:SharpDX.Vector3.Reflect(SharpDX.Vector3,SharpDX.Vector3)">
            <summary>
            Returns the reflection of a vector off a surface that has the specified normal. 
            </summary>
            <param name="vector">The source vector.</param>
            <param name="normal">Normal of the surface.</param>
            <returns>The reflected vector.</returns>
            <remarks>Reflect only gives the direction of a reflection off a surface, it does not determine 
            whether the original vector was close enough to the surface to hit it.</remarks>
        </member>
        <member name="M:SharpDX.Vector3.Orthogonalize(SharpDX.Vector3[],SharpDX.Vector3[])">
            <summary>
            Orthogonalizes a list of vectors.
            </summary>
            <param name="destination">The list of orthogonalized vectors.</param>
            <param name="source">The list of vectors to orthogonalize.</param>
            <remarks>
            <para>Orthogonalization is the process of making all vectors orthogonal to each other. This
            means that any given vector in the list will be orthogonal to any other given vector in the
            list.</para>
            <para>Because this method uses the modified Gram-Schmidt process, the resulting vectors
            tend to be numerically unstable. The numeric stability decreases according to the vectors
            position in the list so that the first vector is the most stable and the last vector is the
            least stable.</para>
            </remarks>
            <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="source"/> or <paramref name="destination"/> is <c>null</c>.</exception>
            <exception cref="T:System.ArgumentOutOfRangeException">Thrown when <paramref name="destination"/> is shorter in length than <paramref name="source"/>.</exception>
        </member>
        <member name="M:SharpDX.Vector3.Orthonormalize(SharpDX.Vector3[],SharpDX.Vector3[])">
            <summary>
            Orthonormalizes a list of vectors.
            </summary>
            <param name="destination">The list of orthonormalized vectors.</param>
            <param name="source">The list of vectors to orthonormalize.</param>
            <remarks>
            <para>Orthonormalization is the process of making all vectors orthogonal to each
            other and making all vectors of unit length. This means that any given vector will
            be orthogonal to any other given vector in the list.</para>
            <para>Because this method uses the modified Gram-Schmidt process, the resulting vectors
            tend to be numerically unstable. The numeric stability decreases according to the vectors
            position in the list so that the first vector is the most stable and the last vector is the
            least stable.</para>
            </remarks>
            <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="source"/> or <paramref name="destination"/> is <c>null</c>.</exception>
            <exception cref="T:System.ArgumentOutOfRangeException">Thrown when <paramref name="destination"/> is shorter in length than <paramref name="source"/>.</exception>
        </member>
        <member name="M:SharpDX.Vector3.Transform(SharpDX.Vector3@,SharpDX.Quaternion@,SharpDX.Vector3@)">
            <summary>
            Transforms a 3D vector by the given <see cref="T:SharpDX.Quaternion"/> rotation.
            </summary>
            <param name="vector">The vector to rotate.</param>
            <param name="rotation">The <see cref="T:SharpDX.Quaternion"/> rotation to apply.</param>
            <param name="result">When the method completes, contains the transformed <see cref="T:SharpDX.Vector4"/>.</param>
        </member>
        <member name="M:SharpDX.Vector3.Transform(SharpDX.Vector3,SharpDX.Quaternion)">
            <summary>
            Transforms a 3D vector by the given <see cref="T:SharpDX.Quaternion"/> rotation.
            </summary>
            <param name="vector">The vector to rotate.</param>
            <param name="rotation">The <see cref="T:SharpDX.Quaternion"/> rotation to apply.</param>
            <returns>The transformed <see cref="T:SharpDX.Vector4"/>.</returns>
        </member>
        <member name="M:SharpDX.Vector3.Transform(SharpDX.Vector3[],SharpDX.Quaternion@,SharpDX.Vector3[])">
            <summary>
            Transforms an array of vectors by the given <see cref="T:SharpDX.Quaternion"/> rotation.
            </summary>
            <param name="source">The array of vectors to transform.</param>
            <param name="rotation">The <see cref="T:SharpDX.Quaternion"/> rotation to apply.</param>
            <param name="destination">The array for which the transformed vectors are stored.
            This array may be the same array as <paramref name="source"/>.</param>
            <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="source"/> or <paramref name="destination"/> is <c>null</c>.</exception>
            <exception cref="T:System.ArgumentOutOfRangeException">Thrown when <paramref name="destination"/> is shorter in length than <paramref name="source"/>.</exception>
        </member>
        <member name="M:SharpDX.Vector3.Transform(SharpDX.Vector3@,SharpDX.Matrix@,SharpDX.Vector4@)">
            <summary>
            Transforms a 3D vector by the given <see cref="T:SharpDX.Matrix"/>.
            </summary>
            <param name="vector">The source vector.</param>
            <param name="transform">The transformation <see cref="T:SharpDX.Matrix"/>.</param>
            <param name="result">When the method completes, contains the transformed <see cref="T:SharpDX.Vector4"/>.</param>
        </member>
        <member name="M:SharpDX.Vector3.Transform(SharpDX.Vector3,SharpDX.Matrix)">
            <summary>
            Transforms a 3D vector by the given <see cref="T:SharpDX.Matrix"/>.
            </summary>
            <param name="vector">The source vector.</param>
            <param name="transform">The transformation <see cref="T:SharpDX.Matrix"/>.</param>
            <returns>The transformed <see cref="T:SharpDX.Vector4"/>.</returns>
        </member>
        <member name="M:SharpDX.Vector3.Transform(SharpDX.Vector3[],SharpDX.Matrix@,SharpDX.Vector4[])">
            <summary>
            Transforms an array of 3D vectors by the given <see cref="T:SharpDX.Matrix"/>.
            </summary>
            <param name="source">The array of vectors to transform.</param>
            <param name="transform">The transformation <see cref="T:SharpDX.Matrix"/>.</param>
            <param name="destination">The array for which the transformed vectors are stored.</param>
            <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="source"/> or <paramref name="destination"/> is <c>null</c>.</exception>
            <exception cref="T:System.ArgumentOutOfRangeException">Thrown when <paramref name="destination"/> is shorter in length than <paramref name="source"/>.</exception>
        </member>
        <member name="M:SharpDX.Vector3.TransformCoordinate(SharpDX.Vector3@,SharpDX.Matrix@,SharpDX.Vector3@)">
            <summary>
            Performs a coordinate transformation using the given <see cref="T:SharpDX.Matrix"/>.
            </summary>
            <param name="coordinate">The coordinate vector to transform.</param>
            <param name="transform">The transformation <see cref="T:SharpDX.Matrix"/>.</param>
            <param name="result">When the method completes, contains the transformed coordinates.</param>
            <remarks>
            A coordinate transform performs the transformation with the assumption that the w component
            is one. The four dimensional vector obtained from the transformation operation has each
            component in the vector divided by the w component. This forces the wcomponent to be one and
            therefore makes the vector homogeneous. The homogeneous vector is often prefered when working
            with coordinates as the w component can safely be ignored.
            </remarks>
        </member>
        <member name="M:SharpDX.Vector3.TransformCoordinate(SharpDX.Vector3,SharpDX.Matrix)">
            <summary>
            Performs a coordinate transformation using the given <see cref="T:SharpDX.Matrix"/>.
            </summary>
            <param name="coordinate">The coordinate vector to transform.</param>
            <param name="transform">The transformation <see cref="T:SharpDX.Matrix"/>.</param>
            <returns>The transformed coordinates.</returns>
            <remarks>
            A coordinate transform performs the transformation with the assumption that the w component
            is one. The four dimensional vector obtained from the transformation operation has each
            component in the vector divided by the w component. This forces the wcomponent to be one and
            therefore makes the vector homogeneous. The homogeneous vector is often prefered when working
            with coordinates as the w component can safely be ignored.
            </remarks>
        </member>
        <member name="M:SharpDX.Vector3.TransformCoordinate(SharpDX.Vector3[],SharpDX.Matrix@,SharpDX.Vector3[])">
            <summary>
            Performs a coordinate transformation on an array of vectors using the given <see cref="T:SharpDX.Matrix"/>.
            </summary>
            <param name="source">The array of coordinate vectors to trasnform.</param>
            <param name="transform">The transformation <see cref="T:SharpDX.Matrix"/>.</param>
            <param name="destination">The array for which the transformed vectors are stored.
            This array may be the same array as <paramref name="source"/>.</param>
            <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="source"/> or <paramref name="destination"/> is <c>null</c>.</exception>
            <exception cref="T:System.ArgumentOutOfRangeException">Thrown when <paramref name="destination"/> is shorter in length than <paramref name="source"/>.</exception>
            <remarks>
            A coordinate transform performs the transformation with the assumption that the w component
            is one. The four dimensional vector obtained from the transformation operation has each
            component in the vector divided by the w component. This forces the wcomponent to be one and
            therefore makes the vector homogeneous. The homogeneous vector is often prefered when working
            with coordinates as the w component can safely be ignored.
            </remarks>
        </member>
        <member name="M:SharpDX.Vector3.TransformNormal(SharpDX.Vector3@,SharpDX.Matrix@,SharpDX.Vector3@)">
            <summary>
            Performs a normal transformation using the given <see cref="T:SharpDX.Matrix"/>.
            </summary>
            <param name="normal">The normal vector to transform.</param>
            <param name="transform">The transformation <see cref="T:SharpDX.Matrix"/>.</param>
            <param name="result">When the method completes, contains the transformed normal.</param>
            <remarks>
            A normal transform performs the transformation with the assumption that the w component
            is zero. This causes the fourth row and fourth collumn of the matrix to be unused. The
            end result is a vector that is not translated, but all other transformation properties
            apply. This is often prefered for normal vectors as normals purely represent direction
            rather than location because normal vectors should not be translated.
            </remarks>
        </member>
        <member name="M:SharpDX.Vector3.TransformNormal(SharpDX.Vector3,SharpDX.Matrix)">
            <summary>
            Performs a normal transformation using the given <see cref="T:SharpDX.Matrix"/>.
            </summary>
            <param name="normal">The normal vector to transform.</param>
            <param name="transform">The transformation <see cref="T:SharpDX.Matrix"/>.</param>
            <returns>The transformed normal.</returns>
            <remarks>
            A normal transform performs the transformation with the assumption that the w component
            is zero. This causes the fourth row and fourth collumn of the matrix to be unused. The
            end result is a vector that is not translated, but all other transformation properties
            apply. This is often prefered for normal vectors as normals purely represent direction
            rather than location because normal vectors should not be translated.
            </remarks>
        </member>
        <member name="M:SharpDX.Vector3.TransformNormal(SharpDX.Vector3[],SharpDX.Matrix@,SharpDX.Vector3[])">
            <summary>
            Performs a normal transformation on an array of vectors using the given <see cref="T:SharpDX.Matrix"/>.
            </summary>
            <param name="source">The array of normal vectors to transform.</param>
            <param name="transform">The transformation <see cref="T:SharpDX.Matrix"/>.</param>
            <param name="destination">The array for which the transformed vectors are stored.
            This array may be the same array as <paramref name="source"/>.</param>
            <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="source"/> or <paramref name="destination"/> is <c>null</c>.</exception>
            <exception cref="T:System.ArgumentOutOfRangeException">Thrown when <paramref name="destination"/> is shorter in length than <paramref name="source"/>.</exception>
            <remarks>
            A normal transform performs the transformation with the assumption that the w component
            is zero. This causes the fourth row and fourth collumn of the matrix to be unused. The
            end result is a vector that is not translated, but all other transformation properties
            apply. This is often prefered for normal vectors as normals purely represent direction
            rather than location because normal vectors should not be translated.
            </remarks>
        </member>
        <member name="M:SharpDX.Vector3.op_Addition(SharpDX.Vector3,SharpDX.Vector3)">
            <summary>
            Adds two vectors.
            </summary>
            <param name="left">The first vector to add.</param>
            <param name="right">The second vector to add.</param>
            <returns>The sum of the two vectors.</returns>
        </member>
        <member name="M:SharpDX.Vector3.op_UnaryPlus(SharpDX.Vector3)">
            <summary>
            Assert a vector (return it unchanged).
            </summary>
            <param name="value">The vector to assert (unchange).</param>
            <returns>The asserted (unchanged) vector.</returns>
        </member>
        <member name="M:SharpDX.Vector3.op_Subtraction(SharpDX.Vector3,SharpDX.Vector3)">
            <summary>
            Subtracts two vectors.
            </summary>
            <param name="left">The first vector to subtract.</param>
            <param name="right">The second vector to subtract.</param>
            <returns>The difference of the two vectors.</returns>
        </member>
        <member name="M:SharpDX.Vector3.op_UnaryNegation(SharpDX.Vector3)">
            <summary>
            Reverses the direction of a given vector.
            </summary>
            <param name="value">The vector to negate.</param>
            <returns>A vector facing in the opposite direction.</returns>
        </member>
        <member name="M:SharpDX.Vector3.op_Multiply(System.Single,SharpDX.Vector3)">
            <summary>
            Scales a vector by the given value.
            </summary>
            <param name="value">The vector to scale.</param>
            <param name="scale">The amount by which to scale the vector.</param>
            <returns>The scaled vector.</returns>
        </member>
        <member name="M:SharpDX.Vector3.op_Multiply(SharpDX.Vector3,System.Single)">
            <summary>
            Scales a vector by the given value.
            </summary>
            <param name="value">The vector to scale.</param>
            <param name="scale">The amount by which to scale the vector.</param>
            <returns>The scaled vector.</returns>
        </member>
        <member name="M:SharpDX.Vector3.op_Division(SharpDX.Vector3,System.Single)">
            <summary>
            Scales a vector by the given value.
            </summary>
            <param name="value">The vector to scale.</param>
            <param name="scale">The amount by which to scale the vector.</param>
            <returns>The scaled vector.</returns>
        </member>
        <member name="M:SharpDX.Vector3.op_Equality(SharpDX.Vector3,SharpDX.Vector3)">
            <summary>
            Tests for equality between two objects.
            </summary>
            <param name="left">The first value to compare.</param>
            <param name="right">The second value to compare.</param>
            <returns><c>true</c> if <paramref name="left"/> has the same value as <paramref name="right"/>; otherwise, <c>false</c>.</returns>
        </member>
        <member name="M:SharpDX.Vector3.op_Inequality(SharpDX.Vector3,SharpDX.Vector3)">
            <summary>
            Tests for inequality between two objects.
            </summary>
            <param name="left">The first value to compare.</param>
            <param name="right">The second value to compare.</param>
            <returns><c>true</c> if <paramref name="left"/> has a different value than <paramref name="right"/>; otherwise, <c>false</c>.</returns>
        </member>
        <member name="M:SharpDX.Vector3.op_Explicit(SharpDX.Vector3)~SharpDX.Vector2">
            <summary>
            Performs an explicit conversion from <see cref="T:SharpDX.Vector3"/> to <see cref="T:SharpDX.Vector2"/>.
            </summary>
            <param name="value">The value.</param>
            <returns>The result of the conversion.</returns>
        </member>
        <member name="M:SharpDX.Vector3.op_Explicit(SharpDX.Vector3)~SharpDX.Vector4">
            <summary>
            Performs an explicit conversion from <see cref="T:SharpDX.Vector3"/> to <see cref="T:SharpDX.Vector4"/>.
            </summary>
            <param name="value">The value.</param>
            <returns>The result of the conversion.</returns>
        </member>
        <member name="M:SharpDX.Vector3.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.Vector3.ToString(System.String)">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <param name="format">The format.</param>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.Vector3.ToString(System.IFormatProvider)">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <param name="formatProvider">The format provider.</param>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.Vector3.ToString(System.String,System.IFormatProvider)">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <param name="format">The format.</param>
            <param name="formatProvider">The format provider.</param>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.Vector3.GetHashCode">
            <summary>
            Returns a hash code for this instance.
            </summary>
            <returns>
            A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. 
            </returns>
        </member>
        <member name="M:SharpDX.Vector3.Equals(SharpDX.Vector3)">
            <summary>
            Determines whether the specified <see cref="T:SharpDX.Vector3"/> is equal to this instance.
            </summary>
            <param name="other">The <see cref="T:SharpDX.Vector3"/> to compare with this instance.</param>
            <returns>
            	<c>true</c> if the specified <see cref="T:SharpDX.Vector3"/> is equal to this instance; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="M:SharpDX.Vector3.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to this instance.
            </summary>
            <param name="value">The <see cref="T:System.Object"/> to compare with this instance.</param>
            <returns>
            	<c>true</c> if the specified <see cref="T:System.Object"/> is equal to this instance; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="P:SharpDX.Vector3.IsNormalized">
            <summary>
            Gets a value indicting whether this instance is normalized.
            </summary>
        </member>
        <member name="P:SharpDX.Vector3.Item(System.Int32)">
            <summary>
            Gets or sets the component at the specified index.
            </summary>
            <value>The value of the X, Y, or Z component, depending on the index.</value>
            <param name="index">The index of the component to access. Use 0 for the X component, 1 for the Y component, and 2 for the Z component.</param>
            <returns>The value of the component at the specified index.</returns>
            <exception cref="T:System.ArgumentOutOfRangeException">Thrown when the <paramref name="index"/> is out of the range [0, 2].</exception>
        </member>
        <member name="T:SharpDX.Vector4">
            <summary>
            Represents a four dimensional mathematical vector.
            </summary>
        </member>
        <member name="F:SharpDX.Vector4.SizeInBytes">
            <summary>
            The size of the <see cref="T:SharpDX.Vector4"/> type, in bytes.
            </summary>
        </member>
        <member name="F:SharpDX.Vector4.Zero">
            <summary>
            A <see cref="T:SharpDX.Vector4"/> with all of its components set to zero.
            </summary>
        </member>
        <member name="F:SharpDX.Vector4.UnitX">
            <summary>
            The X unit <see cref="T:SharpDX.Vector4"/> (1, 0, 0, 0).
            </summary>
        </member>
        <member name="F:SharpDX.Vector4.UnitY">
            <summary>
            The Y unit <see cref="T:SharpDX.Vector4"/> (0, 1, 0, 0).
            </summary>
        </member>
        <member name="F:SharpDX.Vector4.UnitZ">
            <summary>
            The Z unit <see cref="T:SharpDX.Vector4"/> (0, 0, 1, 0).
            </summary>
        </member>
        <member name="F:SharpDX.Vector4.UnitW">
            <summary>
            The W unit <see cref="T:SharpDX.Vector4"/> (0, 0, 0, 1).
            </summary>
        </member>
        <member name="F:SharpDX.Vector4.One">
            <summary>
            A <see cref="T:SharpDX.Vector4"/> with all of its components set to one.
            </summary>
        </member>
        <member name="F:SharpDX.Vector4.X">
            <summary>
            The X component of the vector.
            </summary>
        </member>
        <member name="F:SharpDX.Vector4.Y">
            <summary>
            The Y component of the vector.
            </summary>
        </member>
        <member name="F:SharpDX.Vector4.Z">
            <summary>
            The Z component of the vector.
            </summary>
        </member>
        <member name="F:SharpDX.Vector4.W">
            <summary>
            The W component of the vector.
            </summary>
        </member>
        <member name="M:SharpDX.Vector4.#ctor(System.Single)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Vector4"/> struct.
            </summary>
            <param name="value">The value that will be assigned to all components.</param>
        </member>
        <member name="M:SharpDX.Vector4.#ctor(System.Single,System.Single,System.Single,System.Single)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Vector4"/> struct.
            </summary>
            <param name="x">Initial value for the X component of the vector.</param>
            <param name="y">Initial value for the Y component of the vector.</param>
            <param name="z">Initial value for the Z component of the vector.</param>
            <param name="w">Initial value for the W component of the vector.</param>
        </member>
        <member name="M:SharpDX.Vector4.#ctor(SharpDX.Vector3,System.Single)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Vector4"/> struct.
            </summary>
            <param name="value">A vector containing the values with which to initialize the X, Y, and Z components.</param>
            <param name="w">Initial value for the W component of the vector.</param>
        </member>
        <member name="M:SharpDX.Vector4.#ctor(SharpDX.Vector2,System.Single,System.Single)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Vector4"/> struct.
            </summary>
            <param name="value">A vector containing the values with which to initialize the X and Y components.</param>
            <param name="z">Initial value for the Z component of the vector.</param>
            <param name="w">Initial value for the W component of the vector.</param>
        </member>
        <member name="M:SharpDX.Vector4.#ctor(System.Single[])">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Vector4"/> struct.
            </summary>
            <param name="values">The values to assign to the X, Y, Z, and W components of the vector. This must be an array with four elements.</param>
            <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="values"/> is <c>null</c>.</exception>
            <exception cref="T:System.ArgumentOutOfRangeException">Thrown when <paramref name="values"/> contains more or less than four elements.</exception>
        </member>
        <member name="M:SharpDX.Vector4.Length">
            <summary>
            Calculates the length of the vector.
            </summary>
            <returns>The length of the vector.</returns>
            <remarks>
            <see cref="M:SharpDX.Vector4.LengthSquared"/> may be preferred when only the relative length is needed
            and speed is of the essence.
            </remarks>
        </member>
        <member name="M:SharpDX.Vector4.LengthSquared">
            <summary>
            Calculates the squared length of the vector.
            </summary>
            <returns>The squared length of the vector.</returns>
            <remarks>
            This method may be preferred to <see cref="M:SharpDX.Vector4.Length"/> when only a relative length is needed
            and speed is of the essence.
            </remarks>
        </member>
        <member name="M:SharpDX.Vector4.Normalize">
            <summary>
            Converts the vector into a unit vector.
            </summary>
        </member>
        <member name="M:SharpDX.Vector4.ToArray">
            <summary>
            Creates an array containing the elements of the vector.
            </summary>
            <returns>A four-element array containing the components of the vector.</returns>
        </member>
        <member name="M:SharpDX.Vector4.Add(SharpDX.Vector4@,SharpDX.Vector4@,SharpDX.Vector4@)">
            <summary>
            Adds two vectors.
            </summary>
            <param name="left">The first vector to add.</param>
            <param name="right">The second vector to add.</param>
            <param name="result">When the method completes, contains the sum of the two vectors.</param>
        </member>
        <member name="M:SharpDX.Vector4.Add(SharpDX.Vector4,SharpDX.Vector4)">
            <summary>
            Adds two vectors.
            </summary>
            <param name="left">The first vector to add.</param>
            <param name="right">The second vector to add.</param>
            <returns>The sum of the two vectors.</returns>
        </member>
        <member name="M:SharpDX.Vector4.Subtract(SharpDX.Vector4@,SharpDX.Vector4@,SharpDX.Vector4@)">
            <summary>
            Subtracts two vectors.
            </summary>
            <param name="left">The first vector to subtract.</param>
            <param name="right">The second vector to subtract.</param>
            <param name="result">When the method completes, contains the difference of the two vectors.</param>
        </member>
        <member name="M:SharpDX.Vector4.Subtract(SharpDX.Vector4,SharpDX.Vector4)">
            <summary>
            Subtracts two vectors.
            </summary>
            <param name="left">The first vector to subtract.</param>
            <param name="right">The second vector to subtract.</param>
            <returns>The difference of the two vectors.</returns>
        </member>
        <member name="M:SharpDX.Vector4.Multiply(SharpDX.Vector4@,System.Single,SharpDX.Vector4@)">
            <summary>
            Scales a vector by the given value.
            </summary>
            <param name="value">The vector to scale.</param>
            <param name="scale">The amount by which to scale the vector.</param>
            <param name="result">When the method completes, contains the scaled vector.</param>
        </member>
        <member name="M:SharpDX.Vector4.Multiply(SharpDX.Vector4,System.Single)">
            <summary>
            Scales a vector by the given value.
            </summary>
            <param name="value">The vector to scale.</param>
            <param name="scale">The amount by which to scale the vector.</param>
            <returns>The scaled vector.</returns>
        </member>
        <member name="M:SharpDX.Vector4.Modulate(SharpDX.Vector4@,SharpDX.Vector4@,SharpDX.Vector4@)">
            <summary>
            Modulates a vector with another by performing component-wise multiplication.
            </summary>
            <param name="left">The first vector to modulate.</param>
            <param name="right">The second vector to modulate.</param>
            <param name="result">When the method completes, contains the modulated vector.</param>
        </member>
        <member name="M:SharpDX.Vector4.Modulate(SharpDX.Vector4,SharpDX.Vector4)">
            <summary>
            Modulates a vector with another by performing component-wise multiplication.
            </summary>
            <param name="left">The first vector to modulate.</param>
            <param name="right">The second vector to modulate.</param>
            <returns>The modulated vector.</returns>
        </member>
        <member name="M:SharpDX.Vector4.Divide(SharpDX.Vector4@,System.Single,SharpDX.Vector4@)">
            <summary>
            Scales a vector by the given value.
            </summary>
            <param name="value">The vector to scale.</param>
            <param name="scale">The amount by which to scale the vector.</param>
            <param name="result">When the method completes, contains the scaled vector.</param>
        </member>
        <member name="M:SharpDX.Vector4.Divide(SharpDX.Vector4,System.Single)">
            <summary>
            Scales a vector by the given value.
            </summary>
            <param name="value">The vector to scale.</param>
            <param name="scale">The amount by which to scale the vector.</param>
            <returns>The scaled vector.</returns>
        </member>
        <member name="M:SharpDX.Vector4.Negate(SharpDX.Vector4@,SharpDX.Vector4@)">
            <summary>
            Reverses the direction of a given vector.
            </summary>
            <param name="value">The vector to negate.</param>
            <param name="result">When the method completes, contains a vector facing in the opposite direction.</param>
        </member>
        <member name="M:SharpDX.Vector4.Negate(SharpDX.Vector4)">
            <summary>
            Reverses the direction of a given vector.
            </summary>
            <param name="value">The vector to negate.</param>
            <returns>A vector facing in the opposite direction.</returns>
        </member>
        <member name="M:SharpDX.Vector4.Barycentric(SharpDX.Vector4@,SharpDX.Vector4@,SharpDX.Vector4@,System.Single,System.Single,SharpDX.Vector4@)">
            <summary>
            Returns a <see cref="T:SharpDX.Vector4"/> containing the 4D Cartesian coordinates of a point specified in Barycentric coordinates relative to a 4D triangle.
            </summary>
            <param name="value1">A <see cref="T:SharpDX.Vector4"/> containing the 4D Cartesian coordinates of vertex 1 of the triangle.</param>
            <param name="value2">A <see cref="T:SharpDX.Vector4"/> containing the 4D Cartesian coordinates of vertex 2 of the triangle.</param>
            <param name="value3">A <see cref="T:SharpDX.Vector4"/> containing the 4D Cartesian coordinates of vertex 3 of the triangle.</param>
            <param name="amount1">Barycentric coordinate b2, which expresses the weighting factor toward vertex 2 (specified in <paramref name="value2"/>).</param>
            <param name="amount2">Barycentric coordinate b3, which expresses the weighting factor toward vertex 3 (specified in <paramref name="value3"/>).</param>
            <param name="result">When the method completes, contains the 4D Cartesian coordinates of the specified point.</param>
        </member>
        <member name="M:SharpDX.Vector4.Barycentric(SharpDX.Vector4,SharpDX.Vector4,SharpDX.Vector4,System.Single,System.Single)">
            <summary>
            Returns a <see cref="T:SharpDX.Vector4"/> containing the 4D Cartesian coordinates of a point specified in Barycentric coordinates relative to a 4D triangle.
            </summary>
            <param name="value1">A <see cref="T:SharpDX.Vector4"/> containing the 4D Cartesian coordinates of vertex 1 of the triangle.</param>
            <param name="value2">A <see cref="T:SharpDX.Vector4"/> containing the 4D Cartesian coordinates of vertex 2 of the triangle.</param>
            <param name="value3">A <see cref="T:SharpDX.Vector4"/> containing the 4D Cartesian coordinates of vertex 3 of the triangle.</param>
            <param name="amount1">Barycentric coordinate b2, which expresses the weighting factor toward vertex 2 (specified in <paramref name="value2"/>).</param>
            <param name="amount2">Barycentric coordinate b3, which expresses the weighting factor toward vertex 3 (specified in <paramref name="value3"/>).</param>
            <returns>A new <see cref="T:SharpDX.Vector4"/> containing the 4D Cartesian coordinates of the specified point.</returns>
        </member>
        <member name="M:SharpDX.Vector4.Clamp(SharpDX.Vector4@,SharpDX.Vector4@,SharpDX.Vector4@,SharpDX.Vector4@)">
            <summary>
            Restricts a value to be within a specified range.
            </summary>
            <param name="value">The value to clamp.</param>
            <param name="min">The minimum value.</param>
            <param name="max">The maximum value.</param>
            <param name="result">When the method completes, contains the clamped value.</param>
        </member>
        <member name="M:SharpDX.Vector4.Clamp(SharpDX.Vector4,SharpDX.Vector4,SharpDX.Vector4)">
            <summary>
            Restricts a value to be within a specified range.
            </summary>
            <param name="value">The value to clamp.</param>
            <param name="min">The minimum value.</param>
            <param name="max">The maximum value.</param>
            <returns>The clamped value.</returns>
        </member>
        <member name="M:SharpDX.Vector4.Distance(SharpDX.Vector4@,SharpDX.Vector4@,System.Single@)">
            <summary>
            Calculates the distance between two vectors.
            </summary>
            <param name="value1">The first vector.</param>
            <param name="value2">The second vector.</param>
            <param name="result">When the method completes, contains the distance between the two vectors.</param>
            <remarks>
            <see cref="M:SharpDX.Vector4.DistanceSquared(SharpDX.Vector4@,SharpDX.Vector4@,System.Single@)"/> may be preferred when only the relative distance is needed
            and speed is of the essence.
            </remarks>
        </member>
        <member name="M:SharpDX.Vector4.Distance(SharpDX.Vector4,SharpDX.Vector4)">
            <summary>
            Calculates the distance between two vectors.
            </summary>
            <param name="value1">The first vector.</param>
            <param name="value2">The second vector.</param>
            <returns>The distance between the two vectors.</returns>
            <remarks>
            <see cref="M:SharpDX.Vector4.DistanceSquared(SharpDX.Vector4,SharpDX.Vector4)"/> may be preferred when only the relative distance is needed
            and speed is of the essence.
            </remarks>
        </member>
        <member name="M:SharpDX.Vector4.DistanceSquared(SharpDX.Vector4@,SharpDX.Vector4@,System.Single@)">
            <summary>
            Calculates the squared distance between two vectors.
            </summary>
            <param name="value1">The first vector.</param>
            <param name="value2">The second vector.</param>
            <param name="result">When the method completes, contains the squared distance between the two vectors.</param>
            <remarks>Distance squared is the value before taking the square root. 
            Distance squared can often be used in place of distance if relative comparisons are being made. 
            For example, consider three points A, B, and C. To determine whether B or C is further from A, 
            compare the distance between A and B to the distance between A and C. Calculating the two distances 
            involves two square roots, which are computationally expensive. However, using distance squared 
            provides the same information and avoids calculating two square roots.
            </remarks>
        </member>
        <member name="M:SharpDX.Vector4.DistanceSquared(SharpDX.Vector4,SharpDX.Vector4)">
            <summary>
            Calculates the squared distance between two vectors.
            </summary>
            <param name="value1">The first vector.</param>
            <param name="value2">The second vector.</param>
            <returns>The squared distance between the two vectors.</returns>
            <remarks>Distance squared is the value before taking the square root. 
            Distance squared can often be used in place of distance if relative comparisons are being made. 
            For example, consider three points A, B, and C. To determine whether B or C is further from A, 
            compare the distance between A and B to the distance between A and C. Calculating the two distances 
            involves two square roots, which are computationally expensive. However, using distance squared 
            provides the same information and avoids calculating two square roots.
            </remarks>
        </member>
        <member name="M:SharpDX.Vector4.Dot(SharpDX.Vector4@,SharpDX.Vector4@,System.Single@)">
            <summary>
            Calculates the dot product of two vectors.
            </summary>
            <param name="left">First source vector</param>
            <param name="right">Second source vector.</param>
            <param name="result">When the method completes, contains the dot product of the two vectors.</param>
        </member>
        <member name="M:SharpDX.Vector4.Dot(SharpDX.Vector4,SharpDX.Vector4)">
            <summary>
            Calculates the dot product of two vectors.
            </summary>
            <param name="left">First source vector.</param>
            <param name="right">Second source vector.</param>
            <returns>The dot product of the two vectors.</returns>
        </member>
        <member name="M:SharpDX.Vector4.Normalize(SharpDX.Vector4@,SharpDX.Vector4@)">
            <summary>
            Converts the vector into a unit vector.
            </summary>
            <param name="value">The vector to normalize.</param>
            <param name="result">When the method completes, contains the normalized vector.</param>
        </member>
        <member name="M:SharpDX.Vector4.Normalize(SharpDX.Vector4)">
            <summary>
            Converts the vector into a unit vector.
            </summary>
            <param name="value">The vector to normalize.</param>
            <returns>The normalized vector.</returns>
        </member>
        <member name="M:SharpDX.Vector4.Lerp(SharpDX.Vector4@,SharpDX.Vector4@,System.Single,SharpDX.Vector4@)">
            <summary>
            Performs a linear interpolation between two vectors.
            </summary>
            <param name="start">Start vector.</param>
            <param name="end">End vector.</param>
            <param name="amount">Value between 0 and 1 indicating the weight of <paramref name="end"/>.</param>
            <param name="result">When the method completes, contains the linear interpolation of the two vectors.</param>
            <remarks>
            This method performs the linear interpolation based on the following formula.
            <code>start + (end - start) * amount</code>
            Passing <paramref name="amount"/> a value of 0 will cause <paramref name="start"/> to be returned; a value of 1 will cause <paramref name="end"/> to be returned. 
            </remarks>
        </member>
        <member name="M:SharpDX.Vector4.Lerp(SharpDX.Vector4,SharpDX.Vector4,System.Single)">
            <summary>
            Performs a linear interpolation between two vectors.
            </summary>
            <param name="start">Start vector.</param>
            <param name="end">End vector.</param>
            <param name="amount">Value between 0 and 1 indicating the weight of <paramref name="end"/>.</param>
            <returns>The linear interpolation of the two vectors.</returns>
            <remarks>
            This method performs the linear interpolation based on the following formula.
            <code>start + (end - start) * amount</code>
            Passing <paramref name="amount"/> a value of 0 will cause <paramref name="start"/> to be returned; a value of 1 will cause <paramref name="end"/> to be returned. 
            </remarks>
        </member>
        <member name="M:SharpDX.Vector4.SmoothStep(SharpDX.Vector4@,SharpDX.Vector4@,System.Single,SharpDX.Vector4@)">
            <summary>
            Performs a cubic interpolation between two vectors.
            </summary>
            <param name="start">Start vector.</param>
            <param name="end">End vector.</param>
            <param name="amount">Value between 0 and 1 indicating the weight of <paramref name="end"/>.</param>
            <param name="result">When the method completes, contains the cubic interpolation of the two vectors.</param>
        </member>
        <member name="M:SharpDX.Vector4.SmoothStep(SharpDX.Vector4,SharpDX.Vector4,System.Single)">
            <summary>
            Performs a cubic interpolation between two vectors.
            </summary>
            <param name="start">Start vector.</param>
            <param name="end">End vector.</param>
            <param name="amount">Value between 0 and 1 indicating the weight of <paramref name="end"/>.</param>
            <returns>The cubic interpolation of the two vectors.</returns>
        </member>
        <member name="M:SharpDX.Vector4.Hermite(SharpDX.Vector4@,SharpDX.Vector4@,SharpDX.Vector4@,SharpDX.Vector4@,System.Single,SharpDX.Vector4@)">
            <summary>
            Performs a Hermite spline interpolation.
            </summary>
            <param name="value1">First source position vector.</param>
            <param name="tangent1">First source tangent vector.</param>
            <param name="value2">Second source position vector.</param>
            <param name="tangent2">Second source tangent vector.</param>
            <param name="amount">Weighting factor.</param>
            <param name="result">When the method completes, contains the result of the Hermite spline interpolation.</param>
        </member>
        <member name="M:SharpDX.Vector4.Hermite(SharpDX.Vector4,SharpDX.Vector4,SharpDX.Vector4,SharpDX.Vector4,System.Single)">
            <summary>
            Performs a Hermite spline interpolation.
            </summary>
            <param name="value1">First source position vector.</param>
            <param name="tangent1">First source tangent vector.</param>
            <param name="value2">Second source position vector.</param>
            <param name="tangent2">Second source tangent vector.</param>
            <param name="amount">Weighting factor.</param>
            <returns>The result of the Hermite spline interpolation.</returns>
        </member>
        <member name="M:SharpDX.Vector4.CatmullRom(SharpDX.Vector4@,SharpDX.Vector4@,SharpDX.Vector4@,SharpDX.Vector4@,System.Single,SharpDX.Vector4@)">
            <summary>
            Performs a Catmull-Rom interpolation using the specified positions.
            </summary>
            <param name="value1">The first position in the interpolation.</param>
            <param name="value2">The second position in the interpolation.</param>
            <param name="value3">The third position in the interpolation.</param>
            <param name="value4">The fourth position in the interpolation.</param>
            <param name="amount">Weighting factor.</param>
            <param name="result">When the method completes, contains the result of the Catmull-Rom interpolation.</param>
        </member>
        <member name="M:SharpDX.Vector4.CatmullRom(SharpDX.Vector4,SharpDX.Vector4,SharpDX.Vector4,SharpDX.Vector4,System.Single)">
            <summary>
            Performs a Catmull-Rom interpolation using the specified positions.
            </summary>
            <param name="value1">The first position in the interpolation.</param>
            <param name="value2">The second position in the interpolation.</param>
            <param name="value3">The third position in the interpolation.</param>
            <param name="value4">The fourth position in the interpolation.</param>
            <param name="amount">Weighting factor.</param>
            <returns>A vector that is the result of the Catmull-Rom interpolation.</returns>
        </member>
        <member name="M:SharpDX.Vector4.Max(SharpDX.Vector4@,SharpDX.Vector4@,SharpDX.Vector4@)">
            <summary>
            Returns a vector containing the largest components of the specified vectors.
            </summary>
            <param name="left">The first source vector.</param>
            <param name="right">The second source vector.</param>
            <param name="result">When the method completes, contains an new vector composed of the largest components of the source vectors.</param>
        </member>
        <member name="M:SharpDX.Vector4.Max(SharpDX.Vector4,SharpDX.Vector4)">
            <summary>
            Returns a vector containing the largest components of the specified vectors.
            </summary>
            <param name="left">The first source vector.</param>
            <param name="right">The second source vector.</param>
            <returns>A vector containing the largest components of the source vectors.</returns>
        </member>
        <member name="M:SharpDX.Vector4.Min(SharpDX.Vector4@,SharpDX.Vector4@,SharpDX.Vector4@)">
            <summary>
            Returns a vector containing the smallest components of the specified vectors.
            </summary>
            <param name="left">The first source vector.</param>
            <param name="right">The second source vector.</param>
            <param name="result">When the method completes, contains an new vector composed of the smallest components of the source vectors.</param>
        </member>
        <member name="M:SharpDX.Vector4.Min(SharpDX.Vector4,SharpDX.Vector4)">
            <summary>
            Returns a vector containing the smallest components of the specified vectors.
            </summary>
            <param name="left">The first source vector.</param>
            <param name="right">The second source vector.</param>
            <returns>A vector containing the smallest components of the source vectors.</returns>
        </member>
        <member name="M:SharpDX.Vector4.Orthogonalize(SharpDX.Vector4[],SharpDX.Vector4[])">
            <summary>
            Orthogonalizes a list of vectors.
            </summary>
            <param name="destination">The list of orthogonalized vectors.</param>
            <param name="source">The list of vectors to orthogonalize.</param>
            <remarks>
            <para>Orthogonalization is the process of making all vectors orthogonal to each other. This
            means that any given vector in the list will be orthogonal to any other given vector in the
            list.</para>
            <para>Because this method uses the modified Gram-Schmidt process, the resulting vectors
            tend to be numerically unstable. The numeric stability decreases according to the vectors
            position in the list so that the first vector is the most stable and the last vector is the
            least stable.</para>
            </remarks>
            <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="source"/> or <paramref name="destination"/> is <c>null</c>.</exception>
            <exception cref="T:System.ArgumentOutOfRangeException">Thrown when <paramref name="destination"/> is shorter in length than <paramref name="source"/>.</exception>
        </member>
        <member name="M:SharpDX.Vector4.Orthonormalize(SharpDX.Vector4[],SharpDX.Vector4[])">
            <summary>
            Orthonormalizes a list of vectors.
            </summary>
            <param name="destination">The list of orthonormalized vectors.</param>
            <param name="source">The list of vectors to orthonormalize.</param>
            <remarks>
            <para>Orthonormalization is the process of making all vectors orthogonal to each
            other and making all vectors of unit length. This means that any given vector will
            be orthogonal to any other given vector in the list.</para>
            <para>Because this method uses the modified Gram-Schmidt process, the resulting vectors
            tend to be numerically unstable. The numeric stability decreases according to the vectors
            position in the list so that the first vector is the most stable and the last vector is the
            least stable.</para>
            </remarks>
            <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="source"/> or <paramref name="destination"/> is <c>null</c>.</exception>
            <exception cref="T:System.ArgumentOutOfRangeException">Thrown when <paramref name="destination"/> is shorter in length than <paramref name="source"/>.</exception>
        </member>
        <member name="M:SharpDX.Vector4.Transform(SharpDX.Vector4@,SharpDX.Quaternion@,SharpDX.Vector4@)">
            <summary>
            Transforms a 4D vector by the given <see cref="T:SharpDX.Quaternion"/> rotation.
            </summary>
            <param name="vector">The vector to rotate.</param>
            <param name="rotation">The <see cref="T:SharpDX.Quaternion"/> rotation to apply.</param>
            <param name="result">When the method completes, contains the transformed <see cref="T:SharpDX.Vector4"/>.</param>
        </member>
        <member name="M:SharpDX.Vector4.Transform(SharpDX.Vector4,SharpDX.Quaternion)">
            <summary>
            Transforms a 4D vector by the given <see cref="T:SharpDX.Quaternion"/> rotation.
            </summary>
            <param name="vector">The vector to rotate.</param>
            <param name="rotation">The <see cref="T:SharpDX.Quaternion"/> rotation to apply.</param>
            <returns>The transformed <see cref="T:SharpDX.Vector4"/>.</returns>
        </member>
        <member name="M:SharpDX.Vector4.Transform(SharpDX.Vector4[],SharpDX.Quaternion@,SharpDX.Vector4[])">
            <summary>
            Transforms an array of vectors by the given <see cref="T:SharpDX.Quaternion"/> rotation.
            </summary>
            <param name="source">The array of vectors to transform.</param>
            <param name="rotation">The <see cref="T:SharpDX.Quaternion"/> rotation to apply.</param>
            <param name="destination">The array for which the transformed vectors are stored.
            This array may be the same array as <paramref name="source"/>.</param>
            <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="source"/> or <paramref name="destination"/> is <c>null</c>.</exception>
            <exception cref="T:System.ArgumentOutOfRangeException">Thrown when <paramref name="destination"/> is shorter in length than <paramref name="source"/>.</exception>
        </member>
        <member name="M:SharpDX.Vector4.Transform(SharpDX.Vector4@,SharpDX.Matrix@,SharpDX.Vector4@)">
            <summary>
            Transforms a 4D vector by the given <see cref="T:SharpDX.Matrix"/>.
            </summary>
            <param name="vector">The source vector.</param>
            <param name="transform">The transformation <see cref="T:SharpDX.Matrix"/>.</param>
            <param name="result">When the method completes, contains the transformed <see cref="T:SharpDX.Vector4"/>.</param>
        </member>
        <member name="M:SharpDX.Vector4.Transform(SharpDX.Vector4,SharpDX.Matrix)">
            <summary>
            Transforms a 4D vector by the given <see cref="T:SharpDX.Matrix"/>.
            </summary>
            <param name="vector">The source vector.</param>
            <param name="transform">The transformation <see cref="T:SharpDX.Matrix"/>.</param>
            <returns>The transformed <see cref="T:SharpDX.Vector4"/>.</returns>
        </member>
        <member name="M:SharpDX.Vector4.Transform(SharpDX.Vector4@,SharpDX.Matrix5x4@,SharpDX.Vector4@)">
            <summary>
            Transforms a 4D vector by the given <see cref="T:SharpDX.Matrix5x4"/>.
            </summary>
            <param name="vector">The source vector.</param>
            <param name="transform">The transformation <see cref="T:SharpDX.Matrix5x4"/>.</param>
            <param name="result">When the method completes, contains the transformed <see cref="T:SharpDX.Vector4"/>.</param>
        </member>
        <member name="M:SharpDX.Vector4.Transform(SharpDX.Vector4,SharpDX.Matrix5x4)">
            <summary>
            Transforms a 4D vector by the given <see cref="T:SharpDX.Matrix5x4"/>.
            </summary>
            <param name="vector">The source vector.</param>
            <param name="transform">The transformation <see cref="T:SharpDX.Matrix5x4"/>.</param>
            <returns>The transformed <see cref="T:SharpDX.Vector4"/>.</returns>
        </member>
        <member name="M:SharpDX.Vector4.Transform(SharpDX.Vector4[],SharpDX.Matrix@,SharpDX.Vector4[])">
            <summary>
            Transforms an array of 4D vectors by the given <see cref="T:SharpDX.Matrix"/>.
            </summary>
            <param name="source">The array of vectors to transform.</param>
            <param name="transform">The transformation <see cref="T:SharpDX.Matrix"/>.</param>
            <param name="destination">The array for which the transformed vectors are stored.
            This array may be the same array as <paramref name="source"/>.</param>
            <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="source"/> or <paramref name="destination"/> is <c>null</c>.</exception>
            <exception cref="T:System.ArgumentOutOfRangeException">Thrown when <paramref name="destination"/> is shorter in length than <paramref name="source"/>.</exception>
        </member>
        <member name="M:SharpDX.Vector4.op_Addition(SharpDX.Vector4,SharpDX.Vector4)">
            <summary>
            Adds two vectors.
            </summary>
            <param name="left">The first vector to add.</param>
            <param name="right">The second vector to add.</param>
            <returns>The sum of the two vectors.</returns>
        </member>
        <member name="M:SharpDX.Vector4.op_UnaryPlus(SharpDX.Vector4)">
            <summary>
            Assert a vector (return it unchanged).
            </summary>
            <param name="value">The vector to assert (unchange).</param>
            <returns>The asserted (unchanged) vector.</returns>
        </member>
        <member name="M:SharpDX.Vector4.op_Subtraction(SharpDX.Vector4,SharpDX.Vector4)">
            <summary>
            Subtracts two vectors.
            </summary>
            <param name="left">The first vector to subtract.</param>
            <param name="right">The second vector to subtract.</param>
            <returns>The difference of the two vectors.</returns>
        </member>
        <member name="M:SharpDX.Vector4.op_UnaryNegation(SharpDX.Vector4)">
            <summary>
            Reverses the direction of a given vector.
            </summary>
            <param name="value">The vector to negate.</param>
            <returns>A vector facing in the opposite direction.</returns>
        </member>
        <member name="M:SharpDX.Vector4.op_Multiply(System.Single,SharpDX.Vector4)">
            <summary>
            Scales a vector by the given value.
            </summary>
            <param name="value">The vector to scale.</param>
            <param name="scale">The amount by which to scale the vector.</param>
            <returns>The scaled vector.</returns>
        </member>
        <member name="M:SharpDX.Vector4.op_Multiply(SharpDX.Vector4,System.Single)">
            <summary>
            Scales a vector by the given value.
            </summary>
            <param name="value">The vector to scale.</param>
            <param name="scale">The amount by which to scale the vector.</param>
            <returns>The scaled vector.</returns>
        </member>
        <member name="M:SharpDX.Vector4.op_Division(SharpDX.Vector4,System.Single)">
            <summary>
            Scales a vector by the given value.
            </summary>
            <param name="value">The vector to scale.</param>
            <param name="scale">The amount by which to scale the vector.</param>
            <returns>The scaled vector.</returns>
        </member>
        <member name="M:SharpDX.Vector4.op_Equality(SharpDX.Vector4,SharpDX.Vector4)">
            <summary>
            Tests for equality between two objects.
            </summary>
            <param name="left">The first value to compare.</param>
            <param name="right">The second value to compare.</param>
            <returns><c>true</c> if <paramref name="left"/> has the same value as <paramref name="right"/>; otherwise, <c>false</c>.</returns>
        </member>
        <member name="M:SharpDX.Vector4.op_Inequality(SharpDX.Vector4,SharpDX.Vector4)">
            <summary>
            Tests for inequality between two objects.
            </summary>
            <param name="left">The first value to compare.</param>
            <param name="right">The second value to compare.</param>
            <returns><c>true</c> if <paramref name="left"/> has a different value than <paramref name="right"/>; otherwise, <c>false</c>.</returns>
        </member>
        <member name="M:SharpDX.Vector4.op_Explicit(SharpDX.Vector4)~SharpDX.Vector2">
            <summary>
            Performs an explicit conversion from <see cref="T:SharpDX.Vector4"/> to <see cref="T:SharpDX.Vector2"/>.
            </summary>
            <param name="value">The value.</param>
            <returns>The result of the conversion.</returns>
        </member>
        <member name="M:SharpDX.Vector4.op_Explicit(SharpDX.Vector4)~SharpDX.Vector3">
            <summary>
            Performs an explicit conversion from <see cref="T:SharpDX.Vector4"/> to <see cref="T:SharpDX.Vector3"/>.
            </summary>
            <param name="value">The value.</param>
            <returns>The result of the conversion.</returns>
        </member>
        <member name="M:SharpDX.Vector4.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.Vector4.ToString(System.String)">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <param name="format">The format.</param>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.Vector4.ToString(System.IFormatProvider)">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <param name="formatProvider">The format provider.</param>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.Vector4.ToString(System.String,System.IFormatProvider)">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <param name="format">The format.</param>
            <param name="formatProvider">The format provider.</param>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="M:SharpDX.Vector4.GetHashCode">
            <summary>
            Returns a hash code for this instance.
            </summary>
            <returns>
            A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. 
            </returns>
        </member>
        <member name="M:SharpDX.Vector4.Equals(SharpDX.Vector4)">
            <summary>
            Determines whether the specified <see cref="T:SharpDX.Vector4"/> is equal to this instance.
            </summary>
            <param name="other">The <see cref="T:SharpDX.Vector4"/> to compare with this instance.</param>
            <returns>
            <c>true</c> if the specified <see cref="T:SharpDX.Vector4"/> is equal to this instance; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="M:SharpDX.Vector4.Equals(System.Object)">
            <summary>
            Determines whether the specified <see cref="T:System.Object"/> is equal to this instance.
            </summary>
            <param name="value">The <see cref="T:System.Object"/> to compare with this instance.</param>
            <returns>
            <c>true</c> if the specified <see cref="T:System.Object"/> is equal to this instance; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="P:SharpDX.Vector4.IsNormalized">
            <summary>
            Gets a value indicting whether this instance is normalized.
            </summary>
        </member>
        <member name="P:SharpDX.Vector4.Item(System.Int32)">
            <summary>
            Gets or sets the component at the specified index.
            </summary>
            <value>The value of the X, Y, Z, or W component, depending on the index.</value>
            <param name="index">The index of the component to access. Use 0 for the X component, 1 for the Y component, 2 for the Z component, and 3 for the W component.</param>
            <returns>The value of the component at the specified index.</returns>
            <exception cref="T:System.ArgumentOutOfRangeException">Thrown when the <paramref name="index"/> is out of the range [0, 3].</exception>
        </member>
        <member name="T:SharpDX.Win32.ComStreamShadow">
            <summary>
            Internal FontFileEnumerator callback
            </summary>
        </member>
        <member name="T:SharpDX.Win32.ComStreamBaseShadow">
            <summary>
            Internal FontFileEnumerator Callback
            </summary>
        </member>
        <member name="T:SharpDX.Win32.ComStreamBaseShadow.ComStreamBaseVtbl.ReadDelegate">
            <unmanaged>HRESULT ISequentialStream::Read([Out, Buffer] void* pv,[In] unsigned int cb,[Out, Optional] unsigned int* pcbRead)</unmanaged>	
        </member>
        <member name="T:SharpDX.Win32.ComStreamBaseShadow.ComStreamBaseVtbl.WriteDelegate">
            <unmanaged>HRESULT ISequentialStream::Write([In, Buffer] const void* pv,[In] unsigned int cb,[Out, Optional] unsigned int* pcbWritten)</unmanaged>	
        </member>
        <member name="M:SharpDX.Win32.ComStreamShadow.ToIntPtr(SharpDX.Win32.IStream)">
            <summary>
            Callbacks to pointer.
            </summary>
            <param name="stream">The stream.</param>
            <returns></returns>
        </member>
        <member name="T:SharpDX.Win32.ComStreamShadow.ComStreamVtbl.SeekDelegate">
            <unmanaged>HRESULT IStream::Seek([In] LARGE_INTEGER dlibMove,[In] SHARPDX_SEEKORIGIN dwOrigin,[Out, Optional] ULARGE_INTEGER* plibNewPosition)</unmanaged>	
        </member>
        <member name="T:SharpDX.Win32.ComStreamShadow.ComStreamVtbl.SetSizeDelegate">
            <unmanaged>HRESULT IStream::SetSize([In] ULARGE_INTEGER libNewSize)</unmanaged>	
        </member>
        <member name="T:SharpDX.Win32.ComStreamShadow.ComStreamVtbl.CopyToDelegate">
            <unmanaged>HRESULT IStream::CopyTo([In] IStream* pstm,[In] ULARGE_INTEGER cb,[Out, Optional] ULARGE_INTEGER* pcbRead,[Out, Optional] ULARGE_INTEGER* pcbWritten)</unmanaged>	
        </member>
        <member name="T:SharpDX.Win32.ComStreamShadow.ComStreamVtbl.CommitDelegate">
            <unmanaged>HRESULT IStream::Commit([In] STGC grfCommitFlags)</unmanaged>	
        </member>
        <member name="T:SharpDX.Win32.ComStreamShadow.ComStreamVtbl.RevertDelegate">
            <unmanaged>HRESULT IStream::Revert()</unmanaged>	
        </member>
        <member name="T:SharpDX.Win32.ComStreamShadow.ComStreamVtbl.LockRegionDelegate">
            <unmanaged>HRESULT IStream::LockRegion([In] ULARGE_INTEGER libOffset,[In] ULARGE_INTEGER cb,[In] LOCKTYPE dwLockType)</unmanaged>	
        </member>
        <member name="T:SharpDX.Win32.ComStreamShadow.ComStreamVtbl.UnlockRegionDelegate">
            <unmanaged>HRESULT IStream::UnlockRegion([In] ULARGE_INTEGER libOffset,[In] ULARGE_INTEGER cb,[In] LOCKTYPE dwLockType)</unmanaged>	
        </member>
        <member name="T:SharpDX.Win32.ComStreamShadow.ComStreamVtbl.StatDelegate">
            <unmanaged>HRESULT IStream::Stat([Out] STATSTG* pstatstg,[In] STATFLAG grfStatFlag)</unmanaged>	
        </member>
        <member name="T:SharpDX.Win32.ComStreamShadow.ComStreamVtbl.CloneDelegate">
            <unmanaged>HRESULT IStream::Clone([Out] IStream** ppstm)</unmanaged>	
        </member>
        <member name="M:SharpDX.Win32.ErrorCodeHelper.ToResult(SharpDX.Win32.ErrorCode)">
            <summary>
            Converts a win32 error code to a <see cref="T:SharpDX.Result"/>.
            </summary>
            <param name="errorCode">The error code.</param>
            <returns>A HRESULT code</returns>
        </member>
        <member name="M:SharpDX.Win32.ErrorCodeHelper.ToResult(System.Int32)">
            <summary>
            Converts a win32 error code to a <see cref="T:SharpDX.Result"/>.
            </summary>
            <param name="errorCode">The error code.</param>
            <returns>A HRESULT code</returns>
        </member>
        <member name="T:SharpDX.Win32.NamespaceDoc">
            <summary>
            The <see cref="N:SharpDX.Win32"/> namespace contains common enumerations, structures and helper classes for Win32 low-level API.
            </summary>
        </member>
        <member name="T:SharpDX.Win32.PropertyBag">
            <summary>
            Implementation of OLE IPropertyBag2.
            </summary>
            <unmanaged>IPropertyBag2</unmanaged>
        </member>
        <member name="M:SharpDX.Win32.PropertyBag.#ctor(System.IntPtr)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Win32.PropertyBag"/> class.
            </summary>
            <param name="propertyBagPointer">The property bag pointer.</param>
        </member>
        <member name="M:SharpDX.Win32.PropertyBag.Get(System.String)">
            <summary>
            Gets the value of the property with this name.
            </summary>
            <param name="name">The name.</param>
            <returns>Value of the property</returns>
        </member>
        <member name="M:SharpDX.Win32.PropertyBag.Get``2(SharpDX.Win32.PropertyKey{``0,``1})">
            <summary>
            Gets the value of the property by using a <see cref="T:SharpDX.Win32.PropertyKey`2"/>
            </summary>
            <typeparam name="T1">The public type of this property.</typeparam>
            <typeparam name="T2">The marshaling type of this property.</typeparam>
            <param name="propertyKey">The property key.</param>
            <returns>Value of the property</returns>
        </member>
        <member name="M:SharpDX.Win32.PropertyBag.Set(System.String,System.Object)">
            <summary>
            Sets the value of the property with this name
            </summary>
            <param name="name">The name.</param>
            <param name="value">The value.</param>
        </member>
        <member name="M:SharpDX.Win32.PropertyBag.Set``2(SharpDX.Win32.PropertyKey{``0,``1},``0)">
            <summary>
            Sets the value of the property by using a <see cref="T:SharpDX.Win32.PropertyKey`2"/>
            </summary>
            <typeparam name="T1">The public type of this property.</typeparam>
            <typeparam name="T2">The marshaling type of this property.</typeparam>
            <param name="propertyKey">The property key.</param>
            <param name="value">The value.</param>
        </member>
        <member name="P:SharpDX.Win32.PropertyBag.Count">
            <summary>
            Gets the number of properties.
            </summary>
        </member>
        <member name="P:SharpDX.Win32.PropertyBag.Keys">
            <summary>
            Gets the keys.
            </summary>
        </member>
        <member name="T:SharpDX.Win32.PropertyKey`2">
            <summary>
            Identifies a typed property in a <see cref="T:SharpDX.Win32.PropertyBag"/>.
            </summary>
            <typeparam name="T1">The public type of this property.</typeparam>
            <typeparam name="T2">The marshaling type of this property.</typeparam>
        </member>
        <member name="M:SharpDX.Win32.PropertyKey`2.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Win32.PropertyKey`2"/> class.
            </summary>
            <param name="name">The name.</param>
        </member>
        <member name="P:SharpDX.Win32.PropertyKey`2.Name">
            <summary>
            Gets the name.
            </summary>
        </member>
        <member name="T:SharpDX.Win32.ComStringEnumerator">
            <summary>
            An enumerator using internally a <see cref="T:System.Runtime.InteropServices.ComTypes.IEnumString"/>.
            </summary>
        </member>
        <member name="M:SharpDX.Win32.ComStringEnumerator.#ctor(System.IntPtr)">
            <summary>
            Initializes a new instance of the <see cref="T:SharpDX.Win32.ComStringEnumerator"/> class.
            </summary>
            <param name="ptrToIEnumString">The PTR to I enum string.</param>
        </member>
        <member name="T:SharpDX.Win32.SecurityAttributes">
            <summary>
            Security attributes.
            </summary>
            <unmanaged>SECURITY_ATTRIBUTES</unmanaged>	    
        </member>
        <member name="F:SharpDX.Win32.SecurityAttributes.Length">
            <summary>
            Length.
            </summary>
        </member>
        <member name="F:SharpDX.Win32.SecurityAttributes.Descriptor">
            <summary>
            Descriptor.
            </summary>
        </member>
        <member name="P:SharpDX.Win32.SecurityAttributes.InheritHandle">
            <summary>
            Gets or sets a value indicating whether [inherit handle].
            </summary>
            <value>
              <c>true</c> if [inherit handle]; otherwise, <c>false</c>.
            </value>
        </member>
        <member name="T:SharpDX.Win32.Variant">
            <summary>
            Variant COM.
            </summary>
            <unmanaged>PROPVARIANT</unmanaged>
        </member>
        <member name="P:SharpDX.Win32.Variant.ElementType">
            <summary>
            Gets the type of the element.
            </summary>
            <value>
            The type of the element.
            </value>
        </member>
        <member name="P:SharpDX.Win32.Variant.Type">
            <summary>
            Gets the type.
            </summary>
        </member>
        <member name="P:SharpDX.Win32.Variant.Value">
            <summary>
            Gets or sets the value.
            </summary>
            <value>
            The value.
            </value>
        </member>
        <member name="T:SharpDX.Win32.VariantElementType">
            <summary>
            Type of a simple variant value.
            </summary>
        </member>
        <member name="T:SharpDX.Win32.VariantType">
            <summary>
            Type of a variant
            </summary>
        </member>
        <member name="F:SharpDX.Win32.VariantType.Default">
            <summary>
            Simple value
            </summary>
        </member>
        <member name="F:SharpDX.Win32.VariantType.Vector">
            <summary>
            Vector value.
            </summary>
        </member>
        <member name="F:SharpDX.Win32.VariantType.Array">
            <summary>
            Array value.
            </summary>
        </member>
        <member name="F:SharpDX.Win32.VariantType.ByRef">
            <summary>
            By reference.
            </summary>
        </member>
        <member name="F:SharpDX.Win32.VariantType.Reserved">
            <summary>
            Reserved value.
            </summary>
        </member>
        <member name="T:SharpDX.Windows.NamespaceDoc">
            <summary>
            The <see cref="N:SharpDX.Windows"/> namespace contains <see cref="!:System.Windows.Forms"/> basic controls used to render DirectX content.
            </summary>
        </member>
        <member name="T:SharpDX.Colors">
            <summary>
            List of predefined <see cref="T:SharpDX.Color4"/>.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.Transparent">
            <summary>
            Transparent color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.AliceBlue">
            <summary>
            AliceBlue color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.AntiqueWhite">
            <summary>
            AntiqueWhite color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.Aqua">
            <summary>
            Aqua color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.Aquamarine">
            <summary>
            Aquamarine color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.Azure">
            <summary>
            Azure color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.Beige">
            <summary>
            Beige color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.Bisque">
            <summary>
            Bisque color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.Black">
            <summary>
            Black color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.BlanchedAlmond">
            <summary>
            BlanchedAlmond color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.Blue">
            <summary>
            Blue color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.BlueViolet">
            <summary>
            BlueViolet color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.Brown">
            <summary>
            Brown color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.BurlyWood">
            <summary>
            BurlyWood color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.CadetBlue">
            <summary>
            CadetBlue color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.Chartreuse">
            <summary>
            Chartreuse color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.Chocolate">
            <summary>
            Chocolate color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.Coral">
            <summary>
            Coral color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.CornflowerBlue">
            <summary>
            CornflowerBlue color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.Cornsilk">
            <summary>
            Cornsilk color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.Crimson">
            <summary>
            Crimson color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.Cyan">
            <summary>
            Cyan color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.DarkBlue">
            <summary>
            DarkBlue color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.DarkCyan">
            <summary>
            DarkCyan color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.DarkGoldenrod">
            <summary>
            DarkGoldenrod color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.DarkGray">
            <summary>
            DarkGray color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.DarkGreen">
            <summary>
            DarkGreen color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.DarkKhaki">
            <summary>
            DarkKhaki color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.DarkMagenta">
            <summary>
            DarkMagenta color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.DarkOliveGreen">
            <summary>
            DarkOliveGreen color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.DarkOrange">
            <summary>
            DarkOrange color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.DarkOrchid">
            <summary>
            DarkOrchid color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.DarkRed">
            <summary>
            DarkRed color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.DarkSalmon">
            <summary>
            DarkSalmon color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.DarkSeaGreen">
            <summary>
            DarkSeaGreen color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.DarkSlateBlue">
            <summary>
            DarkSlateBlue color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.DarkSlateGray">
            <summary>
            DarkSlateGray color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.DarkTurquoise">
            <summary>
            DarkTurquoise color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.DarkViolet">
            <summary>
            DarkViolet color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.DeepPink">
            <summary>
            DeepPink color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.DeepSkyBlue">
            <summary>
            DeepSkyBlue color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.DimGray">
            <summary>
            DimGray color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.DodgerBlue">
            <summary>
            DodgerBlue color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.Firebrick">
            <summary>
            Firebrick color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.FloralWhite">
            <summary>
            FloralWhite color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.ForestGreen">
            <summary>
            ForestGreen color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.Fuchsia">
            <summary>
            Fuchsia color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.Gainsboro">
            <summary>
            Gainsboro color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.GhostWhite">
            <summary>
            GhostWhite color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.Gold">
            <summary>
            Gold color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.Goldenrod">
            <summary>
            Goldenrod color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.Gray">
            <summary>
            Gray color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.Green">
            <summary>
            Green color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.GreenYellow">
            <summary>
            GreenYellow color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.Honeydew">
            <summary>
            Honeydew color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.HotPink">
            <summary>
            HotPink color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.IndianRed">
            <summary>
            IndianRed color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.Indigo">
            <summary>
            Indigo color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.Ivory">
            <summary>
            Ivory color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.Khaki">
            <summary>
            Khaki color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.Lavender">
            <summary>
            Lavender color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.LavenderBlush">
            <summary>
            LavenderBlush color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.LawnGreen">
            <summary>
            LawnGreen color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.LemonChiffon">
            <summary>
            LemonChiffon color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.LightBlue">
            <summary>
            LightBlue color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.LightCoral">
            <summary>
            LightCoral color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.LightCyan">
            <summary>
            LightCyan color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.LightGoldenrodYellow">
            <summary>
            LightGoldenrodYellow color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.LightGray">
            <summary>
            LightGray color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.LightGreen">
            <summary>
            LightGreen color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.LightPink">
            <summary>
            LightPink color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.LightSalmon">
            <summary>
            LightSalmon color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.LightSeaGreen">
            <summary>
            LightSeaGreen color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.LightSkyBlue">
            <summary>
            LightSkyBlue color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.LightSlateGray">
            <summary>
            LightSlateGray color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.LightSteelBlue">
            <summary>
            LightSteelBlue color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.LightYellow">
            <summary>
            LightYellow color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.Lime">
            <summary>
            Lime color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.LimeGreen">
            <summary>
            LimeGreen color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.Linen">
            <summary>
            Linen color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.Magenta">
            <summary>
            Magenta color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.Maroon">
            <summary>
            Maroon color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.MediumAquamarine">
            <summary>
            MediumAquamarine color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.MediumBlue">
            <summary>
            MediumBlue color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.MediumOrchid">
            <summary>
            MediumOrchid color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.MediumPurple">
            <summary>
            MediumPurple color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.MediumSeaGreen">
            <summary>
            MediumSeaGreen color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.MediumSlateBlue">
            <summary>
            MediumSlateBlue color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.MediumSpringGreen">
            <summary>
            MediumSpringGreen color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.MediumTurquoise">
            <summary>
            MediumTurquoise color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.MediumVioletRed">
            <summary>
            MediumVioletRed color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.MidnightBlue">
            <summary>
            MidnightBlue color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.MintCream">
            <summary>
            MintCream color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.MistyRose">
            <summary>
            MistyRose color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.Moccasin">
            <summary>
            Moccasin color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.NavajoWhite">
            <summary>
            NavajoWhite color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.Navy">
            <summary>
            Navy color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.OldLace">
            <summary>
            OldLace color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.Olive">
            <summary>
            Olive color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.OliveDrab">
            <summary>
            OliveDrab color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.Orange">
            <summary>
            Orange color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.OrangeRed">
            <summary>
            OrangeRed color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.Orchid">
            <summary>
            Orchid color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.PaleGoldenrod">
            <summary>
            PaleGoldenrod color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.PaleGreen">
            <summary>
            PaleGreen color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.PaleTurquoise">
            <summary>
            PaleTurquoise color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.PaleVioletRed">
            <summary>
            PaleVioletRed color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.PapayaWhip">
            <summary>
            PapayaWhip color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.PeachPuff">
            <summary>
            PeachPuff color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.Peru">
            <summary>
            Peru color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.Pink">
            <summary>
            Pink color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.Plum">
            <summary>
            Plum color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.PowderBlue">
            <summary>
            PowderBlue color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.Purple">
            <summary>
            Purple color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.Red">
            <summary>
            Red color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.RosyBrown">
            <summary>
            RosyBrown color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.RoyalBlue">
            <summary>
            RoyalBlue color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.SaddleBrown">
            <summary>
            SaddleBrown color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.Salmon">
            <summary>
            Salmon color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.SandyBrown">
            <summary>
            SandyBrown color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.SeaGreen">
            <summary>
            SeaGreen color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.SeaShell">
            <summary>
            SeaShell color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.Sienna">
            <summary>
            Sienna color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.Silver">
            <summary>
            Silver color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.SkyBlue">
            <summary>
            SkyBlue color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.SlateBlue">
            <summary>
            SlateBlue color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.SlateGray">
            <summary>
            SlateGray color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.Snow">
            <summary>
            Snow color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.SpringGreen">
            <summary>
            SpringGreen color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.SteelBlue">
            <summary>
            SteelBlue color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.Tan">
            <summary>
            Tan color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.Teal">
            <summary>
            Teal color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.Thistle">
            <summary>
            Thistle color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.Tomato">
            <summary>
            Tomato color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.Turquoise">
            <summary>
            Turquoise color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.Violet">
            <summary>
            Violet color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.Wheat">
            <summary>
            Wheat color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.White">
            <summary>
            White color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.WhiteSmoke">
            <summary>
            WhiteSmoke color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.Yellow">
            <summary>
            Yellow color.
            </summary>
        </member>
        <member name="F:SharpDX.Colors.YellowGreen">
            <summary>
            YellowGreen color.
            </summary>
        </member>
    </members>
</doc>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Technical Lead eInfochips (An Arrow Company)
India India
Leading a passionate team to build metadata driven generic IoT Platform using for the operating companies (OpCos) of a Fortune 500 American conglomerate manufacturer of industrial products having annual revenue over $7 billion. Willing to join product-based and SaaS companies having production workloads and serving end customers happily.

Comments and Discussions