GetFormId() static private method

Gets the ACAT descriptor guid for the specifed Type
static private GetFormId ( Type type ) : System.Guid
type System.Type Scanner class Type
return System.Guid
Exemplo n.º 1
0
        /// <summary>
        /// Add the form of the specified type to the form cache.
        /// </summary>
        /// <param name="type">the .NET type</param>
        public void AddFormToCache(Type type)
        {
            var guid = PanelConfigMap.GetFormId(type);

            PanelConfigMap.AddFormToCache(guid, type);
        }