Exemplo n.º 1
0
        public string GetFullMethodName(RemoteTask task)
        {
            var typeName = task.GetProperty<string>("TypeName");
            var shortName = task.GetProperty<string>("ShortName");

            return string.Format("{0}.{1}", typeName, shortName);
        }
Exemplo n.º 2
0
        public string GetFullMethodName(RemoteTask task)
        {
            var typeName  = task.GetProperty <string>("TypeName");
            var shortName = task.GetProperty <string>("ShortName");

            return(string.Format("{0}.{1}", typeName, shortName));
        }
Exemplo n.º 3
0
        public string GetFullMethodName(RemoteTask task)
        {
            var typeName = task.GetProperty <string>("TypeName");

            string methodName;

            try
            {
                methodName = task.GetProperty <string>("MethodName");
            }
            catch (Exception)
            {
                methodName = task.GetProperty <string>("ShortName");
            }

            return(string.Format("{0}.{1}", typeName, methodName));
        }
Exemplo n.º 4
0
        public string GetFullMethodName(RemoteTask task)
        {
            var typeName = task.GetProperty<string>("TypeName");

            string methodName;

            try
            {
                methodName = task.GetProperty<string>("MethodName");
            }
            catch (Exception)
            {
                methodName = task.GetProperty<string>("ShortName");
            }

            return string.Format("{0}.{1}", typeName, methodName);
        }
Exemplo n.º 5
0
 public string GetFullClassName(RemoteTask task)
 {
     return(task.GetProperty <string>("TypeName"));
 }
Exemplo n.º 6
0
 public string GetAssemblyLocation(RemoteTask task)
 {
     return(task.GetProperty <string>("AssemblyLocation"));
 }
Exemplo n.º 7
0
 public string GetFullClassName(RemoteTask task)
 {
     return task.GetProperty<string>("TypeName");
 }
 public string GetAssemblyLocation(RemoteTask task)
 {
     return task.GetProperty<string>("AssemblyLocation");
 }
Exemplo n.º 9
0
 public string GetFullMethodName(RemoteTask task)
 {
     return string.Format("{0}.{1}", task.GetProperty<string>("TypeName"), task.GetProperty<string>("ShortName"));
 }
Exemplo n.º 10
0
 public string GetFullMethodName(RemoteTask task)
 {
     return(string.Format("{0}.{1}", task.GetProperty <string>("TypeName"), task.GetProperty <string>("ShortName")));
 }
Exemplo n.º 11
0
 public string GetXapPath(RemoteTask task)
 {
     return task.GetProperty<string>("AssemblyLocation").Replace(".dll", ".xap"); // TODO: Find a way to get this from the project settings.
 }