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)); }
public static Dictionary <string, string> GetDocKeys(this LightDoc lightdoc) { return(DocKeyEncrypter.DocIdToKeys(lightdoc.DocId)); }