Sync() private method

private Sync ( ) : int
return int
Example #1
0
 /// <summary>
 /// I don't know what this does!
 /// </summary>
 /// <returns>Z_OK if everything goes well.</returns>
 public int SyncInflate()
 {
     if (istate == null)
     {
         throw new ZlibException("No Inflate State!");
     }
     return(istate.Sync());
 }
Example #2
0
 internal int SyncInflate()
 {
     if (istate == null)
     {
         throw new ZlibException("No Inflate State!");
     }
     return(istate.Sync(this));
 }