Amazon.S3.Model.Internal.InventoryPredicateVisitor.Visit C# (CSharp) Method

Visit() public method

public Visit ( InventoryPrefixPredicate inventoryPrefixPredicate ) : void
inventoryPrefixPredicate InventoryPrefixPredicate
return void
        public void Visit(InventoryPrefixPredicate inventoryPrefixPredicate)
        {
            if (inventoryPrefixPredicate != null)
            {
                xmlWriter.WriteElementString("Prefix", "http://s3.amazonaws.com/doc/2006-03-01/", S3Transforms.ToXmlStringValue(inventoryPrefixPredicate.Prefix));
            }
        }
    }
InventoryPredicateVisitor