Show / Hide Table of Contents

Class ManagementResource.UploadsResource.UploadDataRequest

Upload data for a custom data source.

Inheritance
System.Object
ClientServiceRequest
ClientServiceRequest<Upload>
AnalyticsBaseServiceRequest<Upload>
ManagementResource.UploadsResource.UploadDataRequest
Implements
IClientServiceRequest<Upload>
IClientServiceRequest
Inherited Members
AnalyticsBaseServiceRequest<Upload>.Alt
AnalyticsBaseServiceRequest<Upload>.Fields
AnalyticsBaseServiceRequest<Upload>.Key
AnalyticsBaseServiceRequest<Upload>.OauthToken
AnalyticsBaseServiceRequest<Upload>.PrettyPrint
AnalyticsBaseServiceRequest<Upload>.QuotaUser
AnalyticsBaseServiceRequest<Upload>.UserIp
ClientServiceRequest<Upload>.Execute()
ClientServiceRequest<Upload>.ExecuteAsStream()
ClientServiceRequest<Upload>.ExecuteAsync()
ClientServiceRequest<Upload>.ExecuteAsync(CancellationToken)
ClientServiceRequest<Upload>.ExecuteAsStreamAsync()
ClientServiceRequest<Upload>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<Upload>.CreateRequest(Nullable<Boolean>)
ClientServiceRequest<Upload>.GenerateRequestUri()
ClientServiceRequest<Upload>.GetBody()
ClientServiceRequest<Upload>.GetDefaultETagAction(String)
ClientServiceRequest<Upload>.ETagAction
ClientServiceRequest<Upload>.ModifyRequest
ClientServiceRequest<Upload>.RequestParameters
ClientServiceRequest<Upload>.Service
ClientServiceRequest._unsuccessfulResponseHandlers
ClientServiceRequest._exceptionHandlers
ClientServiceRequest._executeInterceptors
ClientServiceRequest.AddUnsuccessfulResponseHandler(IHttpUnsuccessfulResponseHandler)
ClientServiceRequest.AddExceptionHandler(IHttpExceptionHandler)
ClientServiceRequest.AddExecuteInterceptor(IHttpExecuteInterceptor)
ClientServiceRequest.Credential
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.Analytics.v3
Assembly: Google.Apis.Analytics.v3.dll
Syntax
public class UploadDataRequest : AnalyticsBaseServiceRequest<Upload>, IClientServiceRequest<Upload>, IClientServiceRequest

Constructors

UploadDataRequest(IClientService, String, String, String)

Constructs a new UploadData request.

Declaration
public UploadDataRequest(IClientService service, string accountId, string webPropertyId, string customDataSourceId)
Parameters
Type Name Description
IClientService service
System.String accountId
System.String webPropertyId
System.String customDataSourceId

Properties

AccountId

Account Id associated with the upload.

Declaration
[RequestParameter("accountId", RequestParameterType.Path)]
public virtual string AccountId { get; }
Property Value
Type Description
System.String

CustomDataSourceId

Custom data source Id to which the data being uploaded belongs.

Declaration
[RequestParameter("customDataSourceId", RequestParameterType.Path)]
public virtual string CustomDataSourceId { get; }
Property Value
Type Description
System.String

HttpMethod

Gets the HTTP method.

Declaration
public override string HttpMethod { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Analytics.v3.Data.Upload>.HttpMethod

MethodName

Gets the method name.

Declaration
public override string MethodName { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Analytics.v3.Data.Upload>.MethodName

RestPath

Gets the REST path.

Declaration
public override string RestPath { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Analytics.v3.Data.Upload>.RestPath

WebPropertyId

Web property UA-string associated with the upload.

Declaration
[RequestParameter("webPropertyId", RequestParameterType.Path)]
public virtual string WebPropertyId { get; }
Property Value
Type Description
System.String

Methods

InitParameters()

Initializes UploadData parameter list.

Declaration
protected override void InitParameters()
Overrides
Google.Apis.Analytics.v3.AnalyticsBaseServiceRequest<Google.Apis.Analytics.v3.Data.Upload>.InitParameters()

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
Back to top