OpenPr0gramm.ClientConstants.GetFullSizeUrlPrefix C# (CSharp) Method

GetFullSizeUrlPrefix() static private method

static private GetFullSizeUrlPrefix ( bool secure ) : string
secure bool
return string
        internal static string GetFullSizeUrlPrefix(bool secure) => GetPrefix(secure) + "full." + HostName;

Usage Example

Exemplo n.º 1
0
        private static string GetBaseAddressForDownloadKind(DownloadKind downloadKind, bool useHttps)
        {
            switch (downloadKind)
            {
            case DownloadKind.Thumbnail:
                return(ClientConstants.GetThumbnailUrlPrefix(useHttps));

            case DownloadKind.NormalImage:
                return(ClientConstants.GetImageUrlPrefix(useHttps));

            case DownloadKind.LargestAvailable:
                return(ClientConstants.GetFullSizeUrlPrefix(useHttps));

            default:
                throw new InvalidOperationException();
            }
        }
All Usage Examples Of OpenPr0gramm.ClientConstants::GetFullSizeUrlPrefix