Parse() публичный Метод

public Parse ( string>.Dictionary settings ) : void
settings string>.Dictionary
Результат void
Пример #1
0
        public static CoalesceSettings FromXml(IEnumerable <XElement> settings)
        {
            if (settings == null)
            {
                throw new ArgumentNullException(nameof(settings));
            }

            var result = new CoalesceSettings();

            result.Parse(settings);

            return(result);
        }
Пример #2
0
		public static CoalesceSettings FromXml(IEnumerable<XElement> settings)
		{
			if (settings == null)
			{
				throw new ArgumentNullException(nameof(settings));
			}

			var result = new CoalesceSettings();

			result.Parse(settings);

			return result;
		}
Пример #3
0
        public static CoalesceSettings FromDictionary(Dictionary <string, string> settings)
        {
            if (settings == null)
            {
                throw new ArgumentNullException(nameof(settings));
            }

            var result = new CoalesceSettings();

            result.Parse(settings);

            return(result);
        }
Пример #4
0
		public static CoalesceSettings FromDictionary(Dictionary<string, string> settings)
		{
			if (settings == null)
			{
				throw new ArgumentNullException(nameof(settings));
			}

			var result = new CoalesceSettings();

			result.Parse(settings);

			return result;
		}