예제 #1
0
        /// <summary>
        /// Create a new <see cref="CoapMessage"/> with its optinos pre-populated to match <paramref name="input"/>.
        /// </summary>
        /// <param name="input"></param>
        /// <returns></returns>
        public static CoapMessage CreateFromUri(string input)
        {
            var message = new CoapMessage();

            message.FromUri(input);
            return(message);
        }