?? microsoft.windowsmobile.pocketoutlook.xml
字號:
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.WindowsMobile.PocketOutlook</name>
</assembly>
<members>
<member name="T:Microsoft.WindowsMobile.PocketOutlook.Account">
<summary>
Defines the account ID, counter, and parent message store for all messaging accounts. This is the base class for EmailAccount and SmsAccount.
<remarks>
Normally you would not work with this class directly. You would use one of the derived classes instead, which provide access to the folders and messages they contain.
A message store serves as a local archive for storing messages on Windows Mobile devices. One message store is present for each messaging account, and each messaging account is associated with one message transport. For example, you might use a Pocket PC to service three POP3 e-mail accounts. In this scenario, you might have four message stores: one for Outlook e-mail transferred through ActiveSync, two for Outlook e-mail transferred via POP3, and one for text messages transferred via SMS.
</remarks>
</summary>
</member>
<member name="M:Microsoft.WindowsMobile.PocketOutlook.Account.#ctor(System.IntPtr,Microsoft.WindowsMobile.PocketOutlook.ItemId,Microsoft.WindowsMobile.PocketOutlook.MailStore)">
<summary>
Initializes a new instance of the Account class with the specified account pointer, account ID, and mail store.
</summary>
</member>
<member name="M:Microsoft.WindowsMobile.PocketOutlook.Account.Finalize">
<summary>
The Account class destructor. Disposes an Account by calling this.Dispose(false).
This method overrides System.Object.Finalize. Application code should not call this method; an object's Finalize method is automatically invoked during garbage collection, unless finalization by the garbage collector has been disabled by a call to the GC.SuppressFinalize method.
For more information, see cpconFinalizeMethodscDestructors, cpconCleaningUpUnmanagedResources, and cpconOverridingFinalizeMethod.
</summary>
</member>
<member name="M:Microsoft.WindowsMobile.PocketOutlook.Account.Dispose">
<summary>
Disposes an Account. Disables finalization by the garbage collector by a calling GC.SuppressFinalize(this).
</summary>
</member>
<member name="M:Microsoft.WindowsMobile.PocketOutlook.Account.Dispose(System.Boolean)">
<summary>
Invalidates the Account, and releases its COM pointer.
</summary>
<remarks>
The parentStore disposes of itself automatically.
Throws an exception if the Account has already been disposed of.
</remarks>
<param name="disposing">
Must be TRUE if called from the Dispose() method.
</param>
</member>
<member name="P:Microsoft.WindowsMobile.PocketOutlook.Account.IsValid">
<summary>
Gets or sets a value indicating whether the current Account can be used. FALSE if the Account has beed deleted or is no longer valid.
</summary>
</member>
<member name="P:Microsoft.WindowsMobile.PocketOutlook.Account.Disposed">
<summary>
Gets or sets a value indicating whether this Account has been disposed of.
</summary>
</member>
<member name="P:Microsoft.WindowsMobile.PocketOutlook.Account.Name">
<summary>
Gets the name of the Account.
</summary>
</member>
<member name="P:Microsoft.WindowsMobile.PocketOutlook.Account.Id">
<summary>
Gets the Account ID.
</summary>
</member>
<member name="T:Microsoft.WindowsMobile.PocketOutlook.MessageInterception.AccountField">
<summary>
Possible account fields that can be used with conditions
</summary>
</member>
<member name="F:Microsoft.WindowsMobile.PocketOutlook.MessageInterception.AccountField.DisplayName">
<summary>
The display name of the account
</summary>
</member>
<member name="F:Microsoft.WindowsMobile.PocketOutlook.MessageInterception.AccountField.TransportName">
<summary>
The transport name of the account
</summary>
</member>
<member name="T:Microsoft.WindowsMobile.PocketOutlook.MessageInterception.AccountCondition">
<summary>
Condition based on the type of the account the message belongs to
</summary>
</member>
<member name="T:Microsoft.WindowsMobile.PocketOutlook.MessageInterception.MessagingCondition">
<summary>
Defines the comparison value and comparison type used for the filter criteria in message interception.
</summary>
</member>
<member name="M:Microsoft.WindowsMobile.PocketOutlook.MessageInterception.MessagingCondition.#ctor">
<summary>
Initializes a new instance of the <b>MessagingCondition</b> class. The default constructor.
</summary>
</member>
<member name="M:Microsoft.WindowsMobile.PocketOutlook.MessageInterception.MessagingCondition.#ctor(Microsoft.WindowsMobile.PocketOutlook.MessageInterception.MessagePropertyComparisonType,System.Boolean,System.String)">
<summary>
Initializes a new instance of the <b>MessagingCondition</b> class; using a comparison string, the comparison type, and a value indicating whether the match is case sensitive.
</summary>
<param name="comparisonType">The matching operation to use.</param>
<param name="caseSensitive">Whether the match is case sensitive.</param>
<param name="comparisonValue">The comparison string to match.</param>
</member>
<member name="M:Microsoft.WindowsMobile.PocketOutlook.MessageInterception.MessagingCondition.OnChange">
<summary>
This method is required in order to let derived classes call OnChangeHandler.
</summary>
</member>
<member name="M:Microsoft.WindowsMobile.PocketOutlook.MessageInterception.MessagingCondition.Register(System.IntPtr)">
<summary>
This method does the actual registration for this object
</summary>
<param name="key">key to register under</param>
</member>
<member name="E:Microsoft.WindowsMobile.PocketOutlook.MessageInterception.MessagingCondition.OnChangeHandler">
<summary>
Raised when the Condition is changed.
</summary>
</member>
<member name="P:Microsoft.WindowsMobile.PocketOutlook.MessageInterception.MessagingCondition.ComparisonType">
<summary>
Gets and sets the message property comparison type.
</summary>
</member>
<member name="P:Microsoft.WindowsMobile.PocketOutlook.MessageInterception.MessagingCondition.CaseSensitive">
<summary>
Gets and sets a value indicating whether the comparison is case sensitive.
</summary>
</member>
<member name="P:Microsoft.WindowsMobile.PocketOutlook.MessageInterception.MessagingCondition.ComparisonValue">
<summary>
Gets and sets the message property filter criteria.
</summary>
</member>
<member name="M:Microsoft.WindowsMobile.PocketOutlook.MessageInterception.AccountCondition.#ctor">
<summary>
Default constructor.
Default Field is "DisplayName"
Defaults to case sensitive, "Equal" operation
</summary>
</member>
<member name="M:Microsoft.WindowsMobile.PocketOutlook.MessageInterception.AccountCondition.#ctor(Microsoft.WindowsMobile.PocketOutlook.MessageInterception.AccountField,System.String)">
<summary>
Constructs an AccountCondition used to define a condition operation on Account type.
This constructor defines a "Contains" **for consistency**, case sensitive condition
</summary>
<param name="field">Field to apply the comparison to</param>
<param name="match">string to match in account type</param>
</member>
<member name="M:Microsoft.WindowsMobile.PocketOutlook.MessageInterception.AccountCondition.#ctor(Microsoft.WindowsMobile.PocketOutlook.MessageInterception.AccountField,Microsoft.WindowsMobile.PocketOutlook.MessageInterception.MessagePropertyComparisonType,System.String)">
<summary>
Constructs an AccountCondition used to define a condition operation on Account type.
</summary>
<param name="field">Field to apply the comparison to</param>
<param name="comparisonType">Type of match operation to use</param>
<param name="match">string to match in account type</param>
</member>
<member name="M:Microsoft.WindowsMobile.PocketOutlook.MessageInterception.AccountCondition.#ctor(Microsoft.WindowsMobile.PocketOutlook.MessageInterception.AccountField,Microsoft.WindowsMobile.PocketOutlook.MessageInterception.MessagePropertyComparisonType,System.String,System.Boolean)">
<summary>
Constructs an AccountCondition used to define a condition operation on Account type.
</summary>
<param name="field">Field to apply the comparison to</param>
<param name="comparisonType">Type of match operation to use</param>
<param name="match">string to match in account type</param>
<param name="caseSensitive">case sensitive or not</param>
</member>
<member name="P:Microsoft.WindowsMobile.PocketOutlook.MessageInterception.AccountCondition.Field">
<summary>
Account Field to apply the condition on.
</summary>
</member>
<member name="T:Microsoft.WindowsMobile.PocketOutlook.Sensitivity">
<summary>
Specifies the sensitivity level assigned to Appointment and Task items. The default value is Normal.
</summary>
</member>
<member name="F:Microsoft.WindowsMobile.PocketOutlook.Sensitivity.Normal">
<summary>
The normal sensitivity level.
</summary>
</member>
<member name="F:Microsoft.WindowsMobile.PocketOutlook.Sensitivity.Personal">
<summary>
The personal sensitivity level.
</summary>
</member>
<member name="F:Microsoft.WindowsMobile.PocketOutlook.Sensitivity.Private">
<summary>
The private sensitivity level.
</summary>
</member>
<member name="F:Microsoft.WindowsMobile.PocketOutlook.Sensitivity.Confidential">
<summary>
The confidential sensitivity level.
</summary>
</member>
<member name="T:Microsoft.WindowsMobile.PocketOutlook.BusyStatus">
<summary>
Specifies a Contact's availability in the period of time spanned by an Appointment or Meeting. The default value is Busy.
</summary>
</member>
<member name="F:Microsoft.WindowsMobile.PocketOutlook.BusyStatus.Free">
<summary>
The time-slot remains available for additonal scheduling requests. The Appointment will not conflict with another one that is scheduled for the same time-slot.
</summary>
</member>
<member name="F:Microsoft.WindowsMobile.PocketOutlook.BusyStatus.Tentative">
<summary>
The time-slot remains available for additonal scheduling requests, but there is a chance that it will become unavailable (change to Busy). The Appointment will not conflict with another one that is scheduled for the same time-slot.
</summary>
</member>
<member name="F:Microsoft.WindowsMobile.PocketOutlook.BusyStatus.Busy">
<summary>
The Busy status shows as busy. The time-slot is reserved, and therefore is unavailable for additonal scheduling. The Appointment will conflict with any other Appointment that is scheduled for the same time-slot.
</summary>
</member>
<member name="F:Microsoft.WindowsMobile.PocketOutlook.BusyStatus.OutOfOffice">
<summary>
The time-slot is unavailable for any and all scheduling requests. This flag is used to indicate that a Contact will be unavailable for an extended period of time, and will not be accepting Meeting requests. The Appointment will conflict with another one that is scheduled for any time-slot that is spanned by this Appointment.
</summary>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -