Show / Hide Table of Contents

Class RestMethod.MediaUploadData.ProtocolsData.SimpleData

Supports uploading as a single HTTP request.

Inheritance
System.Object
RestMethod.MediaUploadData.ProtocolsData.SimpleData
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 SimpleData

Properties

Multipart

True if this endpoint supports upload multipart media.

Declaration
[JsonProperty("multipart")]
public virtual bool? Multipart { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

Path

The URI path to be used for upload. Should be used in conjunction with the basePath property at the api-level.

Declaration
[JsonProperty("path")]
public virtual string Path { get; set; }
Property Value
Type Description
System.String
In This Article
Back to top