示例#1
0
        public Command BuildCommand()
        {
            var command = new Command("item");
            var builder = new SiteItemRequestBuilder(PathParameters, RequestAdapter);

            command.AddCommand(builder.BuildGetCommand());
            return(command);
        }
示例#2
0
        public Command BuildCommand()
        {
            var command = new Command("item");
            var builder = new SiteItemRequestBuilder(PathParameters, RequestAdapter);

            command.AddCommand(builder.BuildAnalyticsCommand());
            command.AddCommand(builder.BuildColumnsCommand());
            command.AddCommand(builder.BuildContentTypesCommand());
            command.AddCommand(builder.BuildDriveCommand());
            command.AddCommand(builder.BuildDrivesCommand());
            command.AddCommand(builder.BuildExternalColumnsCommand());
            command.AddCommand(builder.BuildGetCommand());
            command.AddCommand(builder.BuildItemsCommand());
            command.AddCommand(builder.BuildListsCommand());
            command.AddCommand(builder.BuildOnenoteCommand());
            command.AddCommand(builder.BuildOperationsCommand());
            command.AddCommand(builder.BuildPatchCommand());
            command.AddCommand(builder.BuildPermissionsCommand());
            command.AddCommand(builder.BuildSitesCommand());
            command.AddCommand(builder.BuildTermStoreCommand());
            command.AddCommand(builder.BuildTermStoresCommand());
            return(command);
        }