<?xml version="1.0"?>
<doc>
    <assembly>
        <name>RAYLASE.Shared</name>
    </assembly>
    <members>
        <member name="T:RAYLASE.Shared.Extensions">
            <summary>
            Provides common extensions.
            </summary>
        </member>
        <member name="M:RAYLASE.Shared.Extensions.InheritsFrom(System.Type,System.Type)">
            <summary>
            Verifies whether a given type inherits from another type. This covers the inheritance from a base generic type.<br/>
            MyGenericType&lt;int&gt; inherits from MyGenericType &lt;&gt;
            </summary>
            <param name="type">The type to be checked.</param>
            <param name="baseType">The base type.</param>
            <returns>Tuple of:<br/>
            	Item1 = true if types are inherited.<br/>
            	Item2 = the closest base type from the given base type.<br/>
            </returns>
        </member>
        <member name="M:RAYLASE.Shared.Extensions.ToPoint(GlmSharp.dvec3)">
            <summary>
            Converts a dvec3 to a Point.
            </summary>
            <param name="value">The dvec3 value.</param>
            <returns></returns>
        </member>
        <member name="M:RAYLASE.Shared.Extensions.ToPoint(GlmSharp.dvec2)">
            <summary>
            Converts a dvec3 to a Point.
            </summary>
            <param name="value">The dvec2 value.</param>
            <returns></returns>
        </member>
        <member name="M:RAYLASE.Shared.Extensions.ToVector(GlmSharp.dvec2)">
            <summary>
            Converts a dvec2 to a Vector.
            </summary>
            <param name="value">The dvec3 value.</param>
            <returns></returns>
        </member>
        <member name="M:RAYLASE.Shared.Extensions.ToDvec2(System.Windows.Point)">
            <summary>
            Converts a Point to a dvec2.
            </summary>
            <param name="value">The dvec2 value.</param>
            <returns></returns>
        </member>
        <member name="M:RAYLASE.Shared.Extensions.ToVector(System.Windows.Point)">
            <summary>
            Converts a Point to a Vector.
            </summary>
            <param name="value">The dvec2 value.</param>
            <returns></returns>
        </member>
        <member name="M:RAYLASE.Shared.Extensions.ToBindablePoint(GlmSharp.dvec2)">
            <summary>
            Converts a dvec2 to a BindablePoint.
            </summary>
            <param name="value">dvec2 to convert.</param>
            <returns></returns>
        </member>
        <member name="M:RAYLASE.Shared.Extensions.ToBindablePoint(GlmSharp.dvec3)">
            <summary>
            Converts a dvec3 to a BindablePoint.
            </summary>
            <param name="value">dvec3 to convert.</param>
            <returns></returns>
        </member>
        <member name="M:RAYLASE.Shared.Extensions.ToBindablePoint(GlmSharp.dvec3,GlmSharp.dmat4)">
            <summary>
            Converts a dvec3 to a transformed BindablePoint.
            </summary>
            <param name="value">dvec3 to convert.</param>
            <param name="transformation">Transformation matrix.</param>
            <returns></returns>
        </member>
        <member name="M:RAYLASE.Shared.Extensions.ToBindablePoint(GlmSharp.ivec3)">
            <summary>
            Converts a ivec3 to a BindablePoint.
            </summary>
            <param name="value">ivec3 to convert.</param>
            <returns></returns>
        </member>
        <member name="M:RAYLASE.Shared.Extensions.ToBindablePoint(GlmSharp.ivec2)">
            <summary>
            Converts a ivec2 to a BindablePoint.
            </summary>
            <param name="value">ivec3 to convert.</param>
            <returns></returns>
        </member>
        <member name="M:RAYLASE.Shared.Extensions.ToDvec2(RAYLASE.Shared.GUI.BindablePoint)">
            <summary>
            Converts a BindablePoint to a dvec2.
            </summary>
            <param name="value">BindablePoint to convert.</param>
            <returns></returns>
        </member>
        <member name="M:RAYLASE.Shared.Extensions.ToDvec3(RAYLASE.Shared.GUI.BindablePoint)">
            <summary>
            Converts a BindablePoint to a dvec3.
            </summary>
            <param name="value">BindablePoint to convert.</param>
            <returns></returns>
        </member>
        <member name="M:RAYLASE.Shared.Extensions.ToIvec3(RAYLASE.Shared.GUI.BindablePoint)">
            <summary>
            Converts a BindablePoint to a ivec3.
            </summary>
            <param name="value">BindablePoint to convert.</param>
            <returns></returns>
        </member>
        <member name="M:RAYLASE.Shared.Extensions.ToIvec2(RAYLASE.Shared.GUI.BindablePoint)">
            <summary>
            Converts a BindablePoint to a ivec2.
            </summary>
            <param name="value">BindablePoint to convert.</param>
            <returns></returns>
        </member>
        <member name="M:RAYLASE.Shared.Extensions.ToDvec3(System.Windows.Point)">
            <summary>
            Converts a Point to a dvec2. Z value will be set to zero.
            </summary>
            <param name="value">Point to convert.</param>
            <returns></returns>
        </member>
        <member name="M:RAYLASE.Shared.Extensions.ToDmat2(System.Windows.Media.Matrix)">
            <summary>
            Converts a Matrix to a dmat2. Offset will be discarded.
            </summary>
            <param name="value">Matrix to convert.</param>
            <returns></returns>
        </member>
        <member name="M:RAYLASE.Shared.Extensions.ToDmat3(System.Windows.Media.Matrix)">
            <summary>
            Converts a Matrix to a dmat3. Offset will be used as third column.
            </summary>
            <param name="value">Matrix to convert.</param>
            <returns></returns>
        </member>
        <member name="M:RAYLASE.Shared.Extensions.Abs(GlmSharp.dvec3)">
            <summary>
            Returns the absolute values.
            </summary>
            <param name="value">Vector to manipulate.</param>
            <returns></returns>
        </member>
        <member name="M:RAYLASE.Shared.Extensions.ToVisibility(System.Boolean)">
            <summary>
            Converts boolean into visibility.
            </summary>
            <param name="value">Visible if true, otherwise collapsed.</param>
            <returns>Visibility</returns>
        </member>
        <member name="M:RAYLASE.Shared.Extensions.ToBoolean(System.Windows.Visibility)">
            <summary>
            Converts visibility into boolean.
            </summary>
            <param name="value">Visibility</param>
            <returns>True if visible.</returns>
        </member>
        <member name="M:RAYLASE.Shared.Extensions.ToRadians(System.Double)">
            <summary>
            Converts an angle from degree do radians.
            </summary>
            <param name="value">Angle in degree</param>
            <returns>Angle in radians</returns>
        </member>
        <member name="M:RAYLASE.Shared.Extensions.ToRadians(System.Single)">
            <summary>
            Converts an angle from degree do radians.
            </summary>
            <param name="value">Angle in degree</param>
            <returns>Angle in radians</returns>
        </member>
        <member name="M:RAYLASE.Shared.Extensions.ToDegree(System.Double)">
            <summary>
            Converts an angle from radians do degree.
            </summary>
            <param name="value">Angle in radians</param>
            <returns>Angle in degree</returns>
        </member>
        <member name="M:RAYLASE.Shared.Extensions.ToDegree(System.Single)">
            <summary>
            Converts an angle from radians do degree.
            </summary>
            <param name="value">Angle in radians</param>
            <returns>Angle in degree</returns>
        </member>
        <member name="M:RAYLASE.Shared.Extensions.ItemwiseCompare``1(System.Collections.Generic.IList{``0},System.Int32,System.Collections.Generic.IList{``0},System.Int32,System.Int32)">
            <summary>
            Compares two sublists item wise.
            </summary>
            <typeparam name="T">The type of the item.</typeparam>
            <param name="list1">The first list.</param>
            <param name="list1StartIndex">The offset of the sublist inside the first list.</param>
            <param name="list2">The second list.</param>
            <param name="list2StartIndex">The offset of the sublist inside the second list.</param>
            <param name="count">The length of the sublist.</param>
            <returns>True if all items in the two sublists match.</returns>
        </member>
        <member name="M:RAYLASE.Shared.Extensions.WaitOne(System.Threading.WaitHandle,System.Threading.CancellationToken)">
            <summary>
            Waits for a signal or a cancellation. The cancellation exception will raised if a cancellation is requested.
            </summary>
            <param name="waitHandle">The wait handle.</param>
            <param name="cancellationToken">The cancellation token.</param>
        </member>
        <member name="M:RAYLASE.Shared.Extensions.GetAllMessages(System.Exception)">
            <summary>
            Concatenates exception messages recursively through the inner exceptions.
            </summary>
            <param name="exception">The main exception.</param>
            <returns>Concatenated exception messages.</returns>
        </member>
        <member name="M:RAYLASE.Shared.Extensions.GetAllStackTraces(System.Exception)">
            <summary>
            Concatenates exception stack traces recursively through the inner exceptions.
            </summary>
            <param name="exception">The main exception.</param>
            <returns>Concatenated exception stack traces.</returns>
        </member>
        <member name="M:RAYLASE.Shared.Extensions.AddRange``1(System.Collections.Generic.ICollection{``0},System.Collections.Generic.IEnumerable{``0})">
            <summary>
            Adds a range of items to a collection.
            </summary>
            <typeparam name="T">Type</typeparam>
            <param name="list">Collection items are added to.</param>
            <param name="toAdd">Items to add.</param>
        </member>
        <member name="M:RAYLASE.Shared.Extensions.CopyFrom``1(System.Collections.Generic.ICollection{``0},System.Collections.Generic.IEnumerable{``0})">
            <summary>
            Clears the list and copies the content from a collection.
            </summary>
            <typeparam name="T">Type</typeparam>
            <param name="list">Collection items are added to.</param>
            <param name="toCopy">Items to copy.</param>
        </member>
        <member name="M:RAYLASE.Shared.Extensions.IntervalRoundAway(System.Double,System.Int32)">
            <summary>
            Rounds a given number to the closest interval away from zero.
            </summary>
            <param name="number">The number to round.</param>
            <param name="interval">The interval for rounding.</param>
            <returns>The rounded number.</returns>
        </member>
        <member name="M:RAYLASE.Shared.Extensions.Average(System.Collections.Generic.IEnumerable{GlmSharp.dvec3})">
            <summary>
            Returns the average value.
            </summary>
            <param name="values">Input vectors to average.</param>
            <returns></returns>
        </member>
        <member name="M:RAYLASE.Shared.Extensions.Sum(System.Collections.Generic.IEnumerable{GlmSharp.dvec3})">
            <summary>
            Returns the vectors' sum.
            </summary>
            <param name="values">Input vectors to sum up.</param>
            <returns></returns>
        </member>
        <member name="M:RAYLASE.Shared.Extensions.Average(System.Collections.Generic.IEnumerable{GlmSharp.dvec2})">
            <summary>
            Returns the average value.
            </summary>
            <param name="values">Input vectors to average.</param>
            <returns></returns>
        </member>
        <member name="M:RAYLASE.Shared.Extensions.Sum(System.Collections.Generic.IEnumerable{GlmSharp.dvec2})">
            <summary>
            Returns the vectors' sum.
            </summary>
            <param name="values">Input vectors to sum up.</param>
            <returns></returns>
        </member>
        <member name="M:RAYLASE.Shared.Extensions.ForEachAggregatingExceptions``1(System.Collections.Generic.IReadOnlyCollection{``0},System.Action{``0})">
            <summary>
            Executes an action for each item in a materialized collection, 
            accumulating any exceptions and throwing them as an AggregateException at the end.
            </summary>
        </member>
        <member name="T:RAYLASE.Shared.GUI.BaseBindableView">
            <summary>
            Represents the base class that provides functionalities for tracking property changes.
            </summary>
        </member>
        <member name="E:RAYLASE.Shared.GUI.BaseBindableView.PropertyChanged">
            <summary>
            Raised whenever a property value has changed.
            </summary>
        </member>
        <member name="M:RAYLASE.Shared.GUI.BaseBindableView.#ctor">
            <inheritdoc />
        </member>
        <member name="M:RAYLASE.Shared.GUI.BaseBindableView.SetProperty``1(``0@,``0,System.String)">
            <summary>
            Checks if a property already matches a desired value. Sets the property and notifies listeners only when necessary.
            </summary>
            <typeparam name="T">Type of the property.</typeparam>
            <param name="storage">Reference to a property with both getter and setter.</param>
            <param name="value">Desired value for the property.</param>
            <param name="propertyName">Name of the property used to notify listeners. This value is optional and can be provided automatically when invoked from compilers that support CallerMemberName.</param>
            <returns>True if the value was changed, false if the existing value matched the desired value.</returns>
        </member>
        <member name="M:RAYLASE.Shared.GUI.BaseBindableView.RaisePropertyChanged(System.String)">
            <summary>
            Raises this object's PropertyChanged event.
            </summary>
            <param name="propertyName">Name of the property used to notify listeners. This value is optional and can be provided automatically when invoked from compilers that support <see cref="T:System.Runtime.CompilerServices.CallerMemberNameAttribute"/>.</param>
        </member>
        <member name="T:RAYLASE.Shared.GUI.BindablePoint">
            <summary>
            Class for three dimensional double vector, that can be used for binding in wpf applications.
            </summary>
        </member>
        <member name="P:RAYLASE.Shared.GUI.BindablePoint.X">
            <summary>
            Gets or sets X.
            </summary>
        </member>
        <member name="P:RAYLASE.Shared.GUI.BindablePoint.Y">
            <summary>
            Gets or sets Y.
            </summary>
        </member>
        <member name="P:RAYLASE.Shared.GUI.BindablePoint.Z">
            <summary>
            Gets or sets Z.
            </summary>
        </member>
        <member name="P:RAYLASE.Shared.GUI.BindablePoint.LockXyRatio">
            <summary>
            If true, X/Y will be updated when setting the other one in order to keep the xy ration constant.
            </summary>
        </member>
        <member name="P:RAYLASE.Shared.GUI.BindablePoint.LockRatio">
            <summary>
            If true, X/Y/Z will be updated when setting one of them in order to keep the xyz ration constant.
            </summary>
        </member>
        <member name="E:RAYLASE.Shared.GUI.BindablePoint.PropertyChanged">
            <summary>
            Called after property changed.
            </summary>
        </member>
        <member name="M:RAYLASE.Shared.GUI.BindablePoint.#ctor(System.Double,System.Double,System.Double)">
            <inheritdoc />
        </member>
        <member name="M:RAYLASE.Shared.GUI.BindablePoint.#ctor(System.Double)">
            <inheritdoc />
        </member>
        <member name="M:RAYLASE.Shared.GUI.BindablePoint.#ctor(RAYLASE.Shared.GUI.BindablePoint)">
            <inheritdoc />
        </member>
        <member name="M:RAYLASE.Shared.GUI.BindablePoint.#ctor(GlmSharp.dvec3)">
            <inheritdoc />
        </member>
        <member name="M:RAYLASE.Shared.GUI.BindablePoint.#ctor(GlmSharp.dvec3,GlmSharp.dmat4)">
            <summary>
            Creates a new instance of BindablePoint. The resulting vector is calculated by transforming point. Useful for getting the reverse transformed point via <see cref="M:RAYLASE.Shared.GUI.BindablePoint.GetInverseTransformed"/>.
            </summary>
            <param name="point">Untransformed vector.</param>
            <param name="transformation">Transformation.</param>
        </member>
        <member name="M:RAYLASE.Shared.GUI.BindablePoint.#ctor">
            <inheritdoc />
        </member>
        <member name="M:RAYLASE.Shared.GUI.BindablePoint.GetInverseTransformed">
            <summary>
            Returns the inverse transformation of the vector. Should be used with constructor including the transformation.  <see cref="M:RAYLASE.Shared.GUI.BindablePoint.#ctor(GlmSharp.dvec3,GlmSharp.dmat4)"/>
            </summary>
            <returns></returns>
        </member>
        <member name="M:RAYLASE.Shared.GUI.BindablePoint.CopyFrom(System.Double,System.Double,System.Double)">
            <summary>
            Sets XYZ.
            </summary>
            <param name="x">Value for X.</param>
            <param name="y">Value for Y.</param>
            <param name="z">Value for Z.</param>
            <returns>This.</returns>
        </member>
        <member name="M:RAYLASE.Shared.GUI.BindablePoint.CopyFrom(RAYLASE.Shared.GUI.BindablePoint)">
            <summary>
            Copies XYZ from point.
            </summary>
            <param name="point">Point to copy from.</param>
            <returns>This.</returns>
        </member>
        <member name="M:RAYLASE.Shared.GUI.BindablePoint.CopyFrom(GlmSharp.dvec3)">
            <summary>
            Copies XYZ from point.
            </summary>
            <param name="point">Point to copy from.</param>
            <returns>This.</returns>
        </member>
        <member name="E:RAYLASE.Shared.GUI.BindablePoint.PointChanged">
            <summary>
            Raised when X, Y or Z has changed.
            </summary>
        </member>
        <member name="M:RAYLASE.Shared.GUI.BindablePoint.op_Division(RAYLASE.Shared.GUI.BindablePoint,System.Double)">
            <inheritdoc />
        </member>
        <member name="M:RAYLASE.Shared.GUI.BindablePoint.op_Division(RAYLASE.Shared.GUI.BindablePoint,RAYLASE.Shared.GUI.BindablePoint)">
            <inheritdoc />
        </member>
        <member name="M:RAYLASE.Shared.GUI.BindablePoint.op_Multiply(RAYLASE.Shared.GUI.BindablePoint,System.Double)">
            <inheritdoc />
        </member>
        <member name="M:RAYLASE.Shared.GUI.BindablePoint.op_Multiply(RAYLASE.Shared.GUI.BindablePoint,RAYLASE.Shared.GUI.BindablePoint)">
            <inheritdoc />
        </member>
        <member name="M:RAYLASE.Shared.GUI.BindablePoint.op_Addition(RAYLASE.Shared.GUI.BindablePoint,RAYLASE.Shared.GUI.BindablePoint)">
            <inheritdoc />
        </member>
        <member name="M:RAYLASE.Shared.GUI.BindablePoint.op_Subtraction(RAYLASE.Shared.GUI.BindablePoint,RAYLASE.Shared.GUI.BindablePoint)">
            <inheritdoc />
        </member>
        <member name="M:RAYLASE.Shared.GUI.BindablePoint.ToString">
            <inheritdoc />
        </member>
        <member name="T:RAYLASE.Shared.GUI.MahAppsResourceDictionary">
            <summary>
            Interaction logic for MahAppsResourceDictionary.xaml
            </summary>
            <summary>
            MahAppsResourceDictionary
            </summary>
        </member>
        <member name="M:RAYLASE.Shared.GUI.MahAppsResourceDictionary.InitializeComponent">
            <summary>
            InitializeComponent
            </summary>
        </member>
        <member name="T:RAYLASE.Shared.GUI.NullableBindablePoint">
            <summary>
            Class for three dimensional nullable double vector, that can be used for binding in wpf applications.
            </summary>
        </member>
        <member name="P:RAYLASE.Shared.GUI.NullableBindablePoint.X">
            <summary>
            Gets or sets X.
            </summary>
        </member>
        <member name="P:RAYLASE.Shared.GUI.NullableBindablePoint.Y">
            <summary>
            Gets or sets Y.
            </summary>
        </member>
        <member name="P:RAYLASE.Shared.GUI.NullableBindablePoint.Z">
            <summary>
            Gets or sets Z.
            </summary>
        </member>
        <member name="P:RAYLASE.Shared.GUI.NullableBindablePoint.LockXyRatio">
            <summary>
            If true, X/Y will be updated when setting the other one in order to keep the xy ration constant.
            </summary>
        </member>
        <member name="P:RAYLASE.Shared.GUI.NullableBindablePoint.LockRatio">
            <summary>
            If true, X/Y/Z will be updated when setting one of them in order to keep the xyz ration constant.
            </summary>
        </member>
        <member name="E:RAYLASE.Shared.GUI.NullableBindablePoint.PropertyChanged">
            <summary>
            Called after property changed.
            </summary>
        </member>
        <member name="E:RAYLASE.Shared.GUI.NullableBindablePoint.PointChanged">
            <summary>
            Raised when X, Y or Z has changed.
            </summary>
        </member>
        <member name="M:RAYLASE.Shared.GUI.NullableBindablePoint.#ctor(System.Double,System.Double,System.Double)">
            <inheritdoc />
        </member>
        <member name="M:RAYLASE.Shared.GUI.NullableBindablePoint.#ctor(System.Double)">
            <inheritdoc />
        </member>
        <member name="M:RAYLASE.Shared.GUI.NullableBindablePoint.#ctor(RAYLASE.Shared.GUI.NullableBindablePoint)">
            <inheritdoc />
        </member>
        <member name="M:RAYLASE.Shared.GUI.NullableBindablePoint.#ctor(GlmSharp.dvec3)">
            <inheritdoc />
        </member>
        <member name="M:RAYLASE.Shared.GUI.NullableBindablePoint.#ctor(GlmSharp.dvec3,GlmSharp.dmat4)">
            <summary>
            Creates a new instance of BindablePoint. The resulting vector is calculated by transforming point.
            </summary>
            <param name="point">Untransformed vector.</param>
            <param name="transformation">Transformation.</param>
        </member>
        <member name="M:RAYLASE.Shared.GUI.NullableBindablePoint.CopyFrom(System.Double,System.Double,System.Double)">
            <summary>
            Sets XYZ.
            </summary>
            <param name="x">Value for X.</param>
            <param name="y">Value for Y.</param>
            <param name="z">Value for Z.</param>
            <returns>This.</returns>
        </member>
        <member name="M:RAYLASE.Shared.GUI.NullableBindablePoint.ToString">
            <inheritdoc />
        </member>
        <member name="T:RAYLASE.Shared.GUI.RaylaseResourceDictionary">
            <summary>
            Interaction logic for RaylaseResourceDictionary.xaml
            </summary>
            <summary>
            RaylaseResourceDictionary
            </summary>
        </member>
        <member name="M:RAYLASE.Shared.GUI.RaylaseResourceDictionary.InitializeComponent">
            <summary>
            InitializeComponent
            </summary>
        </member>
        <member name="T:RAYLASE.Shared.GUI.Vector3DBox">
            <summary>
            Interaction logic for Vector3DBox.xaml
            </summary>
            <summary>
            Vector3DBox
            </summary>
        </member>
        <member name="M:RAYLASE.Shared.GUI.Vector3DBox.InitializeComponent">
            <summary>
            InitializeComponent
            </summary>
        </member>
        <member name="T:RAYLASE.Shared.GUI.Vector3DControl">
            <summary>
            Interaction logic for Vector3DControl.xaml
            </summary>
            <summary>
            Vector3DControl
            </summary>
        </member>
        <member name="M:RAYLASE.Shared.GUI.Vector3DControl.InitializeComponent">
            <summary>
            InitializeComponent
            </summary>
        </member>
        <member name="T:RAYLASE.Shared.GUI.ColorScheme">
            <summary>
            ColorScheme
            </summary>
        </member>
        <member name="M:RAYLASE.Shared.GUI.ColorScheme.InitializeComponent">
            <summary>
            InitializeComponent
            </summary>
        </member>
        <member name="T:RAYLASE.Shared.Resources.Strings">
            <summary>
              A strongly-typed resource class, for looking up localized strings, etc.
            </summary>
        </member>
        <member name="P:RAYLASE.Shared.Resources.Strings.ResourceManager">
            <summary>
              Returns the cached ResourceManager instance used by this class.
            </summary>
        </member>
        <member name="P:RAYLASE.Shared.Resources.Strings.Culture">
            <summary>
              Overrides the current thread's CurrentUICulture property for all
              resource lookups using this strongly typed resource class.
            </summary>
        </member>
        <member name="P:RAYLASE.Shared.Resources.Strings.Disabled">
            <summary>
              Looks up a localized string similar to Disabled.
            </summary>
        </member>
        <member name="P:RAYLASE.Shared.Resources.Strings.Enabled">
            <summary>
              Looks up a localized string similar to Enabled.
            </summary>
        </member>
        <member name="P:RAYLASE.Shared.Resources.Strings.Extensiontimeµs">
            <summary>
              Looks up a localized string similar to Extension time [µs].
            </summary>
        </member>
        <member name="P:RAYLASE.Shared.Resources.Strings.Formatwhitespaceseparatedvaluesofonofflengthsegquot3251quot">
            <summary>
              Looks up a localized string similar to Format: Whitespace separated values of on-off lengths (eg. &quot;3 2 5 1&quot;)..
            </summary>
        </member>
        <member name="P:RAYLASE.Shared.Resources.Strings.No">
            <summary>
              Looks up a localized string similar to No.
            </summary>
        </member>
        <member name="P:RAYLASE.Shared.Resources.Strings.RAYLASE_Marker_Common_LicenceFeature___GUI">
            <summary>
              Looks up a localized string similar to GUI.
            </summary>
        </member>
        <member name="P:RAYLASE.Shared.Resources.Strings.RAYLASE_Marker_Common_LicenceFeature___None">
            <summary>
              Looks up a localized string similar to None.
            </summary>
        </member>
        <member name="P:RAYLASE.Shared.Resources.Strings.RAYLASE_Marker_Common_LicenceFeature___ProzessDataAnalyzer">
            <summary>
              Looks up a localized string similar to ProzessDataAnalyzer.
            </summary>
        </member>
        <member name="P:RAYLASE.Shared.Resources.Strings.RAYLASE_Marker_Common_LicenceFeature___SDK">
            <summary>
              Looks up a localized string similar to SDK.
            </summary>
        </member>
        <member name="P:RAYLASE.Shared.Resources.Strings.RAYLASE_Marker_Common_LicenceFeature___SDKOptimize">
            <summary>
              Looks up a localized string similar to SDKOptimize.
            </summary>
        </member>
        <member name="P:RAYLASE.Shared.Resources.Strings.RAYLASE_Marker_Common_LicenceFeature___weldMARKJobDefinitionConverter">
            <summary>
              Looks up a localized string similar to weldMARKJobDefinitionConverter.
            </summary>
        </member>
        <member name="P:RAYLASE.Shared.Resources.Strings.RAYLASE_Marker_Common_LicenceType___Dongle">
            <summary>
              Looks up a localized string similar to Dongle.
            </summary>
        </member>
        <member name="P:RAYLASE.Shared.Resources.Strings.RAYLASE_Marker_Common_LicenceType___Software">
            <summary>
              Looks up a localized string similar to Software.
            </summary>
        </member>
        <member name="P:RAYLASE.Shared.Resources.Strings.Selectbitmap">
            <summary>
              Looks up a localized string similar to Select bitmap.
            </summary>
        </member>
        <member name="P:RAYLASE.Shared.Resources.Strings.X">
            <summary>
              Looks up a localized string similar to X.
            </summary>
        </member>
        <member name="P:RAYLASE.Shared.Resources.Strings.Y">
            <summary>
              Looks up a localized string similar to Y.
            </summary>
        </member>
        <member name="P:RAYLASE.Shared.Resources.Strings.Yes">
            <summary>
              Looks up a localized string similar to Yes.
            </summary>
        </member>
        <member name="P:RAYLASE.Shared.Resources.Strings.Z">
            <summary>
              Looks up a localized string similar to Z.
            </summary>
        </member>
    </members>
</doc>
