SearchForTextOfTag() public method

public SearchForTextOfTag ( string tag ) : string
tag string
return string
 public SignatureDescription(SecurityElement el)
 {
     if (el == null)
     {
         throw new ArgumentNullException("el");
     }
     this._strKey = el.SearchForTextOfTag("Key");
     this._strDigest = el.SearchForTextOfTag("Digest");
     this._strFormatter = el.SearchForTextOfTag("Formatter");
     this._strDeformatter = el.SearchForTextOfTag("Deformatter");
 }