public UploadParameterBuilder WithNemKeysPrivacy(string privateKey, string publicKey)
 {
     PrivacyStrategy = NemKeysPrivacyStrategy.Create(privateKey, publicKey);
     return(this);
 }
示例#2
0
 public DirectDownloadParameterBuilder WithNemKeysPrivacy(string privateKey, string publicKey)
 {
     PrivacyStrategy = NemKeysPrivacyStrategy.Create(privateKey, publicKey);
     return this;
 }