GetDefaultQualifiedTypeName() static private method

static private GetDefaultQualifiedTypeName ( Type type ) : String
type System.Type
return String
Esempio n. 1
0
 internal static string GetQualifiedTypeName(RuntimeType type)
 {
     if (type == (RuntimeType)null)
     {
         return((string)null);
     }
     return(RemotingServices.GetDefaultQualifiedTypeName(type));
 }
Esempio n. 2
0
        internal static String GetQualifiedTypeName(Type type)
        {
            if (type == null)
            {
                return(null);
            }

            return(RemotingServices.GetDefaultQualifiedTypeName(type));
        }