aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Web/ExtensionMethods
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2019-01-01 14:30:20 +0200
committerRoy Ben-Shabat <Roy@Twine-s.com>2019-01-01 14:30:20 +0200
commitb50b7ddb4c231810d17e0141bb77437718b10110 (patch)
treec16de7bd470703301740ccd2b0f39bed4304a6c1 /Software/Visual_Studio/Tango.Web/ExtensionMethods
parent3415150ae12893d4f08d1afde512624755996095 (diff)
downloadTango-b50b7ddb4c231810d17e0141bb77437718b10110.tar.gz
Tango-b50b7ddb4c231810d17e0141bb77437718b10110.zip
Some more work on environments...
Diffstat (limited to 'Software/Visual_Studio/Tango.Web/ExtensionMethods')
-rw-r--r--Software/Visual_Studio/Tango.Web/ExtensionMethods/DeploymentSlotExtensions.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.Web/ExtensionMethods/DeploymentSlotExtensions.cs b/Software/Visual_Studio/Tango.Web/ExtensionMethods/DeploymentSlotExtensions.cs
new file mode 100644
index 000000000..04e5ac300
--- /dev/null
+++ b/Software/Visual_Studio/Tango.Web/ExtensionMethods/DeploymentSlotExtensions.cs
@@ -0,0 +1,20 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using Tango.Web;
+
+public static class DeploymentSlotExtensions
+{
+ /// <summary>
+ /// Gets the deployment slot web address.
+ /// </summary>
+ /// <param name="slot">The slot.</param>
+ /// <returns></returns>
+ public static String ToAddress(this DeploymentSlot slot)
+ {
+ return slot.GetAttribute<DeploymentSlotAddressAttribute>().Address;
+ }
+}
+