예제 #1
0
        /// <summary>
        /// Read slide shapes or shape info.
        /// </summary>
        /// <param name="request">Request. <see cref="GetNotesSlideShapeRequest" /></param>
        /// <returns><see cref="ShapeResponse"/></returns>
        public ShapeResponse GetNotesSlideShape(GetNotesSlideShapeRequest request)
        {
            // verify the required parameter 'name' is set
            if (request.Name == null)
            {
                throw new ApiException(400, "Missing required parameter 'name' when calling GetNotesSlideShape");
            }

            // verify the required parameter 'path' is set
            if (request.Path == null)
            {
                throw new ApiException(400, "Missing required parameter 'path' when calling GetNotesSlideShape");
            }

            // create path and map variables
            string resourcePath = GetResourceUrl("/slides/{name}/slides/{slideIndex}/notesSlide/shapes/{path}/{shapeIndex}");

            resourcePath = UrlHelper.AddPathParameter(resourcePath, "name", request.Name);
            resourcePath = UrlHelper.AddPathParameter(resourcePath, "slideIndex", request.SlideIndex);
            resourcePath = UrlHelper.AddPathParameter(resourcePath, "path", request.Path);
            resourcePath = UrlHelper.AddPathParameter(resourcePath, "shapeIndex", request.ShapeIndex);
            resourcePath = UrlHelper.AddQueryParameterToUrl(resourcePath, "folder", request.Folder);
            resourcePath = UrlHelper.AddQueryParameterToUrl(resourcePath, "storage", request.Storage);
            string contentType = "application/json";
            var    files       = new List <FileInfo>();

            PickFiles(files, request);
            return(InvokeApi <ShapeResponse>(resourcePath, "GET", null, null, files, contentType));
        }
        private GetNotesSlideShapeRequest createGetNotesSlideShapeRequest()
        {
            GetNotesSlideShapeRequest request = new GetNotesSlideShapeRequest();

            request.Name       = "test.pptx";
            request.SlideIndex = 1;
            return(request);
        }
        public void getNotesSlideShapeExample()
        {
            ShapeResponse response = null;

            try
            {
                GetNotesSlideShapeRequest request = createGetNotesSlideShapeRequest();
                response = api.GetNotesSlideShape(request);
                Console.WriteLine(response.Code);
            }
            catch (Exception ex)
            {
                Console.WriteLine(ex.Message);
            }
        }