Example #1
0
    public System.Threading.Tasks.Task <pobierzNastepnyResponse> pobierzNastepnyAsync(ZapytaniePullPobierzTyp ZapytaniePullPobierz)
    {
        pobierzNastepnyRequest inValue = new pobierzNastepnyRequest();

        inValue.ZapytaniePullPobierz = ZapytaniePullPobierz;
        return(((pull)(this)).pobierzNastepnyAsync(inValue));
    }
Example #2
0
    public OdpowiedzPullPobierzTyp pobierzNastepny(ZapytaniePullPobierzTyp ZapytaniePullPobierz)
    {
        pobierzNastepnyRequest inValue = new pobierzNastepnyRequest();

        inValue.ZapytaniePullPobierz = ZapytaniePullPobierz;
        pobierzNastepnyResponse retVal = ((pull)(this)).pobierzNastepny(inValue);

        return(retVal.OdpowiedzPullPobierz);
    }
Example #3
0
        public pobierzNastepnyResponse pobierzNastepny(pobierzNastepnyRequest request)
        {
            if (count <= 0)
            {
                return(null);
            }
            //throw new ArgumentOutOfRangeException("No documents found");

            OdpowiedzPullPobierzTyp odp  = docs[count - 1];
            pobierzNastepnyResponse resp = new pobierzNastepnyResponse(odp);

            docs.Remove(docs[count - 1]);
            count--;
            return(resp);
        }
Example #4
0
 System.Threading.Tasks.Task <pobierzNastepnyResponse> pull.pobierzNastepnyAsync(pobierzNastepnyRequest request)
 {
     return(base.Channel.pobierzNastepnyAsync(request));
 }
Example #5
0
 pobierzNastepnyResponse pull.pobierzNastepny(pobierzNastepnyRequest request)
 {
     return(base.Channel.pobierzNastepny(request));
 }
Example #6
0
 public IAsyncResult BeginpobierzNastepny(pobierzNastepnyRequest request, AsyncCallback callback, object asyncState)
 {
     throw new NotImplementedException();
 }