Braintree.TestUtil.TestHelper.Escrow C# (CSharp) Method

Escrow() public static method

public static Escrow ( Braintree.BraintreeService service, string transactionId ) : void
service Braintree.BraintreeService
transactionId string
return void
        public static void Escrow(BraintreeService service, string transactionId)
        {
            NodeWrapper response = new NodeWrapper(service.Put(service.MerchantPath() + "/transactions/" + transactionId + "/escrow"));
            Assert.IsTrue(response.IsSuccess());
        }