Show / Hide Table of Contents

Class LayersResource.AnnotationDataResource.GetRequest

Gets the annotation data.

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

Constructors

GetRequest(IClientService, String, String, String, String)

Constructs a new Get request.

Declaration
public GetRequest(IClientService service, string volumeId, string layerId, string annotationDataId, string contentVersion)
Parameters
Type Name Description
IClientService service
System.String volumeId
System.String layerId
System.String annotationDataId
System.String contentVersion

Properties

AllowWebDefinitions

For the dictionary layer. Whether or not to allow web definitions.

Declaration
[RequestParameter("allowWebDefinitions", RequestParameterType.Query)]
public virtual bool? AllowWebDefinitions { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

AnnotationDataId

The ID of the annotation data to retrieve.

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

ContentVersion

The content version for the volume you are trying to retrieve.

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

H

The requested pixel height for any images. If height is provided width must also be provided.

Declaration
[RequestParameter("h", RequestParameterType.Query)]
public virtual int? H { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

HttpMethod

Gets the HTTP method.

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

LayerId

The ID for the layer to get the annotations.

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

Locale

The locale information for the data. ISO-639-1 language and ISO-3166-1 country code. Ex: 'en_US'.

Declaration
[RequestParameter("locale", RequestParameterType.Query)]
public virtual string Locale { 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.Books.v1.Data.DictionaryAnnotationdata>.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.Books.v1.Data.DictionaryAnnotationdata>.RestPath

Scale

The requested scale for the image.

Declaration
[RequestParameter("scale", RequestParameterType.Query)]
public virtual int? Scale { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Source

String to identify the originator of this request.

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

VolumeId

The volume to retrieve annotations for.

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

W

The requested pixel width for any images. If width is provided height must also be provided.

Declaration
[RequestParameter("w", RequestParameterType.Query)]
public virtual int? W { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Methods

InitParameters()

Initializes Get parameter list.

Declaration
protected override void InitParameters()
Overrides
Google.Apis.Books.v1.BooksBaseServiceRequest<Google.Apis.Books.v1.Data.DictionaryAnnotationdata>.InitParameters()

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
In This Article
Back to top