Show / Hide Table of Contents

Class CssesResource.GetRequest

Retrieves a single CSS domain by ID.

Inheritance
System.Object
ClientServiceRequest
ClientServiceRequest<Css>
ShoppingContentBaseServiceRequest<Css>
CssesResource.GetRequest
Implements
IClientServiceRequest<Css>
IClientServiceRequest
Inherited Members
ShoppingContentBaseServiceRequest<Css>.Xgafv
ShoppingContentBaseServiceRequest<Css>.AccessToken
ShoppingContentBaseServiceRequest<Css>.Alt
ShoppingContentBaseServiceRequest<Css>.Callback
ShoppingContentBaseServiceRequest<Css>.Fields
ShoppingContentBaseServiceRequest<Css>.Key
ShoppingContentBaseServiceRequest<Css>.OauthToken
ShoppingContentBaseServiceRequest<Css>.PrettyPrint
ShoppingContentBaseServiceRequest<Css>.QuotaUser
ShoppingContentBaseServiceRequest<Css>.UploadType
ShoppingContentBaseServiceRequest<Css>.UploadProtocol
ClientServiceRequest<Css>.Execute()
ClientServiceRequest<Css>.ExecuteAsStream()
ClientServiceRequest<Css>.ExecuteAsync()
ClientServiceRequest<Css>.ExecuteAsync(CancellationToken)
ClientServiceRequest<Css>.ExecuteAsStreamAsync()
ClientServiceRequest<Css>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<Css>.CreateRequest(Nullable<Boolean>)
ClientServiceRequest<Css>.GenerateRequestUri()
ClientServiceRequest<Css>.GetBody()
ClientServiceRequest<Css>.GetDefaultETagAction(String)
ClientServiceRequest<Css>.ETagAction
ClientServiceRequest<Css>.ModifyRequest
ClientServiceRequest<Css>.ValidateParameters
ClientServiceRequest<Css>.RequestParameters
ClientServiceRequest<Css>.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.ShoppingContent.v2_1
Assembly: Google.Apis.ShoppingContent.v2_1.dll
Syntax
public class GetRequest : ShoppingContentBaseServiceRequest<Css>, IClientServiceRequest<Css>, IClientServiceRequest

Constructors

GetRequest(IClientService, Int64, Int64)

Constructs a new Get request.

Declaration
public GetRequest(IClientService service, long cssGroupId, long cssDomainId)
Parameters
Type Name Description
IClientService service
System.Int64 cssGroupId
System.Int64 cssDomainId

Properties

CssDomainId

Required. The ID of the CSS domain to return.

Declaration
[RequestParameter("cssDomainId", RequestParameterType.Path)]
public virtual long CssDomainId { get; }
Property Value
Type Description
System.Int64

CssGroupId

Required. The ID of the managing account. If this parameter is not the same as cssDomainId, then this ID must be a CSS group ID and cssDomainId must be the ID of a CSS domain affiliated with this group.

Declaration
[RequestParameter("cssGroupId", RequestParameterType.Path)]
public virtual long CssGroupId { get; }
Property Value
Type Description
System.Int64

HttpMethod

Gets the HTTP method.

Declaration
public override string HttpMethod { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.ShoppingContent.v2_1.Data.Css>.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.ShoppingContent.v2_1.Data.Css>.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.ShoppingContent.v2_1.Data.Css>.RestPath

Methods

InitParameters()

Initializes Get parameter list.

Declaration
protected override void InitParameters()
Overrides
Google.Apis.ShoppingContent.v2_1.ShoppingContentBaseServiceRequest<Google.Apis.ShoppingContent.v2_1.Data.Css>.InitParameters()

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
In This Article
Back to top