Show / Hide Table of Contents

Class ThirdPartyLinksResource.ListRequest

Retrieves a list of resources, possibly filtered.

Inheritance
System.Object
ClientServiceRequest
ClientServiceRequest<ThirdPartyLink>
YouTubeBaseServiceRequest<ThirdPartyLink>
ThirdPartyLinksResource.ListRequest
Implements
IClientServiceRequest<ThirdPartyLink>
IClientServiceRequest
Inherited Members
YouTubeBaseServiceRequest<ThirdPartyLink>.Xgafv
YouTubeBaseServiceRequest<ThirdPartyLink>.AccessToken
YouTubeBaseServiceRequest<ThirdPartyLink>.Alt
YouTubeBaseServiceRequest<ThirdPartyLink>.Callback
YouTubeBaseServiceRequest<ThirdPartyLink>.Fields
YouTubeBaseServiceRequest<ThirdPartyLink>.Key
YouTubeBaseServiceRequest<ThirdPartyLink>.OauthToken
YouTubeBaseServiceRequest<ThirdPartyLink>.PrettyPrint
YouTubeBaseServiceRequest<ThirdPartyLink>.QuotaUser
YouTubeBaseServiceRequest<ThirdPartyLink>.UploadType
YouTubeBaseServiceRequest<ThirdPartyLink>.UploadProtocol
ClientServiceRequest<ThirdPartyLink>.Execute()
ClientServiceRequest<ThirdPartyLink>.ExecuteAsStream()
ClientServiceRequest<ThirdPartyLink>.ExecuteAsync()
ClientServiceRequest<ThirdPartyLink>.ExecuteAsync(CancellationToken)
ClientServiceRequest<ThirdPartyLink>.ExecuteAsStreamAsync()
ClientServiceRequest<ThirdPartyLink>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<ThirdPartyLink>.CreateRequest(Nullable<Boolean>)
ClientServiceRequest<ThirdPartyLink>.GenerateRequestUri()
ClientServiceRequest<ThirdPartyLink>.GetBody()
ClientServiceRequest<ThirdPartyLink>.GetDefaultETagAction(String)
ClientServiceRequest<ThirdPartyLink>.ETagAction
ClientServiceRequest<ThirdPartyLink>.ModifyRequest
ClientServiceRequest<ThirdPartyLink>.RequestParameters
ClientServiceRequest<ThirdPartyLink>.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 ListRequest : YouTubeBaseServiceRequest<ThirdPartyLink>, IClientServiceRequest<ThirdPartyLink>, IClientServiceRequest

Constructors

ListRequest(IClientService, Repeatable<String>)

Constructs a new List request.

Declaration
public ListRequest(IClientService service, Repeatable<string> part)
Parameters
Type Name Description
IClientService service
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.ThirdPartyLink>.HttpMethod

LinkingToken

Get a third party link with the given linking token.

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

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.ThirdPartyLink>.MethodName

Part

The part parameter specifies the thirdPartyLink resource parts that the API response will include. Supported values are linkingToken, status, and snippet.

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.ThirdPartyLink>.RestPath

Type

Get a third party link of the given type.

Declaration
[RequestParameter("type", RequestParameterType.Query)]
public virtual ThirdPartyLinksResource.ListRequest.TypeEnum? Type { get; set; }
Property Value
Type Description
System.Nullable<ThirdPartyLinksResource.ListRequest.TypeEnum>

Methods

InitParameters()

Initializes List parameter list.

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

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
Back to top