public static void SetDocId(this DocProcessingInstructions o, string DocId)
 {
     o.DocKeys = DocKeyEncrypter.DocIdToKeys(DocId);
 }
 public static string GetDocId(this DocProcessingInstructions o)
 {
     return(DocKeyEncrypter.DocIdFromKeys(o.DocKeys));
 }
Ejemplo n.º 3
0
 public static Dictionary <string, string> GetDocKeys(this LightDoc lightdoc)
 {
     return(DocKeyEncrypter.DocIdToKeys(lightdoc.DocId));
 }