Ejemplo n.º 1
0
 internal CompleteInformation(WCFGeneratorException exception)
 {
     this.mIsSuccess = false;
     this.mException = exception;
     this.dCCount    = 0;
     this.sCCount    = 0;
     this.mTotalTime = TimeSpan.MinValue;
 }
Ejemplo n.º 2
0
 internal CompleteInformation(int dCCount, int sCCount, TimeSpan generationTime)
 {
     this.mIsSuccess = true;
     this.mException = (WCFGeneratorException)null;
     this.dCCount    = dCCount;
     this.sCCount    = sCCount;
     this.mTotalTime = generationTime;
 }