Amazon.Runtime.Internal.Util.StringUtils.FromMemoryStream C# (CSharp) Method

FromMemoryStream() public static method

public static FromMemoryStream ( MemoryStream value ) : string
value System.IO.MemoryStream
return string
        public static string FromMemoryStream(MemoryStream value)
        {
            return Convert.ToBase64String(value.ToArray());
        }