You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
1.0 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.IO;
using System.Net;
namespace JumpKick.HttpLib.Provider
{
public class SettableActionProvider : ActionProvider
{
private Action<WebHeaderCollection,Stream> success;
private Action<WebException> fail;
private NonActionProvider nonaction = new NonActionProvider();
public SettableActionProvider(Action<WebHeaderCollection, Stream> success, Action<WebException> fail)
{
if(success == null)
{
this.success = nonaction.Success;
}
if(fail == null)
{
this.fail = nonaction.Fail;
}
this.success = success;
this.fail = fail;
}
public Action<WebHeaderCollection, Stream> Success
{
get { return success; }
}
public Action<WebException> Fail
{
get { return fail; }
}
}
}