Example #1
0
 //////////////////////////////////////////////////////////////////////
 /// <summary>default constructor</summary>
 //////////////////////////////////////////////////////////////////////
 internal GDataLoggingRequest(GDataRequestType type, Uri uriTarget, GDataGAuthRequestFactory factory, string strInputFileName, string strOutputFileName, string strCombinedLogFileName) : base(type, uriTarget, factory)
 {
     this.strInput    = strInputFileName;
     this.strOutput   = strOutputFileName;
     this.strCombined = strCombinedLogFileName;
 }
Example #2
0
 //////////////////////////////////////////////////////////////////////
 /// <summary>default constructor</summary>
 //////////////////////////////////////////////////////////////////////
 internal GDataGAuthRequest(GDataRequestType type, Uri uriTarget, GDataGAuthRequestFactory factory)  : base(type, uriTarget, factory as GDataRequestFactory)
 {
     // need to remember the factory, so that we can pass the new authtoken back there if need be
     this.factory = factory;
 }