Thinktecture.Tools.Web.Services.CodeGeneration.PascalCaseConverter.DecorateInternal C# (CSharp) Method

DecorateInternal() private method

This function passes the relevent FilteredTypes collections to the DecorateCore function.
private DecorateInternal ( ) : void
return void
        private void DecorateInternal()
        {
            // Send the data contracts.
            DecorateCore(code.DataContracts);
            // Send the message contracts.
            DecorateCore(code.MessageContracts);
            // Send the service contracts.
            DecorateCore(code.ServiceContracts);
            // Send the service types
            DecorateCore(code.ServiceTypes);
            // Send the client types.
            DecorateCore(code.ClientTypes);
        }