DNN3中的枚舉

來源:互聯網
上載者:User

2005-1-27 20:06:51

搜尋子目錄

位置1: J:\dnn309\Components\Lists\ListController.vb

行號  29 -         Public Enum CacheScope

            None

            Lists

            ListCollection

        End Enum

位置2: J:\dnn309\Components\LocaleFile\LocaleFileInfo.vb

行號  24 -  Public Enum LocaleType

  GlobalResource

  AdminResource

  ControlResource

  LocalResource

 End Enum

位置3: J:\dnn309\Components\Localization\Localization.vb

行號  37 -  Public Enum CultureDropDownTypes

  ''' <value>Displays the culture name in the format

"&lt;languagefull&gt; (&lt;country/regionfull&gt;) in the .NET Framework

language</value>

  DisplayName

  ''' <value>Displays the culture name in the format

"&lt;languagefull&gt; (&lt;country/regionfull&gt;) in English</value>

  EnglishName

  ''' <value>Displays the culture identifier</value>

  Lcid

  ''' <value>Displays the culture name in the format

"&lt;languagecode2&gt; (&lt;country/regioncode2&gt;)</value>

  Name

  ''' <value>Displays the culture name in the format

"&lt;languagefull&gt; (&lt;country/regionfull&gt;) in the language that the culture is set

to display</value>

  NativeName

  ''' <value>Displays the IS0 639-1 two letter code</value>

  TwoLetterIsoCode

  ''' <value>Displays the ISO 629-2 three letter code

"&lt;languagefull&gt; (&lt;country/regionfull&gt;)</value>

  ThreeLetterIsoCode

 End Enum

位置4: J:\dnn309\Components\Modules\ModuleDefinitionValidator.vb

行號  31 -  Public Enum ModuleDefinitionVersion

  VUnknown = 0

  V1 = 1

  V2 = 2

  V2_Skin = 3

  V2_Provider = 4

  V3 = 5

 End Enum

位置5: J:\dnn309\Components\Modules\ModuleInfo.vb

行號  29 -  Public Enum VisibilityState

  Maximized

  Minimized

  None

 End Enum

位置6: J:\dnn309\Components\Portal\PortalController.vb

行號  37 -  Public Enum PortalTemplateModuleAction

  Ignore

  Merge

  Replace

 End Enum

位置7: J:\dnn309\Components\Providers\Logging\LoggingProvider.vb

行號  26 -   Public Enum ReturnType

   LogInfoObjects

   XML

  End Enum

位置8: J:\dnn309\Components\Providers\Logging\LogTypeConfigInfo.vb

行號  33 -         Public Enum NotificationThresholdTimeTypes

            None = 0

            Seconds = 1

            Minutes = 2

            Hours = 3

            Days = 4

        End Enum

位置9: J:\dnn309\Components\Providers\Logging\Event Logging\EventLogInfo.vb

行號  38 -          Public Enum EventLogType

            USER_CREATED

            USER_DELETED

            LOGIN_SUPERUSER

            LOGIN_SUCCESS

            LOGIN_FAILURE

            CACHE_REFRESHED

            PASSWORD_SENT_SUCCESS

            PASSWORD_SENT_FAILURE

            LOG_NOTIFICATION_FAILURE

            PORTAL_CREATED

            PORTAL_DELETED

            TAB_CREATED

            TAB_UPDATED

            TAB_DELETED

            TAB_SENT_TO_RECYCLE_BIN

            TAB_RESTORED

            USER_ROLE_CREATED

            USER_ROLE_DELETED

            ROLE_CREATED

            ROLE_UPDATED

            ROLE_DELETED

            MODULE_CREATED

            MODULE_UPDATED

            MODULE_DELETED

            MODULE_SENT_TO_RECYCLE_BIN

            MODULE_RESTORED

            SCHEDULER_EVENT_STARTED

            SCHEDULER_EVENT_PROGRESSING

            SCHEDULER_EVENT_COMPLETED

            APPLICATION_START

            APPLICATION_END

            APPLICATION_SHUTTING_DOWN

            SCHEDULER_STARTED

            SCHEDULER_SHUTTING_DOWN

            SCHEDULER_STOPPED

            ADMIN_ALERT

            HOST_ALERT

        End Enum

位置10: J:\dnn309\Components\Providers\Logging\Exception

Logging\ExceptionLogController.vb

行號  27 -   Public Enum ExceptionLogType

   GENERAL_EXCEPTION

   MODULE_LOAD_EXCEPTION

   PAGE_LOAD_EXCEPTION

   SCHEDULER_EXCEPTION

  End Enum

位置11: J:\dnn309\Components\Providers\Scheduling\Scheduling.vb

行號  27 -  Public Enum EventName

  'do not add APPLICATION_END

  'it will not reliably complete

  APPLICATION_START

 End Enum

行號  33 -  Public Enum ScheduleSource

  STARTED_FROM_EVENT

  STARTED_FROM_TIMER

 End Enum

行號  38 -  Public Enum ScheduleStatus

  WAITING_FOR_OPEN_THREAD

  RUNNING_EVENT_SCHEDULE

  RUNNING_TIMER_SCHEDULE

  SHUTTING_DOWN

  STOPPED

 End Enum

 3個。

位置12: J:\dnn309\Components\ResourceInstaller\PaFile.vb

行號  27 -  Public Enum PaFileType

  Dll

  Sql

  Ascx

  Dnn

  DataProvider

  Other

 End Enum 'PaFileType

行號  36 -  Public Enum PaTextEncoding

  UTF7

  UTF8

  UTF16BigEndian

  UTF16LittleEndian

  Unknown

 End Enum

找到 2 處。

位置13: J:\dnn309\Components\ResourceInstaller\PaLogEntry.vb

行號  26 -  Public Enum PaLogType

  Info

  Warning

  Failure

  StartJob

  EndJob

 End Enum 'PaLogType

位置14: J:\dnn309\Components\Security\Security.vb

行號  38 -  Public Enum SecurityAccessLevel As Integer

  ControlPanel = -3

  SkinObject = -2

  Anonymous = -1

  View = 0

  Edit = 1

  Admin = 2

  Host = 3

 End Enum

位置15: J:\dnn309\Components\Shared\DataCache.vb

行號  29 -  Public Enum CoreCacheType

  Host = 1

  Portal = 2

  Tab = 3

 End Enum

位置16: J:\dnn309\Components\Shared\Globals.vb

行號  58 -         Public Enum PerformanceSettings

            'The values of the enum are used to calculate

            'cache settings throughout the portal.

            'Calculating based on these numbers keeps

            'the scaling linear for all caching.

            NoCaching = 0

            LightCaching = 1

            ModerateCaching = 3

            HeavyCaching = 6

        End Enum

位置17: J:\dnn309\Components\Skins\SkinFileProcessor.vb

行號  32 -  Public Enum SkinParser

  Localized

  Portable

 End Enum

位置18: J:\dnn309\Components\Skins\SkinInfo.vb

行號  31 -  Public Enum SkinType

  Portal = 0

  Admin = 1

 End Enum

位置19: J:\dnn309\Components\Tabs\TabInfo.vb

行號  29 -     Public Enum TabType

        File

        Normal

        Tab

        Url

    End Enum

位置20: J:\dnn309\Components\Users\UserInfo.vb

行號 156 -     Public Enum UserRegistrationStatus

        AddUser = 0

        AddUserRoles = -1

        UsernameAlreadyExists = -2

        UserAlreadyRegistered = -3

        UnexpectedError = -4

    End Enum

位置21: J:\dnn309\Components\Vendors\BannerTypeInfo.vb

行號  27 -  Public Enum BannerType As Integer

  Banner = 1

  MicroButton = 2

  Button = 3

  Block = 4

  Skyscraper = 5

        Text = 6

        Script = 7

    End Enum

位置22: J:\dnn309\Components\Wizards\Wizard.vb

行號  33 -  Public Enum WizardCommand

  PreviousPage

  NextPage

  Finish

  Cancel

 End Enum

位置23: J:\dnn309\Components\Wizards\WizardPage.vb

行號  24 -  Public Enum WizardPageType

  Content

  Success

  Failure

 End Enum

位置24: J:\dnn309\controls\DotNetNuke.WebControls\TreeNode.vb

行號  37 -  Public Enum eNodeType

  designTimeNode

  runTimeNode

 End Enum

行號  42 -     Public Enum eClickAction

        PostBack

        Expand

        None

    End Enum

找到 2 處。

位置25: J:\dnn309\controls\DotNetNuke.WebUtility\ClientAPI.vb

行號  76 -   Public Enum ClientNamespaceReferences As Integer

   

   dnn

   dnn_dom

   dnn_dom_positioning

   dnn_xml

  End Enum

行號  86 -   Public Enum ClientFunctionality As Integer

   DHTML = CInt(2 ^ 0)

   XML = CInt(2 ^ 1)

   XSLT = CInt(2 ^ 2)

   Positioning = CInt(2 ^ 3)   'what

we would call adaquate positioning support

  End Enum

找到 2 處。

位置26: J:\dnn309\Providers\DataProviders\SqlDataProvider\SQLHelper\SQLHelper.vb

Private Enum SqlConnectionOwnership

        ' Connection is owned and managed by SqlHelper

        Internal

        ' Connection is owned and managed by the caller

        [External]

    End Enum ' SqlConnectionOwnership

位置27: J:\dnn309\admin\Files\FileManager.ascx.vb

行號 126 -         Private Enum eImageType

            Folder = 0

            Page = 1

        End Enum

位置28: J:\dnn309\admin\Files\WebUpload.ascx.vb

行號  28 -  Public Enum UploadType

  File

  Container

  Skin

  [Module]

  LanguagePack

 End Enum

位置29: J:\dnn309\admin\Lists\ListEditor.ascx.vb

行號 790 -         Private Enum eImageType

            Folder = 0

            Page = 1

        End Enum

位置30: J:\dnn309\admin\Localization\LanguageEditor.ascx.vb

行號 795 -         Private Enum eImageType

            Folder = 0

            Page = 1

        End Enum

位置31: J:\dnn309\admin\Portal\SiteWizard.ascx.vb

行號  46 -         Public Enum ContainerType

            Host = 0

            Portal = 1

            Folder = 2

            All = 3

        End Enum

位置32: J:\dnn309\admin\Skins\ModuleMessage.ascx.vb

行號  37 -         Public Enum ModuleMessageType

            GreenSuccess

            YellowWarning

            RedError

        End Enum

位置: J:\dnn309\admin\Skins\TreeViewMenu.ascx.vb

行號  54 -        Private Enum eImageType

            FolderClosed = 0

            FolderOpen = 1

            Page = 2

            GotoParent = 3

        End Enum

搜尋了 508 個檔案,找到 44 處在 33 個檔案中。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.