示例#1
0
        private static string GetFullTypeString(Type oType)
        {
            string sType = String.Empty;

            if (oType != null)
            {
                sType = TisServicesUtil.GetFullTypeString(oType);
            }

            return(sType);
        }
示例#2
0
 private static string GetServiceNameFromType(Type oServiceType)
 {
     return(TisServicesUtil.GetShortTypeString(oServiceType));
 }
 private string ServiceNameFromServiceType(
     Type oServiceType)
 {
     return(TisServicesUtil.ServiceNameFromServiceType(oServiceType));
 }
 protected bool IsThisHost(string sHostName)
 {
     return(TisServicesUtil.ServicesHostNamesEqual(
                sHostName,
                this.Name));
 }
示例#5
0
 private string SchemaTypeToString(Type oSchemaType)
 {
     return(TisServicesUtil.GetFullTypeString(oSchemaType));
 }