예제 #1
0
 public void ParseSandboxPatchFile(PatchFile patchFile)
 {
     if (SandboxPatchFile != null)
     {
         throw new Exception("Should never get here.");
     }
     SandboxPatchFile = patchFile;
 }
예제 #2
0
 public void ParseWebPatchFile(string fileContent)
 {
     if (WebPatchFile != null)
     {
         throw new Exception("Should never get here.");
     }
     WebPatchFile = new PatchFile();
     WebPatchFile.Parse(fileContent);
 }