System.Runtime.Remoting.RemotingServices.GetDefaultQualifiedTypeName C# (CSharp) Method

GetDefaultQualifiedTypeName() static private method

static private GetDefaultQualifiedTypeName ( Type type ) : String
type System.Type
return String
        internal static String GetDefaultQualifiedTypeName(Type type)
        {
            RemotingTypeCachedData cache = (RemotingTypeCachedData)
                InternalRemotingServices.GetReflectionCachedData(type);

            return cache.QualifiedTypeName;
        } // GetDefaultQualifiedTypeName

Usage Example

Beispiel #1
0
 internal static string GetQualifiedTypeName(RuntimeType type)
 {
     if (type == (RuntimeType)null)
     {
         return((string)null);
     }
     return(RemotingServices.GetDefaultQualifiedTypeName(type));
 }
All Usage Examples Of System.Runtime.Remoting.RemotingServices::GetDefaultQualifiedTypeName
RemotingServices