Pomona.PomonaDataSourceExtensions.Post C# (CSharp) Method

Post() public static method

public static Post ( this dataSource, Type type, object form ) : object
dataSource this
type System.Type
form object
return object
        public static object Post(this IPomonaDataSource dataSource, Type type, object form)
        {
            if (dataSource == null)
                throw new ArgumentNullException(nameof(dataSource));
            if (type == null)
                throw new ArgumentNullException(nameof(type));
            if (form == null)
                throw new ArgumentNullException(nameof(form));

            return postMethodInvoker(type, dataSource, form);
        }
PomonaDataSourceExtensions