CalDavSynchronizer.Conversions.Msft.HtmlCssParser.ParseCssBorder C# (CSharp) Метод

ParseCssBorder() приватный статический Метод

private static ParseCssBorder ( string styleValue, int &nextIndex, Hashtable localProperties ) : void
styleValue string
nextIndex int
localProperties System.Collections.Hashtable
Результат void
        private static void ParseCssBorder(string styleValue, ref int nextIndex, Hashtable localProperties)
        {
            while (
                ParseCssRectangleProperty(styleValue, ref nextIndex, localProperties, "border-width") ||
                ParseCssRectangleProperty(styleValue, ref nextIndex, localProperties, "border-style") ||
                ParseCssRectangleProperty(styleValue, ref nextIndex, localProperties, "border-color"))
            {
            }
        }