Show / Hide Table of Contents

Class RestMethod.MediaUploadData.ProtocolsData

Supported upload protocols.

Inheritance
System.Object
RestMethod.MediaUploadData.ProtocolsData
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Discovery.v1.Data
Assembly: Google.Apis.Discovery.v1.dll
Syntax
public class ProtocolsData

Properties

Resumable

Supports the Resumable Media Upload protocol.

Declaration
[JsonProperty("resumable")]
public virtual RestMethod.MediaUploadData.ProtocolsData.ResumableData Resumable { get; set; }
Property Value
Type Description
RestMethod.MediaUploadData.ProtocolsData.ResumableData

Simple

Supports uploading as a single HTTP request.

Declaration
[JsonProperty("simple")]
public virtual RestMethod.MediaUploadData.ProtocolsData.SimpleData Simple { get; set; }
Property Value
Type Description
RestMethod.MediaUploadData.ProtocolsData.SimpleData
In This Article
Back to top