RangeItemHeaderValue(Nullable<Int64>, Nullable<Int64>) Constructeur
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Initialise une nouvelle instance de la classe RangeItemHeaderValue.
public:
RangeItemHeaderValue(Nullable<long> from, Nullable<long> to);
public RangeItemHeaderValue (long? from, long? to);
new System.Net.Http.Headers.RangeItemHeaderValue : Nullable<int64> * Nullable<int64> -> System.Net.Http.Headers.RangeItemHeaderValue
Public Sub New (from As Nullable(Of Long), to As Nullable(Of Long))
Paramètres
Exceptions
Remarques
Voici un exemple de plage d’octets dans un en-tête Range d’une requête de protocole HTTP qui demande les 100 premiers octets :
Range: bytes=0-99\r\n\r\n
Pour cet exemple, le from
paramètre est spécifié sous la forme 0 et le to
paramètre est 99.