CreateMetaFromType() public method

Creates the meta-info from the specified type.
public CreateMetaFromType ( Type implementation ) : SynchronizeMetaInfo
implementation System.Type The implementation type.
return SynchronizeMetaInfo
        /// <summary>
        ///   Obtains synchronization information from the attributes.
        /// </summary>
        /// <param name = "model">The model.</param>
        private void CheckFromAttributes(ComponentModel model)
        {
            var attributes = model.Implementation.GetAttributes <SynchronizeAttribute>(true);

            if (attributes.Length != 0)
            {
                metaStore.CreateMetaFromType(model.Implementation);
            }
        }