Exemplo n.º 1
0
        private ContentLinkResponse(
            Outputs.ContentHashResponse?contentHash,

            string?uri,

            string?version)
        {
            ContentHash = contentHash;
            Uri         = uri;
            Version     = version;
        }
Exemplo n.º 2
0
        private ContentSourceResponse(
            Outputs.ContentHashResponse?hash,

            string?type,

            string?value,

            string?version)
        {
            Hash    = hash;
            Type    = type;
            Value   = value;
            Version = version;
        }
Exemplo n.º 3
0
        private ContentLinkResponse(
            Outputs.ContentHashResponse?contentHash,

            double?contentSize,

            string?contentVersion,

            object?metadata,

            string?uri)
        {
            ContentHash    = contentHash;
            ContentSize    = contentSize;
            ContentVersion = contentVersion;
            Metadata       = metadata;
            Uri            = uri;
        }