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

            command.AddCommand(builder.BuildDeleteCommand());
            command.AddCommand(builder.BuildGetCommand());
            command.AddCommand(builder.BuildPatchCommand());
            return(command);
        }