Show / Hide Table of Contents

Class VideosResource.UpdateRequest

Updates an existing resource.

Inheritance
System.Object
ClientServiceRequest
ClientServiceRequest<Video>
YouTubeBaseServiceRequest<Video>
VideosResource.UpdateRequest
Implements
IClientServiceRequest<Video>
IClientServiceRequest
Inherited Members
YouTubeBaseServiceRequest<Video>.Xgafv
YouTubeBaseServiceRequest<Video>.AccessToken
YouTubeBaseServiceRequest<Video>.Alt
YouTubeBaseServiceRequest<Video>.Callback
YouTubeBaseServiceRequest<Video>.Fields
YouTubeBaseServiceRequest<Video>.Key
YouTubeBaseServiceRequest<Video>.OauthToken
YouTubeBaseServiceRequest<Video>.PrettyPrint
YouTubeBaseServiceRequest<Video>.QuotaUser
YouTubeBaseServiceRequest<Video>.UploadType
YouTubeBaseServiceRequest<Video>.UploadProtocol
ClientServiceRequest<Video>.Execute()
ClientServiceRequest<Video>.ExecuteAsStream()
ClientServiceRequest<Video>.ExecuteAsync()
ClientServiceRequest<Video>.ExecuteAsync(CancellationToken)
ClientServiceRequest<Video>.ExecuteAsStreamAsync()
ClientServiceRequest<Video>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<Video>.CreateRequest(Nullable<Boolean>)
ClientServiceRequest<Video>.GenerateRequestUri()
ClientServiceRequest<Video>.GetDefaultETagAction(String)
ClientServiceRequest<Video>.ETagAction
ClientServiceRequest<Video>.ModifyRequest
ClientServiceRequest<Video>.RequestParameters
ClientServiceRequest<Video>.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.YouTube.v3
Assembly: Google.Apis.YouTube.v3.dll
Syntax
public class UpdateRequest : YouTubeBaseServiceRequest<Video>, IClientServiceRequest<Video>, IClientServiceRequest

Constructors

UpdateRequest(IClientService, Video, Repeatable<String>)

Constructs a new Update request.

Declaration
public UpdateRequest(IClientService service, Video body, Repeatable<string> part)
Parameters
Type Name Description
IClientService service
Video body
Repeatable<System.String> part

Properties

HttpMethod

Gets the HTTP method.

Declaration
public override string HttpMethod { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.YouTube.v3.Data.Video>.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.YouTube.v3.Data.Video>.MethodName

OnBehalfOfContentOwner

Note: This parameter is intended exclusively for YouTube content partners. The onBehalfOfContentOwner parameter indicates that the request's authorization credentials identify a YouTube CMS user who is acting on behalf of the content owner specified in the parameter value. This parameter is intended for YouTube content partners that own and manage many different YouTube channels. It allows content owners to authenticate once and get access to all their video and channel data, without having to provide authentication credentials for each individual channel. The actual CMS account that the user authenticates with must be linked to the specified YouTube content owner.

Declaration
[RequestParameter("onBehalfOfContentOwner", RequestParameterType.Query)]
public virtual string OnBehalfOfContentOwner { get; set; }
Property Value
Type Description
System.String

Part

The part parameter serves two purposes in this operation. It identifies the properties that the write operation will set as well as the properties that the API response will include. Note that this method will override the existing values for all of the mutable properties that are contained in any parts that the parameter value specifies. For example, a video's privacy setting is contained in the status part. As such, if your request is updating a private video, and the request's part parameter value includes the status part, the video's privacy setting will be updated to whatever value the request body specifies. If the request body does not specify a value, the existing privacy setting will be removed and the video will revert to the default privacy setting. In addition, not all parts contain properties that can be set when inserting or updating a video. For example, the statistics object encapsulates statistics that YouTube calculates for a video and does not contain values that you can set or modify. If the parameter value specifies a part that does not contain mutable values, that part will still be included in the API response.

Declaration
[RequestParameter("part", RequestParameterType.Query)]
public virtual Repeatable<string> Part { get; }
Property Value
Type Description
Repeatable<System.String>

RestPath

Gets the REST path.

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

Methods

GetBody()

Returns the body of the request.

Declaration
protected override object GetBody()
Returns
Type Description
System.Object
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.YouTube.v3.Data.Video>.GetBody()

InitParameters()

Initializes Update parameter list.

Declaration
protected override void InitParameters()
Overrides
Google.Apis.YouTube.v3.YouTubeBaseServiceRequest<Google.Apis.YouTube.v3.Data.Video>.InitParameters()

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
Back to top