aboutsummaryrefslogtreecommitdiff
path: root/files/pt-br/web/http/headers/content-length/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/pt-br/web/http/headers/content-length/index.html')
-rw-r--r--files/pt-br/web/http/headers/content-length/index.html64
1 files changed, 64 insertions, 0 deletions
diff --git a/files/pt-br/web/http/headers/content-length/index.html b/files/pt-br/web/http/headers/content-length/index.html
new file mode 100644
index 0000000000..dca35d3988
--- /dev/null
+++ b/files/pt-br/web/http/headers/content-length/index.html
@@ -0,0 +1,64 @@
+---
+title: Content-Length
+slug: Web/HTTP/Headers/Content-Length
+tags:
+ - Cabeçalhos
+ - HTTP
+ - Referencia
+translation_of: Web/HTTP/Headers/Content-Length
+---
+<div>{{HTTPSidebar}}</div>
+
+<p>O cabeçalho de entidade <strong><code>Content-Length</code></strong> indica o tamanho do corpo da entidade, em bytes, enviado ao destinatário.</p>
+
+<table class="properties">
+ <tbody>
+ <tr>
+ <th scope="row">Tipo de cabeçalho</th>
+ <td>{{Glossary("Entity header")}}</td>
+ </tr>
+ <tr>
+ <th scope="row">{{Glossary("Forbidden header name")}}</th>
+ <td>sim</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Sintaxe">Sintaxe</h2>
+
+<pre class="syntaxbox">Content-Length: &lt;tamanho&gt;
+</pre>
+
+<h2 id="Diretivas">Diretivas</h2>
+
+<dl>
+ <dt>&lt;tamanho&gt;</dt>
+ <dd>O tamanho em número decimal de octetos.</dd>
+</dl>
+
+<h2 id="Especificações">Especificações</h2>
+
+<table class="standard-table">
+ <tbody>
+ <tr>
+ <th scope="col">Especificação</th>
+ <th scope="col">Título</th>
+ </tr>
+ <tr>
+ <td>{{RFC("7230", "Content-Length", "3.3.2")}}</td>
+ <td>Protocolo de Transferência de Hypertexto (HTTP/1.1): Sintaxe de mensagem e Roteamento</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Compatibilidade_de_navegadores">Compatibilidade de navegadores</h2>
+
+<p class="hidden">The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> and send us a pull request.</p>
+
+<p>{{Compat("http.headers.Content-Length")}}</p>
+
+<h2 id="Veja_também">Veja também</h2>
+
+<ul>
+ <li>{{HTTPHeader("Transfer-Encoding")}}</li>
+</ul>