AdapterPattern.Adaptee.SpecificRequest C# (CSharp) Method

SpecificRequest() public method

public SpecificRequest ( ) : void
return void
        public void SpecificRequest()
        {
            Console.WriteLine("Specific request");
        }
    }

Usage Example

Example #1
0
        /// <summary>
        /// Make a request.
        /// </summary>
        public override void Request()
        {
            // possibly do some other work ...

            // call the adaptee
            _adaptee.SpecificRequest();

            // possibly do some other work ...
        }
All Usage Examples Of AdapterPattern.Adaptee::SpecificRequest