ServiceStack.HttpResult.GetContentLength C# (CSharp) Méthode

GetContentLength() public méthode

public GetContentLength ( ) : long?
Résultat long?
        public long? GetContentLength()
        {
            if (FileInfo != null)
                return FileInfo.Length;
            if (ResponseStream != null)
                return ResponseStream.Length;
            return ResponseText?.Length;
        }