Ejemplo n.º 1
0
    public FetchResult finishPost()
    {
        SimpleFetchResult  result  = new SimpleFetchResult();
        SimpleFetchHandler handler = new SimpleFetchHandler(result);

        finishPost(handler);
        return(result);
    }
Ejemplo n.º 2
0
    public FetchResult get(Method method)
    {
        SimpleFetchResult  result  = new SimpleFetchResult();
        SimpleFetchHandler handler = new SimpleFetchHandler(result);

        get(handler, method);
        return(result);
    }
Ejemplo n.º 3
0
    public FetchResult post(int contentByteCount, byte[] contentBytes)
    {
        SimpleFetchResult  result  = new SimpleFetchResult();
        SimpleFetchHandler handler = new SimpleFetchHandler(result);

        post(contentByteCount, contentBytes, handler);
        return(result);
    }
Ejemplo n.º 4
0
 public SimpleFetchHandler(SimpleFetchResult init_result)
 {
     result = init_result;
 }