public bool TryGetBinaryContent(string tcmUri, out byte[] bytes)
        {
            using (var client = new TridionBrokerServiceClient())
            {
                bytes = null;
                byte[] tempBytes = client.GetBinary(tcmUri);
                if (tempBytes != null)
                {
                    bytes = tempBytes;
                    return(true);
                }

                return(false);
            }
        }