Dev2.Runtime.ESB.Management.Services.DeleteVersion.HandlesType C# (CSharp) Method

HandlesType() public method

public HandlesType ( ) : string
return string
        public string HandlesType()
        {
            return "DeleteVersion";
        }

Usage Example

// ReSharper disable InconsistentNaming
        public void DeleteVersion_Name_GetName()

        {
            //------------Setup for test--------------------------
            var DeleteVersion = new DeleteVersion();

            //------------Execute Test---------------------------

            //------------Assert Results-------------------------
            Assert.AreEqual("DeleteVersion", DeleteVersion.HandlesType());
        }
All Usage Examples Of Dev2.Runtime.ESB.Management.Services.DeleteVersion::HandlesType