Files
SISBusiness/SISBusiness.Web.Subcontractor/bin/DevExpress.Persistent.BaseImpl.v17.2.xml
2018-03-27 17:27:28 +02:00

817 lines
30 KiB
XML

<?xml version="1.0"?>
<doc>
<assembly>
<name>DevExpress.Persistent.BaseImpl.v17.2</name>
</assembly>
<members>
<member name="T:DevExpress.Persistent.BaseImpl.BaseObject">
<summary>
<para>Represents one of the base persistent classes from which business classes can be inherited.
</para>
</summary>
</member>
<member name="M:DevExpress.Persistent.BaseImpl.BaseObject.#ctor(DevExpress.Xpo.Session)">
<summary>
<para>Used to initialize a new instance of a BaseObject descendant, in a particular Session.
</para>
</summary>
<param name="session">
A <b>DevExpress.Xpo.Session</b> object which represents a persistent object's cache where the business object will be instantiated.
</param>
</member>
<member name="M:DevExpress.Persistent.BaseImpl.BaseObject.#ctor">
<summary>
<para>Creates a new instance of the BaseObject class.
</para>
</summary>
</member>
<member name="M:DevExpress.Persistent.BaseImpl.BaseObject.AfterConstruction">
<summary>
<para>Invoked when the current object is about to be initialized after its creation.
</para>
</summary>
</member>
<member name="F:DevExpress.Persistent.BaseImpl.BaseObject.IsXpoProfiling">
<summary>
<para>Set this field to <b>true</b> before profiling the application via XPO Profiler.
</para>
</summary>
<returns> </returns>
</member>
<member name="P:DevExpress.Persistent.BaseImpl.BaseObject.Oid">
<summary>
<para>Specifies the persistent object's identifier.
</para>
</summary>
<value>A globally unique identifier which represents the persistent object's identifier.
</value>
</member>
<member name="P:DevExpress.Persistent.BaseImpl.BaseObject.OidInitializationMode">
<summary>
<para>Specifies when a new GUID value is assigned to the <see cref="P:DevExpress.Persistent.BaseImpl.BaseObject.Oid"/> property.
</para>
</summary>
<value>An <see cref="T:DevExpress.Persistent.BaseImpl.OidInitializationMode"/> enumeration value specifying when a new GUID value is assigned to the Oid property.
</value>
</member>
<member name="M:DevExpress.Persistent.BaseImpl.BaseObject.ToString">
<summary>
<para>Returns a human-readable string that represents the current business object.
</para>
</summary>
<returns>A string representing the current business object.
</returns>
</member>
<member name="T:DevExpress.Persistent.BaseImpl.DashboardData">
<summary>
<para>An XPO persistent class used by the Dashboards Module to store dashboards in the application database.
</para>
</summary>
</member>
<member name="M:DevExpress.Persistent.BaseImpl.DashboardData.#ctor(DevExpress.Xpo.Session)">
<summary>
<para>Used to initialize a new instance of a DashboardData descendant in a specific Session.
</para>
</summary>
<param name="session">
A <see cref="T:DevExpress.Xpo.Session"/> object which represents a persistent object's cache where the business object will be instantiated.
</param>
</member>
<member name="P:DevExpress.Persistent.BaseImpl.DashboardData.Content">
<summary>
<para>Specifies the dashboard configuration defined in the Dashboard Designer.
</para>
</summary>
<value>An XML-formatted string which specifies the dashboard configuration.
</value>
</member>
<member name="P:DevExpress.Persistent.BaseImpl.DashboardData.SynchronizeTitle">
<summary>
<para>Specifies if it is required to update the <see cref="P:DevExpress.Persistent.Base.IDashboardData.Title"/> value with the dashboard title from the dashboard configuration (stored in the <see cref="P:DevExpress.Persistent.Base.IDashboardData.Content"/> property).
</para>
</summary>
<value><b>true</b>, if it is required to update the dashboard title; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.Persistent.BaseImpl.DashboardData.Title">
<summary>
<para>Specifies the dashboard title.
</para>
</summary>
<value>A string specifying the dashboard title.
</value>
</member>
<member name="T:DevExpress.Persistent.BaseImpl.PermissionPolicy.PermissionPolicyUser">
<summary>
<para>An XAF user who has a list of associated security roles that support the <b>Allow/Deny</b> Permission Policies.
</para>
</summary>
</member>
<member name="M:DevExpress.Persistent.BaseImpl.PermissionPolicy.PermissionPolicyUser.#ctor(DevExpress.Xpo.Session)">
<summary>
<para>Initializes a new instance of the PermissionPolicyUser class in a particular Session
</para>
</summary>
<param name="session">
A <b>DevExpress.Xpo.Session</b> object, which is a persistent objects cache where the role will be instantiated.
</param>
</member>
<member name="P:DevExpress.Persistent.BaseImpl.PermissionPolicy.PermissionPolicyUser.ChangePasswordOnFirstLogon">
<summary>
<para>Specifies whether the user must change his/her password the next time he/she logs on.
</para>
</summary>
<value><b>true</b>, if the user must change his/her password the next time he/she logs on; otherwise - <b>false</b>.
</value>
</member>
<member name="M:DevExpress.Persistent.BaseImpl.PermissionPolicy.PermissionPolicyUser.ComparePassword(System.String)">
<summary>
<para>Compares the current user's stored encrypted password with its plain-text representation.
</para>
</summary>
<param name="password">
A string which is the plain-text password for comparison.
</param>
<returns><b>true</b> if the passwords are identical, otherwise - <b>false</b>
</returns>
</member>
<member name="P:DevExpress.Persistent.BaseImpl.PermissionPolicy.PermissionPolicyUser.IsActive">
<summary>
<para>Specifies if a user is allowed to logon.
</para>
</summary>
<value><b>true</b> if a user is active; otherwise - <b>false</b>.
</value>
</member>
<member name="P:DevExpress.Persistent.BaseImpl.PermissionPolicy.PermissionPolicyUser.Roles">
<summary>
<para>A list of roles associated with the current user.
</para>
</summary>
<value>An <see cref="T:DevExpress.Xpo.XPCollection"/>&lt;<see cref="T:DevExpress.Persistent.BaseImpl.PermissionPolicy.PermissionPolicyRole"/>&gt; collection which is the list of roles associated with the current user.
</value>
</member>
<member name="M:DevExpress.Persistent.BaseImpl.PermissionPolicy.PermissionPolicyUser.SetPassword(System.String)">
<summary>
<para>Changes the user password.
</para>
</summary>
<param name="password">
A string which is a new password.
</param>
</member>
<member name="P:DevExpress.Persistent.BaseImpl.PermissionPolicy.PermissionPolicyUser.UserName">
<summary>
<para>Specifies the user's login name.
</para>
</summary>
<value>A string which is the user's login name.
</value>
</member>
<member name="T:DevExpress.Persistent.BaseImpl.PermissionPolicy.PermissionPolicyRoleBase">
<summary>
<para>The base class for a security role that supports the <b>Allow/Deny</b> Permission Policies.
</para>
</summary>
</member>
<member name="M:DevExpress.Persistent.BaseImpl.PermissionPolicy.PermissionPolicyRoleBase.#ctor(DevExpress.Xpo.Session)">
<summary>
<para>Initializes a new instance of the PermissionPolicyRoleBase class in a particular Session
</para>
</summary>
<param name="session">
A <b>DevExpress.Xpo.Session</b> object, which is a persistent objects cache where the role will be instantiated.
</param>
</member>
<member name="P:DevExpress.Persistent.BaseImpl.PermissionPolicy.PermissionPolicyRoleBase.CanEditModel">
<summary>
<para>Specifies whether users associated with the current role can use the Model Editor. A <b>DevExpress.Xpo.Session</b> object, which is a persistent objects cache where the user will be instantiated.
</para>
</summary>
<value><b>true</b>, if users associated with the current role can use the Model Editor; otherwise - <b>false</b>.
</value>
</member>
<member name="M:DevExpress.Persistent.BaseImpl.PermissionPolicy.PermissionPolicyRoleBase.CreateNavigationPermissionObject(System.String)">
<summary>
<para> </para>
</summary>
<param name="itemPath">
</param>
<returns> </returns>
</member>
<member name="M:DevExpress.Persistent.BaseImpl.PermissionPolicy.PermissionPolicyRoleBase.CreateTypePermissionObject(System.Type)">
<summary>
<para> </para>
</summary>
<param name="targetType">
</param>
<returns> </returns>
</member>
<member name="P:DevExpress.Persistent.BaseImpl.PermissionPolicy.PermissionPolicyRoleBase.IsAdministrative">
<summary>
<para>Specifies whether users associated with the current role are administrators.
</para>
</summary>
<value><b>true</b>, if users associated with the current role are administrators; otherwise - <b>false</b>.
</value>
</member>
<member name="P:DevExpress.Persistent.BaseImpl.PermissionPolicy.PermissionPolicyRoleBase.Name">
<summary>
<para>Specifies the name of the security role.
</para>
</summary>
<value>A string which is the name of the security role.
</value>
</member>
<member name="P:DevExpress.Persistent.BaseImpl.PermissionPolicy.PermissionPolicyRoleBase.NavigationPermissions">
<summary>
<para>Gets the list of objects which contain navigation permissions associated with the current PermissionPolicyRoleBase.
</para>
</summary>
<value>An IList&lt;<b>PermissionPolicyNavigationPermissionObject</b>&lt;, which is the list of the <b>PermissionPolicyNavigationPermissionObject</b> objects which are navigation permissions associated with the current role.
</value>
</member>
<member name="P:DevExpress.Persistent.BaseImpl.PermissionPolicy.PermissionPolicyRoleBase.PermissionPolicy">
<summary>
<para>Specifies the Security System behavior when there are no explicitly specified permissions for a specific type, object or member.
</para>
</summary>
<value>A <see cref="SecurityPermissionPolicy"/> enumeration value specifying the behavior when there are no explicitly specified permissions.
</value>
</member>
<member name="P:DevExpress.Persistent.BaseImpl.PermissionPolicy.PermissionPolicyRoleBase.TypePermissions">
<summary>
<para>Gets the list of objects which contain type permissions associated with the current PermissionPolicyRoleBase.
</para>
</summary>
<value>An IList&lt;<b>PermissionPolicyTypePermissionObject</b>&lt;, which is the list of the <b>PermissionPolicyTypePermissionObject</b> objects which are type permissions associated with the current role.
</value>
</member>
<member name="T:DevExpress.Persistent.BaseImpl.PermissionPolicy.PermissionPolicyRole">
<summary>
<para>A security role that supports the <b>Allow/Deny</b> Permission Policies.
</para>
</summary>
</member>
<member name="M:DevExpress.Persistent.BaseImpl.PermissionPolicy.PermissionPolicyRole.#ctor(DevExpress.Xpo.Session)">
<summary>
<para>Initializes a new instance of the PermissionPolicyRole class in a particular Session
</para>
</summary>
<param name="session">
A <b>DevExpress.Xpo.Session</b> object, which is a persistent objects cache where the role will be instantiated.
</param>
</member>
<member name="M:DevExpress.Persistent.BaseImpl.PermissionPolicy.PermissionPolicyRole.AddUser(System.Object)">
<summary>
<para> </para>
</summary>
<param name="user">
</param>
<returns> </returns>
</member>
<member name="P:DevExpress.Persistent.BaseImpl.PermissionPolicy.PermissionPolicyRole.Users">
<summary>
<para>A list of users associated with the current role.
</para>
</summary>
<value>An <see cref="T:DevExpress.Xpo.XPCollection"/>&lt;<see cref="T:DevExpress.Persistent.BaseImpl.PermissionPolicy.PermissionPolicyUser"/>&gt; collection which is the list of users associated with the current role.
</value>
</member>
<member name="T:DevExpress.Persistent.BaseImpl.ModelDifferenceAspect">
<summary>
<para>The XPO persistent class used to store model difference aspects in the database.
</para>
</summary>
</member>
<member name="M:DevExpress.Persistent.BaseImpl.ModelDifferenceAspect.#ctor(DevExpress.Xpo.Session)">
<summary>
<para>Initializes a new instance of the ModelDifferenceAspect class.
</para>
</summary>
<param name="session">
A <b>DevExpress.Xpo.Session</b> object which represents a persistent object's cache where the business object will be instantiated.
</param>
</member>
<member name="P:DevExpress.Persistent.BaseImpl.ModelDifferenceAspect.DisplayName">
<summary>
<para>Gets the <a href="http://msdn.microsoft.com/en-us/library/system.globalization.cultureinfo(v=vs.85).aspx">language code</a> of the current ModelDifferenceAspect object, or the "(Default language)" text.
</para>
</summary>
<value>A string which specifies the name of the current model difference aspect, or "(Default language)" if the aspect name is empty (if the current aspect specifies culture-neutral model differences).
</value>
</member>
<member name="P:DevExpress.Persistent.BaseImpl.ModelDifferenceAspect.Name">
<summary>
<para>Specifies the <a href="http://msdn.microsoft.com/en-us/library/system.globalization.cultureinfo(v=vs.85).aspx">language code</a> of the current ModelDifferenceAspect object. The empty value means that the current aspect specifies culture-neutral model differences.
</para>
</summary>
<value>A string which specifies the name of the current model difference aspect.
</value>
</member>
<member name="P:DevExpress.Persistent.BaseImpl.ModelDifferenceAspect.Owner">
<summary>
<para>Specifies the <see cref="T:DevExpress.Persistent.BaseImpl.ModelDifference"/> object the current ModelDifferenceAspect belongs to.
</para>
</summary>
<value>A the <see cref="T:DevExpress.Persistent.BaseImpl.ModelDifference"/> object specifying the model differences object that owns the current aspect.
</value>
</member>
<member name="P:DevExpress.Persistent.BaseImpl.ModelDifferenceAspect.Xml">
<summary>
<para>Specifies the XML code of the current ModelDifferenceAspect object.
</para>
</summary>
<value>A string which is the XML code of the current model difference aspect.
</value>
</member>
<member name="T:DevExpress.Persistent.BaseImpl.ModelDifference">
<summary>
<para>The XPO persistent class used to store model differences in the database.
</para>
</summary>
</member>
<member name="M:DevExpress.Persistent.BaseImpl.ModelDifference.#ctor(DevExpress.Xpo.Session)">
<summary>
<para>Initializes a new instance of the ModelDifference class.
</para>
</summary>
<param name="session">
A <b>DevExpress.Xpo.Session</b> object which represents a persistent object's cache where the business object will be instantiated.
</param>
</member>
<member name="P:DevExpress.Persistent.BaseImpl.ModelDifference.Aspects">
<summary>
<para>Gets a collection of model difference aspects associated with the ModelDifference object.
</para>
</summary>
<value>An <see cref="T:DevExpress.Xpo.XPCollection"/>&lt;<see cref="T:DevExpress.ExpressApp.IModelDifferenceAspect"/>&gt; list of model difference aspects.
</value>
</member>
<member name="P:DevExpress.Persistent.BaseImpl.ModelDifference.ContextId">
<summary>
<para>Specifies the context identifier of the current ModelDifference object that allows distinguishing model differences designed for different applications using the same database.
</para>
</summary>
<value>A string which is the context identifier.
</value>
</member>
<member name="P:DevExpress.Persistent.BaseImpl.ModelDifference.UserId">
<summary>
<para>Specifies the identifier of a user who owns the current ModelDifference object.
</para>
</summary>
<value>A string which is the identifier of a user who owns the current model differences.
</value>
</member>
<member name="P:DevExpress.Persistent.BaseImpl.ModelDifference.UserName">
<summary>
<para>Gets the name of a user who owns the current ModelDifference object.
</para>
</summary>
<value>A string which is the name of a user who owns the current model differences.
</value>
</member>
<member name="P:DevExpress.Persistent.BaseImpl.ModelDifference.Version">
<summary>
<para>Specifies the version of the current ModelDifference object.
</para>
</summary>
<value>An integer value which is the version number of the model differences object.
</value>
</member>
<member name="T:DevExpress.Persistent.BaseImpl.MediaDataObject">
<summary>
<para>The XPO persistent class used to store media data in the database.
</para>
</summary>
</member>
<member name="M:DevExpress.Persistent.BaseImpl.MediaDataObject.#ctor(DevExpress.Xpo.Session)">
<summary>
<para>Used to initialize a new instance of a MediaDataObject descendant in a specific Session.
</para>
</summary>
<param name="session">
A <b>DevExpress.Xpo.Session</b> object which represents a persistent object's cache where the business object will be instantiated.
</param>
</member>
<member name="P:DevExpress.Persistent.BaseImpl.MediaDataObject.MediaData">
<summary>
<para>Specifies a byte array with media data that is loaded from a database on demand when required.
</para>
</summary>
<value>A byte array object that is loaded from a database on demand when required.
</value>
</member>
<member name="P:DevExpress.Persistent.BaseImpl.MediaDataObject.MediaDataKey">
<summary>
<para>Specifies a key value associated with the <see cref="P:DevExpress.Persistent.BaseImpl.MediaDataObject.MediaData"/> byte array.
</para>
</summary>
<value>A string which is a key value.
</value>
</member>
<member name="T:DevExpress.Persistent.BaseImpl.ReportDataV2">
<summary>
<para>The persistent class used to store reports in the Reports V2 Module. Inherits <see cref="T:DevExpress.Persistent.BaseImpl.BaseObject"/> and thus has the <a href="http://msdn.microsoft.com/en-us/library/system.guid.aspx">Guid</a>-type identifier.
</para>
</summary>
</member>
<member name="M:DevExpress.Persistent.BaseImpl.ReportDataV2.#ctor(DevExpress.Xpo.Session,System.Type)">
<summary>
<para>For internal use.
</para>
</summary>
<param name="session">
</param>
<param name="dataType">
</param>
</member>
<member name="M:DevExpress.Persistent.BaseImpl.ReportDataV2.#ctor(DevExpress.Xpo.Session)">
<summary>
<para>Used to initialize a new instance of a ReportDataV2 descendant in a specific Session.
</para>
</summary>
<param name="session">
A <see cref="T:DevExpress.Xpo.Session"/> object which represents a persistent object's cache where the business object will be instantiated.
</param>
</member>
<member name="P:DevExpress.Persistent.BaseImpl.ReportDataV2.Content">
<summary>
<para>Specifies the report content.
</para>
</summary>
<value>A byte array that is the report content.
</value>
</member>
<member name="P:DevExpress.Persistent.BaseImpl.ReportDataV2.DataTypeCaption">
<summary>
<para>Gets the type caption of persistent objects that are displayed within the report.
</para>
</summary>
<value>A string that specifies the type caption of persistent objects that are displayed within the report.
</value>
</member>
<member name="P:DevExpress.Persistent.BaseImpl.ReportDataV2.DataTypeName">
<summary>
<para>Gets the name of the report's data type.
</para>
</summary>
<value>A string which is the name of the report's data type.
</value>
</member>
<member name="P:DevExpress.Persistent.BaseImpl.ReportDataV2.DisplayName">
<summary>
<para> Specifies the report's display name.
</para>
</summary>
<value>A string which is the report's display name.
</value>
</member>
<member name="P:DevExpress.Persistent.BaseImpl.ReportDataV2.IsInplaceReport">
<summary>
<para>Specifies whether or not the report is inplace.
</para>
</summary>
<value><b>true</b>, if the report is inplace; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.Persistent.BaseImpl.ReportDataV2.IsPredefined">
<summary>
<para>Gets a boolean value that indicates whether or not the report is predefined.
</para>
</summary>
<value><b>true</b>, if a report is predefined in code; <b>false</b>, if a report is created at runtime.
</value>
</member>
<member name="P:DevExpress.Persistent.BaseImpl.ReportDataV2.ParametersObjectType">
<summary>
<para>Specifies the type of the reports parameter object.
</para>
</summary>
<value>A <b>System.Type</b> of an object that specifies report parameters (typically, the <see cref="T:DevExpress.ExpressApp.ReportsV2.ReportParametersObjectBase"/> descendant).
</value>
</member>
<member name="P:DevExpress.Persistent.BaseImpl.ReportDataV2.ParametersObjectTypeName">
<summary>
<para>Specifies the name of the reports parameter object type.
</para>
</summary>
<value>A string which is the name of the reports parameter object type.
</value>
</member>
<member name="P:DevExpress.Persistent.BaseImpl.ReportDataV2.PredefinedReportType">
<summary>
<para>Specifies the type of the predefined report.
</para>
</summary>
<value>A <b>System.Type</b> object that specifies the type of the predefined report.
</value>
</member>
<member name="T:DevExpress.Persistent.BaseImpl.XtraReportData">
<summary>
<para>The persistent class used to store reports in the Reports V2 Module. Inherits <see cref="T:DevExpress.Xpo.XPObject"/> and thus has the integer-type identifier.
</para>
</summary>
</member>
<member name="M:DevExpress.Persistent.BaseImpl.XtraReportData.#ctor(DevExpress.Xpo.Session,System.Type)">
<summary>
<para>Used to initialize a new instance of a XtraReportData descendant intended to persist a report that targets a specified data type in a specific Session.
</para>
</summary>
<param name="session">
A <b>DevExpress.Xpo.Session</b> object which represents a persistent object's cache where the business object will be instantiated.
</param>
<param name="dataType">
A <see cref="T:System.Type"/> object specifying the data type that the report data source is bound to.
</param>
</member>
<member name="M:DevExpress.Persistent.BaseImpl.XtraReportData.#ctor(DevExpress.Xpo.Session)">
<summary>
<para>Used to initialize a new instance of a XtraReportData descendant in a specific Session.
</para>
</summary>
<param name="session">
A <b>DevExpress.Xpo.Session</b> object which represents a persistent object's cache where the business object will be instantiated.
</param>
</member>
<member name="P:DevExpress.Persistent.BaseImpl.XtraReportData.Content">
<summary>
<para>Specifies the report content.
</para>
</summary>
<value>A byte array that is the report content.
</value>
</member>
<member name="P:DevExpress.Persistent.BaseImpl.XtraReportData.DataTypeCaption">
<summary>
<para>Gets the type caption of persistent objects that are displayed within the report.
</para>
</summary>
<value>A string that specifies the type caption of persistent objects that are displayed within the report.
</value>
</member>
<member name="P:DevExpress.Persistent.BaseImpl.XtraReportData.DataTypeName">
<summary>
<para>Gets the name of the report's data type.
</para>
</summary>
<value>A string which is the name of the report's data type.
</value>
</member>
<member name="P:DevExpress.Persistent.BaseImpl.XtraReportData.DisplayName">
<summary>
<para> Specifies the report's display name.
</para>
</summary>
<value>A string which is the report's display name.
</value>
</member>
<member name="P:DevExpress.Persistent.BaseImpl.XtraReportData.IsInplaceReport">
<summary>
<para>Specifies whether or not the report is inplace.
</para>
</summary>
<value><b>true</b>, if the report is inplace; otherwise, <b>false</b>.
</value>
</member>
<member name="P:DevExpress.Persistent.BaseImpl.XtraReportData.IsPredefined">
<summary>
<para>Gets a boolean value that indicates whether or not the report is predefined.
</para>
</summary>
<value><b>true</b>, if a report is predefined in code; <b>false</b>, if a report is created at runtime.
</value>
</member>
<member name="P:DevExpress.Persistent.BaseImpl.XtraReportData.ParametersObjectType">
<summary>
<para>Specifies the type of the reports parameter object.
</para>
</summary>
<value>A <b>System.Type</b> of an object that specifies report parameters (typically, the <see cref="T:DevExpress.ExpressApp.ReportsV2.ReportParametersObjectBase"/> descendant).
</value>
</member>
<member name="P:DevExpress.Persistent.BaseImpl.XtraReportData.ParametersObjectTypeName">
<summary>
<para>Specifies the name of the reports parameter object type.
</para>
</summary>
<value>A string which is the name of the reports parameter object type.
</value>
</member>
<member name="P:DevExpress.Persistent.BaseImpl.XtraReportData.PredefinedReportType">
<summary>
<para>Specifies the type of the predefined report.
</para>
</summary>
<value>A <b>System.Type</b> object that specifies the type of the predefined report.
</value>
</member>
<member name="T:DevExpress.Persistent.BaseImpl.OidInitializationMode">
<summary>
<para>Contains values specifying when a new GUID value is assigned to the <see cref="P:DevExpress.Persistent.BaseImpl.BaseObject.Oid"/> property.
</para>
</summary>
</member>
<member name="F:DevExpress.Persistent.BaseImpl.OidInitializationMode.AfterConstruction">
<summary>
<para>Specifies that a new GUID value is assigned to the <see cref="P:DevExpress.Persistent.BaseImpl.BaseObject.Oid"/> property in the <b>AfterConstruction</b> method override.
</para>
</summary>
</member>
<member name="F:DevExpress.Persistent.BaseImpl.OidInitializationMode.OnSaving">
<summary>
<para>Specifies that a new GUID value is assigned to the <see cref="P:DevExpress.Persistent.BaseImpl.BaseObject.Oid"/> property in the <b>OnSaving</b> method override.
</para>
</summary>
</member>
</members>
</doc>