This commit is contained in:
BIN
source/NotifyTray/bin/Debug/CSLA.Core.Bindablebase.dll
Normal file
BIN
source/NotifyTray/bin/Debug/CSLA.Core.Bindablebase.dll
Normal file
Binary file not shown.
BIN
source/NotifyTray/bin/Debug/CSLA.Core.Bindablebase.pdb
Normal file
BIN
source/NotifyTray/bin/Debug/CSLA.Core.Bindablebase.pdb
Normal file
Binary file not shown.
160
source/NotifyTray/bin/Debug/CSLA.Core.Bindablebase.xml
Normal file
160
source/NotifyTray/bin/Debug/CSLA.Core.Bindablebase.xml
Normal file
@@ -0,0 +1,160 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>CSLA.Core.Bindablebase</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:CSLA.Core.BindableCollectionBase">
|
||||
<summary>
|
||||
This is a base class that exposes an implementation
|
||||
of IBindableList that does nothing other than
|
||||
create a nonserialized version of the listchanged
|
||||
event.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:CSLA.Core.BindableCollectionBase.AllowNew">
|
||||
<summary>
|
||||
Set this to True to allow data binding to add new
|
||||
child objects to the collection.
|
||||
</summary>
|
||||
<remarks>
|
||||
If you set this to True, you must also override the OnAddNew
|
||||
method. You must also set AllowEdit to True.
|
||||
</remarks>
|
||||
</member>
|
||||
<member name="F:CSLA.Core.BindableCollectionBase.AllowEdit">
|
||||
<summary>
|
||||
Set this to True to allow data binding to do in-place
|
||||
editing of child objects in a grid control.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:CSLA.Core.BindableCollectionBase.AllowRemove">
|
||||
<summary>
|
||||
Set this to True to allow data binding to automatically
|
||||
remove child objects from the collection.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:CSLA.Core.BindableCollectionBase.AllowSort">
|
||||
<summary>
|
||||
Set this to True to allow this collection to be sorted.
|
||||
</summary>
|
||||
<remarks>
|
||||
<para>
|
||||
There is an overhead cost to enabling sorting. Specifically,
|
||||
the collection must contain an internal collection containing
|
||||
the original order of the items in the collection, so the order
|
||||
can be reset if the sort is removed.
|
||||
</para><para>
|
||||
This overhead is only incurred if AllowSort is set to True, and is
|
||||
only a major concern if you are using a remote DataPortal. The concern
|
||||
there is that this extra collection must also be serialized, thus
|
||||
increasing the overall amount of data sent across the wire.
|
||||
</para>
|
||||
</remarks>
|
||||
</member>
|
||||
<member name="F:CSLA.Core.BindableCollectionBase.AllowFind">
|
||||
<summary>
|
||||
Set this to True to allow this collection to be
|
||||
searched.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:CSLA.Core.BindableCollectionBase.OnListChanged(System.ComponentModel.ListChangedEventArgs)">
|
||||
<summary>
|
||||
Call this method to raise the ListChanged event.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:CSLA.Core.BindableCollectionBase.OnInsertComplete(System.Int32,System.Object)">
|
||||
<summary>
|
||||
Ensures that the OnListChanged event is raised when a
|
||||
new child is inserted.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:CSLA.Core.BindableCollectionBase.OnClearComplete">
|
||||
<summary>
|
||||
Ensures that the OnListChanged event is raised when the
|
||||
list is cleared.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:CSLA.Core.BindableCollectionBase.OnRemoveComplete(System.Int32,System.Object)">
|
||||
<summary>
|
||||
Ensures that the OnListChanged event is raised when an
|
||||
item is removed.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:CSLA.Core.BindableCollectionBase.OnSetComplete(System.Int32,System.Object,System.Object)">
|
||||
<summary>
|
||||
Ensures that the OnListChanged event is raised when an
|
||||
item is changed.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:CSLA.Core.BindableCollectionBase.OnAddNew">
|
||||
<summary>
|
||||
Override this method to allow data binding to automatically
|
||||
add new child objects to a collection.
|
||||
</summary>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:CSLA.Core.BindableCollectionBase.IBindingList_Find(System.ComponentModel.PropertyDescriptor,System.Object)">
|
||||
<summary>
|
||||
Override this method to implement search/find functionality
|
||||
for the collection.
|
||||
</summary>
|
||||
<param name="property">The property to search.</param>
|
||||
<param name="key">The value to searched for.</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:CSLA.Core.BindableCollectionBase.IBindingList_ApplySort(System.ComponentModel.PropertyDescriptor,System.ComponentModel.ListSortDirection)">
|
||||
<summary>
|
||||
Override this method to provide sorting functionality
|
||||
(if you implement sorting).
|
||||
</summary>
|
||||
<param name="property">The property on which to sort.</param>
|
||||
<param name="direction">The sort direction.</param>
|
||||
</member>
|
||||
<member name="M:CSLA.Core.BindableCollectionBase.IBindingList_RemoveSort">
|
||||
<summary>
|
||||
Override this method to remove any existing sort
|
||||
(if you implement sorting).
|
||||
</summary>
|
||||
</member>
|
||||
<member name="E:CSLA.Core.BindableCollectionBase.ListChanged">
|
||||
<summary>
|
||||
Declares a serialization-safe ListChanged event.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:CSLA.Core.BindableCollectionBase.IBindingList_IsSorted">
|
||||
<summary>
|
||||
Override this method to indicate whether your collection
|
||||
is currently sorted. This returns False by default.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:CSLA.Core.BindableCollectionBase.IBindingList_SortProperty">
|
||||
<summary>
|
||||
Override this method to return the property by which
|
||||
the collection is sorted (if you implement sorting).
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:CSLA.Core.BindableCollectionBase.IBindingList_SortDirection">
|
||||
<summary>
|
||||
Override this method to return the current sort direction
|
||||
(if you implement sorting).
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:CSLA.Core.BindableBase">
|
||||
<summary>
|
||||
This base class declares the IsDirtyChanged event
|
||||
to be NonSerialized so serialization will work.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:CSLA.Core.BindableBase.OnIsDirtyChanged">
|
||||
<summary>
|
||||
Call this method to raise the IsDirtyChanged event.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="E:CSLA.Core.BindableBase.IsDirtyChanged">
|
||||
<summary>
|
||||
Declares a serialization-safe IsDirtyChanged event.
|
||||
</summary>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
BIN
source/NotifyTray/bin/Debug/CSLA.Server.DataPortal.dll
Normal file
BIN
source/NotifyTray/bin/Debug/CSLA.Server.DataPortal.dll
Normal file
Binary file not shown.
BIN
source/NotifyTray/bin/Debug/CSLA.Server.DataPortal.pdb
Normal file
BIN
source/NotifyTray/bin/Debug/CSLA.Server.DataPortal.pdb
Normal file
Binary file not shown.
117
source/NotifyTray/bin/Debug/CSLA.Server.DataPortal.xml
Normal file
117
source/NotifyTray/bin/Debug/CSLA.Server.DataPortal.xml
Normal file
@@ -0,0 +1,117 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>
|
||||
CSLA.Server.DataPortal
|
||||
</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:CSLA.Server.DataPortal">
|
||||
<summary>
|
||||
Implements the server-side DataPortal as discussed
|
||||
in Chapter 5.
|
||||
</summary>
|
||||
</member><member name="F:CSLA.CriteriaBase.ObjectType">
|
||||
<summary>
|
||||
Type of the business object to be instantiated by
|
||||
the server-side DataPortal.
|
||||
</summary>
|
||||
</member><member name="M:CSLA.CriteriaBase.#ctor(System.Type)">
|
||||
<summary>
|
||||
Initializes CriteriaBase with the type of
|
||||
business object to be created by the DataPortal.
|
||||
</summary>
|
||||
</member><member name="T:CSLA.CriteriaBase">
|
||||
<summary>
|
||||
Base type from which Criteria classes can be
|
||||
derived in a business class.
|
||||
</summary>
|
||||
</member><member name="M:CSLA.Serialization.ISerializationNotification.Serializing">
|
||||
<summary>
|
||||
This method is called before an object is serialized.
|
||||
</summary>
|
||||
</member><member name="M:CSLA.Serialization.ISerializationNotification.Serialized">
|
||||
<summary>
|
||||
This method is called on the original instance of the
|
||||
object after it has been serialized.
|
||||
</summary>
|
||||
</member><member name="M:CSLA.Serialization.ISerializationNotification.Deserialized">
|
||||
<summary>
|
||||
This method is called on a newly deserialized object
|
||||
after deserialization is complete.
|
||||
</summary>
|
||||
</member><member name="T:CSLA.Serialization.ISerializationNotification">
|
||||
<summary>
|
||||
Objects can implement this interface if they wish to be
|
||||
notified of serialization events.
|
||||
</summary>
|
||||
<remarks>
|
||||
<para>
|
||||
Note that .NET serialization does NOT call these methods. Only
|
||||
code that checks for the ISerializationNotification interface
|
||||
when serializating and deserializing objects will invoke these
|
||||
methods.
|
||||
</para><para>
|
||||
The CSLA .NET framework's DataPortal processing and the Clone
|
||||
method in BusinessBase automatically make these calls.
|
||||
</para>
|
||||
</remarks>
|
||||
</member><member name="M:CSLA.Serialization.SerializationNotification.OnSerializing(System.Object)">
|
||||
<summary>
|
||||
Invokes the Serializing method on the target object
|
||||
if it has implemented ISerializationNotification.
|
||||
</summary>
|
||||
<param name="target">Object on which the method should be invoked.</param>
|
||||
</member><member name="M:CSLA.Serialization.SerializationNotification.OnSerialized(System.Object)">
|
||||
<summary>
|
||||
Invokes the Serialized method on the target object
|
||||
if it has implemented ISerializationNotification.
|
||||
</summary>
|
||||
<param name="target">Object on which the method should be invoked.</param>
|
||||
</member><member name="M:CSLA.Serialization.SerializationNotification.OnDeserialized(System.Object)">
|
||||
<summary>
|
||||
Invokes the Deserialized method on the target object
|
||||
if it has implemented ISerializationNotification.
|
||||
</summary>
|
||||
<param name="target">Object on which the method should be invoked.</param>
|
||||
</member><member name="T:CSLA.Serialization.SerializationNotification">
|
||||
<summary>
|
||||
Helper methods for invoking the ISerializatoinNotification
|
||||
methods.
|
||||
</summary>
|
||||
</member><member name="P:CSLA.Server.DataPortalContext.Principal">
|
||||
<summary>
|
||||
The current <see cref="T:CSLA.Security.BusinessPrincipal"/>
|
||||
if CSLA security is being used.
|
||||
</summary>
|
||||
</member><member name="P:CSLA.Server.DataPortalContext.IsRemotePortal">
|
||||
<summary>
|
||||
Returns True if the server-side DataPortal is running
|
||||
on a remote server via remoting.
|
||||
</summary>
|
||||
</member><member name="M:CSLA.Server.DataPortalContext.#ctor(System.Boolean)">
|
||||
<summary>
|
||||
Creates a new DataPortalContext object.
|
||||
</summary>
|
||||
<param name="isRemotePortal">Indicates whether the DataPortal is remote.</param>
|
||||
</member><member name="M:CSLA.Server.DataPortalContext.#ctor(System.Security.Principal.IPrincipal,System.Boolean)">
|
||||
<summary>
|
||||
Creates a new DataPortalContext object.
|
||||
</summary>
|
||||
<param name="principal">The current Principal object.</param>
|
||||
<param name="isRemotePortal">Indicates whether the DataPortal is remote.</param>
|
||||
</member><member name="T:CSLA.Server.DataPortalContext">
|
||||
<summary>
|
||||
Provides consistent context information between the client
|
||||
and server DataPortal objects.
|
||||
</summary>
|
||||
<remarks>
|
||||
The context includes the current
|
||||
<see cref="T:CSLA.Security.BusinessPrincipal"/>
|
||||
object if CSLA security is being used. It also includes a
|
||||
flag indicating whether the server-side DataPortal is running
|
||||
locally or remotely.
|
||||
</remarks>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
BIN
source/NotifyTray/bin/Debug/CSLA.Server.ServicedDataPortal.dll
Normal file
BIN
source/NotifyTray/bin/Debug/CSLA.Server.ServicedDataPortal.dll
Normal file
Binary file not shown.
BIN
source/NotifyTray/bin/Debug/CSLA.Server.ServicedDataPortal.pdb
Normal file
BIN
source/NotifyTray/bin/Debug/CSLA.Server.ServicedDataPortal.pdb
Normal file
Binary file not shown.
@@ -0,0 +1,36 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>
|
||||
CSLA.Server.ServicedDataPortal
|
||||
</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="M:CSLA.Server.ServicedDataPortal.DataPortal.Create(System.Object,System.Object)">
|
||||
<summary>
|
||||
Invokes the server-side DataPortal Create method within
|
||||
a COM+ transaction.
|
||||
</summary>
|
||||
</member><member name="M:CSLA.Server.ServicedDataPortal.DataPortal.Fetch(System.Object,System.Object)">
|
||||
<summary>
|
||||
Invokes the server-side DataPortal Fetch method within
|
||||
a COM+ transaction.
|
||||
</summary>
|
||||
</member><member name="M:CSLA.Server.ServicedDataPortal.DataPortal.Update(System.Object,System.Object)">
|
||||
<summary>
|
||||
Invokes the server-side DataPortal Update method within
|
||||
a COM+ transaction.
|
||||
</summary>
|
||||
</member><member name="M:CSLA.Server.ServicedDataPortal.DataPortal.Delete(System.Object,System.Object)">
|
||||
<summary>
|
||||
Invokes the server-side DataPortal Delete method within
|
||||
a COM+ transaction.
|
||||
</summary>
|
||||
</member><member name="T:CSLA.Server.ServicedDataPortal.DataPortal">
|
||||
<summary>
|
||||
Implements the transactional server-side DataPortal object as
|
||||
discussed in Chapter 5.
|
||||
</summary>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
BIN
source/NotifyTray/bin/Debug/CSLA.dll
Normal file
BIN
source/NotifyTray/bin/Debug/CSLA.dll
Normal file
Binary file not shown.
BIN
source/NotifyTray/bin/Debug/CSLA.pdb
Normal file
BIN
source/NotifyTray/bin/Debug/CSLA.pdb
Normal file
Binary file not shown.
2293
source/NotifyTray/bin/Debug/CSLA.xml
Normal file
2293
source/NotifyTray/bin/Debug/CSLA.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
source/NotifyTray/bin/Debug/ChilkatDotNet.dll
Normal file
BIN
source/NotifyTray/bin/Debug/ChilkatDotNet.dll
Normal file
Binary file not shown.
BIN
source/NotifyTray/bin/Debug/FileHelpers.dll
Normal file
BIN
source/NotifyTray/bin/Debug/FileHelpers.dll
Normal file
Binary file not shown.
2106
source/NotifyTray/bin/Debug/FileHelpers.xml
Normal file
2106
source/NotifyTray/bin/Debug/FileHelpers.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
source/NotifyTray/bin/Debug/FirebirdSql.Data.Firebird.dll
Normal file
BIN
source/NotifyTray/bin/Debug/FirebirdSql.Data.Firebird.dll
Normal file
Binary file not shown.
BIN
source/NotifyTray/bin/Debug/GZTW.AyaNova.BLL.pdb
Normal file
BIN
source/NotifyTray/bin/Debug/GZTW.AyaNova.BLL.pdb
Normal file
Binary file not shown.
BIN
source/NotifyTray/bin/Debug/GZTW.Data.dll
Normal file
BIN
source/NotifyTray/bin/Debug/GZTW.Data.dll
Normal file
Binary file not shown.
BIN
source/NotifyTray/bin/Debug/GZTW.Data.pdb
Normal file
BIN
source/NotifyTray/bin/Debug/GZTW.Data.pdb
Normal file
Binary file not shown.
BIN
source/NotifyTray/bin/Debug/GZTW.Profile.dll
Normal file
BIN
source/NotifyTray/bin/Debug/GZTW.Profile.dll
Normal file
Binary file not shown.
BIN
source/NotifyTray/bin/Debug/GZTW.Profile.pdb
Normal file
BIN
source/NotifyTray/bin/Debug/GZTW.Profile.pdb
Normal file
Binary file not shown.
BIN
source/NotifyTray/bin/Debug/Generator.exe
Normal file
BIN
source/NotifyTray/bin/Debug/Generator.exe
Normal file
Binary file not shown.
52
source/NotifyTray/bin/Debug/Generator.exe.config
Normal file
52
source/NotifyTray/bin/Debug/Generator.exe.config
Normal file
@@ -0,0 +1,52 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<configuration>
|
||||
<startup>
|
||||
</startup>
|
||||
<appSettings>
|
||||
<!--"Authentication" should always be set to "CSLA" -->
|
||||
<add key="Authentication" value="CSLA" />
|
||||
<!--Only one of the following three connection types can be in effect
|
||||
(two others should be commented out)-->
|
||||
|
||||
|
||||
<!-- (DEFAULT) Use the single user local embedded Firebird database
|
||||
<add key="ConnectionType" value="DataBase"/>
|
||||
<add key="DataBaseType" value="FireBird"/>
|
||||
<add key="DataBaseConnectionString" value="ServerType=1;DataBase=C:\data\AyaNova 3.2\utils\AyaImport\AYANOVA.FDB;Dialect=3;"/>
|
||||
<add key="GenerateFromThisConnection" value="true"/>
|
||||
-->
|
||||
|
||||
|
||||
<!-- Use a shared Microsoft SQL Express 2005 Database -->
|
||||
<add key="ConnectionType" value="DataBase" />
|
||||
<add key="DataBaseType" value="MSSQL" />
|
||||
<add key="DataBaseConnectionString" value="Server=JOHN\SQLExpress;initial catalog=AyaNova;User Id=sa; Password=ayanova;" />
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- Use a shared Firebird server
|
||||
<add key="ConnectionType" value="DataBase" />
|
||||
<add key="DataBaseType" value="FireBird" />
|
||||
<add key="DataBaseConnectionString" value="ServerType=0;DataSource=devsrvr;DataBase=AYANOVA;User=SYSDBA;Password=aya78787;Dialect=3;" />
|
||||
<add key="GenerateFromThisConnection" value="true"/>
|
||||
-->
|
||||
|
||||
|
||||
<!-- Use a shared Microsoft SQL server 2000/2005 or MSDE or SQL Express 2005 Database
|
||||
<add key="ConnectionType" value="DataBase" />
|
||||
<add key="DataBaseType" value="MSSQL" />
|
||||
<add key="DataBaseConnectionString" value="data source=DEVSRVR\SQLExpress;initial catalog=AyaNova;User Id=sa; Password=ayanova;" />
|
||||
-->
|
||||
|
||||
|
||||
<!-- Use a client's DataPortal connection for testing
|
||||
<add key="ConnectionType" value="DataPortal" />
|
||||
<add key="PortalServer" value="http://holco.no-ip.info:6969/AyaNovaDP/DataPortal.rem" />
|
||||
-->
|
||||
<!-- Use a DataPortal connection to AyaNova DB via another computer...
|
||||
<add key="ConnectionType" value="DataPortal" />
|
||||
<add key="PortalServer" value="http://192.168.1.100:6969/AyaNovaDP/DataPortal.rem" />
|
||||
-->
|
||||
</appSettings>
|
||||
</configuration>
|
||||
BIN
source/NotifyTray/bin/Debug/Generator.pdb
Normal file
BIN
source/NotifyTray/bin/Debug/Generator.pdb
Normal file
Binary file not shown.
BIN
source/NotifyTray/bin/Debug/Generator.vshost.exe
Normal file
BIN
source/NotifyTray/bin/Debug/Generator.vshost.exe
Normal file
Binary file not shown.
52
source/NotifyTray/bin/Debug/Generator.vshost.exe.config
Normal file
52
source/NotifyTray/bin/Debug/Generator.vshost.exe.config
Normal file
@@ -0,0 +1,52 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<configuration>
|
||||
<startup>
|
||||
</startup>
|
||||
<appSettings>
|
||||
<!--"Authentication" should always be set to "CSLA" -->
|
||||
<add key="Authentication" value="CSLA" />
|
||||
<!--Only one of the following three connection types can be in effect
|
||||
(two others should be commented out)-->
|
||||
|
||||
|
||||
<!-- (DEFAULT) Use the single user local embedded Firebird database
|
||||
<add key="ConnectionType" value="DataBase"/>
|
||||
<add key="DataBaseType" value="FireBird"/>
|
||||
<add key="DataBaseConnectionString" value="ServerType=1;DataBase=C:\data\AyaNova 3.2\utils\AyaImport\AYANOVA.FDB;Dialect=3;"/>
|
||||
<add key="GenerateFromThisConnection" value="true"/>
|
||||
-->
|
||||
|
||||
|
||||
<!-- Use a shared Microsoft SQL Express 2005 Database -->
|
||||
<add key="ConnectionType" value="DataBase" />
|
||||
<add key="DataBaseType" value="MSSQL" />
|
||||
<add key="DataBaseConnectionString" value="Server=JOHN\SQLExpress;initial catalog=AyaNova;User Id=sa; Password=ayanova;" />
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- Use a shared Firebird server
|
||||
<add key="ConnectionType" value="DataBase" />
|
||||
<add key="DataBaseType" value="FireBird" />
|
||||
<add key="DataBaseConnectionString" value="ServerType=0;DataSource=devsrvr;DataBase=AYANOVA;User=SYSDBA;Password=aya78787;Dialect=3;" />
|
||||
<add key="GenerateFromThisConnection" value="true"/>
|
||||
-->
|
||||
|
||||
|
||||
<!-- Use a shared Microsoft SQL server 2000/2005 or MSDE or SQL Express 2005 Database
|
||||
<add key="ConnectionType" value="DataBase" />
|
||||
<add key="DataBaseType" value="MSSQL" />
|
||||
<add key="DataBaseConnectionString" value="data source=DEVSRVR\SQLExpress;initial catalog=AyaNova;User Id=sa; Password=ayanova;" />
|
||||
-->
|
||||
|
||||
|
||||
<!-- Use a client's DataPortal connection for testing
|
||||
<add key="ConnectionType" value="DataPortal" />
|
||||
<add key="PortalServer" value="http://holco.no-ip.info:6969/AyaNovaDP/DataPortal.rem" />
|
||||
-->
|
||||
<!-- Use a DataPortal connection to AyaNova DB via another computer...
|
||||
<add key="ConnectionType" value="DataPortal" />
|
||||
<add key="PortalServer" value="http://192.168.1.100:6969/AyaNovaDP/DataPortal.rem" />
|
||||
-->
|
||||
</appSettings>
|
||||
</configuration>
|
||||
BIN
source/NotifyTray/bin/Debug/log4net.dll
Normal file
BIN
source/NotifyTray/bin/Debug/log4net.dll
Normal file
Binary file not shown.
BIN
source/NotifyTray/bin/Release/CSLA.Core.Bindablebase.dll
Normal file
BIN
source/NotifyTray/bin/Release/CSLA.Core.Bindablebase.dll
Normal file
Binary file not shown.
BIN
source/NotifyTray/bin/Release/CSLA.Server.DataPortal.dll
Normal file
BIN
source/NotifyTray/bin/Release/CSLA.Server.DataPortal.dll
Normal file
Binary file not shown.
BIN
source/NotifyTray/bin/Release/CSLA.Server.ServicedDataPortal.dll
Normal file
BIN
source/NotifyTray/bin/Release/CSLA.Server.ServicedDataPortal.dll
Normal file
Binary file not shown.
BIN
source/NotifyTray/bin/Release/CSLA.dll
Normal file
BIN
source/NotifyTray/bin/Release/CSLA.dll
Normal file
Binary file not shown.
BIN
source/NotifyTray/bin/Release/ChilkatDotNet.dll
Normal file
BIN
source/NotifyTray/bin/Release/ChilkatDotNet.dll
Normal file
Binary file not shown.
702
source/NotifyTray/bin/Release/DevExpress.Data3.xml
Normal file
702
source/NotifyTray/bin/Release/DevExpress.Data3.xml
Normal file
@@ -0,0 +1,702 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>DevExpress.Data3</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:DevExpress.Data.SelectionChangedEventHandler.SelectionChangedEventHandler">
|
||||
|
||||
<summary>
|
||||
<para>Represents a method that will handle the <see cref="E:DevExpress.XtraGrid.Views.Base.ColumnView.SelectionChanged"/> event.
|
||||
</para>
|
||||
</summary>
|
||||
|
||||
</member>
|
||||
<member name="M:DevExpress.Data.SelectionChangedEventHandler.Invoke(System.Object,DevExpress.Data.SelectionChangedEventArgs)">
|
||||
<summary>
|
||||
<para>Represents a method that will handle the <see cref="E:DevExpress.XtraGrid.Views.Base.ColumnView.SelectionChanged"/> event.
|
||||
</para>
|
||||
</summary>
|
||||
<param name="sender">
|
||||
The event sender.
|
||||
|
||||
</param>
|
||||
<param name="e">
|
||||
A <see cref="T:DevExpress.Data.SelectionChangedEventArgs"/> object that contains event data.
|
||||
|
||||
</param>
|
||||
|
||||
|
||||
</member>
|
||||
<member name="T:DevExpress.Data.SelectionChangedEventArgs.SelectionChangedEventArgs">
|
||||
|
||||
<summary>
|
||||
<para>Provides data for the selection changed events.
|
||||
</para>
|
||||
</summary>
|
||||
|
||||
</member>
|
||||
<member name="M:DevExpress.Data.SelectionChangedEventArgs.#ctor">
|
||||
<summary>
|
||||
<para>Initializes a new instance of the <see cref="T:DevExpress.Data.SelectionChangedEventArgs"/> class with default settings.
|
||||
</para>
|
||||
</summary>
|
||||
|
||||
|
||||
</member>
|
||||
<member name="M:DevExpress.Data.SelectionChangedEventArgs.#ctor(System.ComponentModel.CollectionChangeAction,System.Int32)">
|
||||
<summary>
|
||||
<para>Initializes a new instance of the <see cref="T:DevExpress.Data.SelectionChangedEventArgs"/> class with the specified settings.
|
||||
</para>
|
||||
</summary>
|
||||
<param name="action">
|
||||
A <see cref="T:System.ComponentModel.CollectionChangeAction"/> enumeration value which specifies how the collection has been changed. This value is assigned to the <see cref="P:DevExpress.Data.SelectionChangedEventArgs.Action"/> property.
|
||||
|
||||
</param>
|
||||
<param name="controllerRow">
|
||||
A zero-based integer specifying the handle of the row whose selected state has been changed. This value is assigned to the <see cref="P:DevExpress.Data.SelectionChangedEventArgs.ControllerRow"/> property.
|
||||
|
||||
</param>
|
||||
|
||||
|
||||
</member>
|
||||
<member name="P:DevExpress.Data.SelectionChangedEventArgs.Action">
|
||||
<summary>
|
||||
<para>Gets an action which describes how the collection has been changed.
|
||||
</para>
|
||||
</summary>
|
||||
<value>A <see cref="T:System.ComponentModel.CollectionChangeAction"/> enumeration value which specifies how the collection has been changed.
|
||||
</value>
|
||||
|
||||
|
||||
</member>
|
||||
<member name="P:DevExpress.Data.SelectionChangedEventArgs.ControllerRow">
|
||||
<summary>
|
||||
<para>Identifies the row whose selected state has been changed.
|
||||
</para>
|
||||
</summary>
|
||||
<value>A zero-based integer identifying the row whose selected state has been changed.
|
||||
</value>
|
||||
|
||||
|
||||
</member>
|
||||
<member name="T:DevExpress.Data.PivotGrid.PivotFilterType.PivotFilterType">
|
||||
|
||||
<summary>
|
||||
<para>Contains the values that specify a field's filter type in the XtraPivotGrid control.
|
||||
</para>
|
||||
</summary>
|
||||
|
||||
</member>
|
||||
<member name="F:DevExpress.Data.PivotGrid.PivotFilterType.Excluded">
|
||||
<summary>
|
||||
<para>Specifies that the XtraPivotGrid control should not display the filter values. All the other values will be displayed.
|
||||
</para>
|
||||
</summary>
|
||||
|
||||
|
||||
</member>
|
||||
<member name="F:DevExpress.Data.PivotGrid.PivotFilterType.Included">
|
||||
<summary>
|
||||
<para>Specifies that the XtraPivotGrid control should display only the filter values.
|
||||
</para>
|
||||
</summary>
|
||||
|
||||
|
||||
</member>
|
||||
<member name="T:DevExpress.Data.CustomSummaryEventHandler.CustomSummaryEventHandler">
|
||||
|
||||
<summary>
|
||||
<para>Represents a method that will handle the <see cref="E:DevExpress.XtraGrid.Views.Grid.GridView.CustomSummaryCalculate"/> event.
|
||||
</para>
|
||||
</summary>
|
||||
|
||||
</member>
|
||||
<member name="M:DevExpress.Data.CustomSummaryEventHandler.Invoke(System.Object,DevExpress.Data.CustomSummaryEventArgs)">
|
||||
<summary>
|
||||
<para>Represents a method that will handle the <see cref="E:DevExpress.XtraGrid.Views.Grid.GridView.CustomSummaryCalculate"/> event.
|
||||
</para>
|
||||
</summary>
|
||||
<param name="sender">
|
||||
The event source.
|
||||
|
||||
</param>
|
||||
<param name="e">
|
||||
A <see cref="T:DevExpress.Data.CustomSummaryEventArgs"/> object containing data related to the event.
|
||||
|
||||
</param>
|
||||
|
||||
|
||||
</member>
|
||||
<member name="T:DevExpress.Data.SummaryItemType.SummaryItemType">
|
||||
|
||||
<summary>
|
||||
<para>Lists values specifying the aggregate function types.
|
||||
</para>
|
||||
</summary>
|
||||
|
||||
</member>
|
||||
<member name="F:DevExpress.Data.SummaryItemType.Average">
|
||||
<summary>
|
||||
<para>The average value of a column.
|
||||
</para>
|
||||
</summary>
|
||||
|
||||
|
||||
</member>
|
||||
<member name="F:DevExpress.Data.SummaryItemType.Count">
|
||||
<summary>
|
||||
<para>The record count.
|
||||
|
||||
</para>
|
||||
</summary>
|
||||
|
||||
|
||||
</member>
|
||||
<member name="F:DevExpress.Data.SummaryItemType.Custom">
|
||||
<summary>
|
||||
<para>Specifies whether calculations should be performed manually using a specially designed event.
|
||||
</para>
|
||||
</summary>
|
||||
|
||||
|
||||
</member>
|
||||
<member name="F:DevExpress.Data.SummaryItemType.Max">
|
||||
<summary>
|
||||
<para>The maximum value in a column.
|
||||
</para>
|
||||
</summary>
|
||||
|
||||
|
||||
</member>
|
||||
<member name="F:DevExpress.Data.SummaryItemType.Min">
|
||||
<summary>
|
||||
<para>The minimum value in a column.
|
||||
</para>
|
||||
</summary>
|
||||
|
||||
|
||||
</member>
|
||||
<member name="F:DevExpress.Data.SummaryItemType.None">
|
||||
<summary>
|
||||
<para>Disables summary value calculation.
|
||||
</para>
|
||||
</summary>
|
||||
|
||||
|
||||
</member>
|
||||
<member name="F:DevExpress.Data.SummaryItemType.Sum">
|
||||
<summary>
|
||||
<para>The sum of all values in a column.
|
||||
</para>
|
||||
</summary>
|
||||
|
||||
|
||||
</member>
|
||||
<member name="T:DevExpress.Data.ColumnSortOrder.ColumnSortOrder">
|
||||
|
||||
<summary>
|
||||
<para>Lists values specifying the sort orders.
|
||||
</para>
|
||||
</summary>
|
||||
|
||||
</member>
|
||||
<member name="F:DevExpress.Data.ColumnSortOrder.Ascending">
|
||||
<summary>
|
||||
<para>Sorts the column in ascending order.
|
||||
</para>
|
||||
</summary>
|
||||
|
||||
|
||||
</member>
|
||||
<member name="F:DevExpress.Data.ColumnSortOrder.Descending">
|
||||
<summary>
|
||||
<para>Sorts the columns in descending order.
|
||||
|
||||
</para>
|
||||
</summary>
|
||||
|
||||
|
||||
</member>
|
||||
<member name="F:DevExpress.Data.ColumnSortOrder.None">
|
||||
<summary>
|
||||
<para>No sorting is applied to a column.
|
||||
</para>
|
||||
</summary>
|
||||
|
||||
|
||||
</member>
|
||||
<member name="T:DevExpress.Data.CustomSummaryExistEventArgs.CustomSummaryExistEventArgs">
|
||||
|
||||
<summary>
|
||||
<para>Provides data for the <see cref="E:DevExpress.XtraGrid.Views.Grid.GridView.CustomSummaryExists"/> event.
|
||||
</para>
|
||||
</summary>
|
||||
|
||||
</member>
|
||||
<member name="M:DevExpress.Data.CustomSummaryExistEventArgs.#ctor(System.Int32,System.Int32,System.Object)">
|
||||
<summary>
|
||||
<para>Initializes a new instance of the <see cref="T:DevExpress.Data.CustomSummaryExistEventArgs"/> class.
|
||||
</para>
|
||||
</summary>
|
||||
<param name="groupRowHandle">
|
||||
An integer value specifying the handle of the group row whose summary value is about to be calculated. This value is assigned to the <see cref="P:DevExpress.Data.CustomSummaryExistEventArgs.GroupRowHandle"/> property.
|
||||
|
||||
</param>
|
||||
<param name="groupLevel">
|
||||
An integer value specifying the zero-based nesting level of the processed group. This value is assigned to the <see cref="P:DevExpress.Data.CustomSummaryExistEventArgs.GroupLevel"/> property.
|
||||
|
||||
</param>
|
||||
<param name="item">
|
||||
An object which represents the summary item whose value is about to be calculated. This value is assigned to the <see cref="P:DevExpress.Data.CustomSummaryExistEventArgs.Item"/> property.
|
||||
|
||||
</param>
|
||||
|
||||
|
||||
</member>
|
||||
<member name="P:DevExpress.Data.CustomSummaryExistEventArgs.Exists">
|
||||
<summary>
|
||||
<para>Gets or sets whether the summary value should be calculated and displayed.
|
||||
</para>
|
||||
</summary>
|
||||
<value><B>true</B> to calculate and display the summary value; otherwise, <B>false</B>.
|
||||
</value>
|
||||
|
||||
|
||||
</member>
|
||||
<member name="P:DevExpress.Data.CustomSummaryExistEventArgs.GroupLevel">
|
||||
<summary>
|
||||
<para>Gets the nesting level of the group whose summary value is being calculated.
|
||||
</para>
|
||||
</summary>
|
||||
<value>An integer value representing the zero-based nesting level of the processed group.
|
||||
</value>
|
||||
|
||||
|
||||
</member>
|
||||
<member name="P:DevExpress.Data.CustomSummaryExistEventArgs.GroupRowHandle">
|
||||
<summary>
|
||||
<para>Gets a value identifying the group row whose summary value is about to be calculated.
|
||||
</para>
|
||||
</summary>
|
||||
<value>An integer value representing the handle of the group row whose summary value is about to be calculated. <B>0</B> when calculating a total summary value.
|
||||
</value>
|
||||
|
||||
|
||||
</member>
|
||||
<member name="P:DevExpress.Data.CustomSummaryExistEventArgs.IsGroupSummary">
|
||||
<summary>
|
||||
<para>Gets whether a group summary value is about to be calculated.
|
||||
</para>
|
||||
</summary>
|
||||
<value><B>true</B> if a group summary value is about to be calculated; otherwise, <B>false</B>.
|
||||
</value>
|
||||
|
||||
|
||||
</member>
|
||||
<member name="P:DevExpress.Data.CustomSummaryExistEventArgs.IsTotalSummary">
|
||||
<summary>
|
||||
<para>Gets whether a total summary value is about to be calculated.
|
||||
</para>
|
||||
</summary>
|
||||
<value><B>true</B> if a total summary value is about to be calculated; otherwise, <B>false</B>.
|
||||
</value>
|
||||
|
||||
|
||||
</member>
|
||||
<member name="P:DevExpress.Data.CustomSummaryExistEventArgs.Item">
|
||||
<summary>
|
||||
<para>Gets a summary item whose value is about to be calculated.
|
||||
</para>
|
||||
</summary>
|
||||
<value>An object representing a summary item whose value is about to be calculated.
|
||||
</value>
|
||||
|
||||
|
||||
</member>
|
||||
<member name="T:DevExpress.Data.CustomSummaryProcess.CustomSummaryProcess">
|
||||
|
||||
<summary>
|
||||
<para>Specifies the current status of custom summary calculation.
|
||||
</para>
|
||||
</summary>
|
||||
|
||||
</member>
|
||||
<member name="F:DevExpress.Data.CustomSummaryProcess.Calculate">
|
||||
<summary>
|
||||
<para>Indicates that custom summary calculation is in progress. This means the event is raised for a specific data row containing the field value used to calculate the processed custom summary.
|
||||
</para>
|
||||
</summary>
|
||||
|
||||
|
||||
</member>
|
||||
<member name="F:DevExpress.Data.CustomSummaryProcess.Finalize">
|
||||
<summary>
|
||||
<para>Indicates that the process of custom summary calculation is finished.
|
||||
</para>
|
||||
</summary>
|
||||
|
||||
|
||||
</member>
|
||||
<member name="F:DevExpress.Data.CustomSummaryProcess.Start">
|
||||
<summary>
|
||||
<para>Indicates that the process of custom summary calculation is about to be started.
|
||||
|
||||
</para>
|
||||
</summary>
|
||||
|
||||
|
||||
</member>
|
||||
<member name="T:DevExpress.Data.PivotGrid.PivotSummaryType.PivotSummaryType">
|
||||
|
||||
<summary>
|
||||
<para>Lists values that specify the summary function types.
|
||||
</para>
|
||||
</summary>
|
||||
|
||||
</member>
|
||||
<member name="F:DevExpress.Data.PivotGrid.PivotSummaryType.Average">
|
||||
<summary>
|
||||
<para>The average of the values.
|
||||
<para>
|
||||
|
||||
</para>
|
||||
</para>
|
||||
</summary>
|
||||
|
||||
|
||||
</member>
|
||||
<member name="F:DevExpress.Data.PivotGrid.PivotSummaryType.Count">
|
||||
<summary>
|
||||
<para>The number of values.
|
||||
|
||||
</para>
|
||||
</summary>
|
||||
|
||||
|
||||
</member>
|
||||
<member name="F:DevExpress.Data.PivotGrid.PivotSummaryType.Custom">
|
||||
<summary>
|
||||
<para>Specifies whether calculations should be performed manually using a specially designed event.
|
||||
|
||||
<para>
|
||||
In the XtraPivotGrid control handle the <see cref="E:DevExpress.XtraPivotGrid.PivotGridControl.CustomSummary"/> event to calculate custom summaries.
|
||||
</para>
|
||||
</para>
|
||||
</summary>
|
||||
|
||||
|
||||
</member>
|
||||
<member name="F:DevExpress.Data.PivotGrid.PivotSummaryType.Max">
|
||||
<summary>
|
||||
<para>The largest value.
|
||||
</para>
|
||||
</summary>
|
||||
|
||||
|
||||
</member>
|
||||
<member name="F:DevExpress.Data.PivotGrid.PivotSummaryType.Min">
|
||||
<summary>
|
||||
<para>The smallest value.
|
||||
</para>
|
||||
</summary>
|
||||
|
||||
|
||||
</member>
|
||||
<member name="F:DevExpress.Data.PivotGrid.PivotSummaryType.StdDev">
|
||||
<summary>
|
||||
<para>An estimate of the standard deviation of a population, where the sample is a subset of the entire population.
|
||||
<para>
|
||||
|
||||
</para>
|
||||
</para>
|
||||
</summary>
|
||||
|
||||
|
||||
</member>
|
||||
<member name="F:DevExpress.Data.PivotGrid.PivotSummaryType.StdDevp">
|
||||
<summary>
|
||||
<para>The standard deviation of a population, where the population is all of the data to be summarized.
|
||||
<para>
|
||||
|
||||
</para>
|
||||
</para>
|
||||
</summary>
|
||||
|
||||
|
||||
</member>
|
||||
<member name="F:DevExpress.Data.PivotGrid.PivotSummaryType.Sum">
|
||||
<summary>
|
||||
<para>The sum of the values.
|
||||
<para>
|
||||
|
||||
</para>
|
||||
</para>
|
||||
</summary>
|
||||
|
||||
|
||||
</member>
|
||||
<member name="F:DevExpress.Data.PivotGrid.PivotSummaryType.Var">
|
||||
<summary>
|
||||
<para>An estimate of the variance of a population, where the sample is a subset of the entire population.
|
||||
<para>
|
||||
|
||||
</para>
|
||||
</para>
|
||||
</summary>
|
||||
|
||||
|
||||
</member>
|
||||
<member name="F:DevExpress.Data.PivotGrid.PivotSummaryType.Varp">
|
||||
<summary>
|
||||
<para>The variance of a population, where the population is all of the data to be summarized.
|
||||
<para>
|
||||
|
||||
</para>
|
||||
</para>
|
||||
</summary>
|
||||
|
||||
|
||||
</member>
|
||||
<member name="T:DevExpress.Data.UnboundColumnType.UnboundColumnType">
|
||||
|
||||
<summary>
|
||||
<para>Contains values that specify the data type and binding mode of columns.
|
||||
</para>
|
||||
</summary>
|
||||
|
||||
</member>
|
||||
<member name="F:DevExpress.Data.UnboundColumnType.Boolean">
|
||||
<summary>
|
||||
<para>Indicates that the column is unbound and it contains Boolean values (the <see cref="T:System.Boolean"/> type).
|
||||
</para>
|
||||
</summary>
|
||||
|
||||
|
||||
</member>
|
||||
<member name="F:DevExpress.Data.UnboundColumnType.Bound">
|
||||
<summary>
|
||||
<para>Indicates that the column is bound to a field in the control's underlying data source. The type of data this column contains is determined by the bound field.
|
||||
</para>
|
||||
</summary>
|
||||
|
||||
|
||||
</member>
|
||||
<member name="F:DevExpress.Data.UnboundColumnType.DateTime">
|
||||
<summary>
|
||||
<para>Indicates that the column is unbound and it contains date/time values (the <see cref="T:System.DateTime"/> type).
|
||||
</para>
|
||||
</summary>
|
||||
|
||||
|
||||
</member>
|
||||
<member name="F:DevExpress.Data.UnboundColumnType.Decimal">
|
||||
<summary>
|
||||
<para>Indicates that the column is unbound and it contains decimal values (the <see cref="T:System.Decimal"/> type).
|
||||
</para>
|
||||
</summary>
|
||||
|
||||
|
||||
</member>
|
||||
<member name="F:DevExpress.Data.UnboundColumnType.Integer">
|
||||
<summary>
|
||||
<para>Indicates that the column is unbound and it contains integer values (the <see cref="T:System.Int32"/> type).
|
||||
</para>
|
||||
</summary>
|
||||
|
||||
|
||||
</member>
|
||||
<member name="F:DevExpress.Data.UnboundColumnType.Object">
|
||||
<summary>
|
||||
<para>Indicates that the column is unbound and it contains values of any type. A <see cref="T:DevExpress.XtraEditors.TextEdit"/> editor is assigned for the in-place editing of such a column.
|
||||
</para>
|
||||
</summary>
|
||||
|
||||
|
||||
</member>
|
||||
<member name="F:DevExpress.Data.UnboundColumnType.String">
|
||||
<summary>
|
||||
<para>Indicates that the column is unbound and it contains string values (the <see cref="T:System.String"/> type).
|
||||
</para>
|
||||
</summary>
|
||||
|
||||
|
||||
</member>
|
||||
<member name="T:DevExpress.Data.CustomSummaryEventArgs.CustomSummaryEventArgs">
|
||||
|
||||
<summary>
|
||||
<para>Provides data for the <see cref="E:DevExpress.XtraGrid.Views.Grid.GridView.CustomSummaryCalculate"/> event.
|
||||
</para>
|
||||
</summary>
|
||||
|
||||
</member>
|
||||
<member name="M:DevExpress.Data.CustomSummaryEventArgs.#ctor(System.Int32,System.Object,System.Object,System.Int32,DevExpress.Data.CustomSummaryProcess,System.Object,System.Int32)">
|
||||
<summary>
|
||||
<para>Creates a new <see cref="T:DevExpress.Data.CustomSummaryEventArgs"/> object.
|
||||
</para>
|
||||
</summary>
|
||||
<param name="rowHandle">
|
||||
An integer value identifying the processed row by its handle. This value is assigned to the <see cref="P:DevExpress.Data.CustomSummaryEventArgs.RowHandle"/> property.
|
||||
|
||||
</param>
|
||||
<param name="totalValue">
|
||||
An object representing the custom calculated summary value. This value is assigned to the <see cref="P:DevExpress.Data.CustomSummaryEventArgs.TotalValue"/> property.
|
||||
|
||||
</param>
|
||||
<param name="fieldValue">
|
||||
An object representing the currently processed field value. This value is assigned to the <see cref="P:DevExpress.Data.CustomSummaryEventArgs.FieldValue"/> property.
|
||||
|
||||
</param>
|
||||
<param name="groupRowHandle">
|
||||
An integer value identifying the group row whose child data rows are involved in summary calculation. This value is assigned to the <see cref="P:DevExpress.Data.CustomSummaryEventArgs.GroupRowHandle"/> property.
|
||||
|
||||
</param>
|
||||
<param name="summaryProcess">
|
||||
A <see cref="T:DevExpress.Data.CustomSummaryProcess"/> enumeration value identifying the current calculation stage. This value is assigned to the <see cref="P:DevExpress.Data.CustomSummaryEventArgs.SummaryProcess"/> property.
|
||||
|
||||
</param>
|
||||
<param name="item">
|
||||
An object representing the summary item whose value is being calculated. This value is assigned to the <see cref="P:DevExpress.Data.CustomSummaryEventArgs.Item"/> property.
|
||||
|
||||
</param>
|
||||
<param name="groupLevel">
|
||||
An integer value indicating the nested group level of the processed row. This value is assigned to the <see cref="P:DevExpress.Data.CustomSummaryEventArgs.GroupLevel"/> property.
|
||||
|
||||
</param>
|
||||
|
||||
|
||||
</member>
|
||||
<member name="M:DevExpress.Data.CustomSummaryEventArgs.#ctor">
|
||||
<summary>
|
||||
<para>Initializes a new instance of the <see cref="T:DevExpress.Data.CustomSummaryEventArgs"/> class.
|
||||
</para>
|
||||
</summary>
|
||||
|
||||
|
||||
</member>
|
||||
<member name="P:DevExpress.Data.CustomSummaryEventArgs.FieldValue">
|
||||
<summary>
|
||||
<para>Gets the processed field value.
|
||||
</para>
|
||||
</summary>
|
||||
<value>An object representing the processed field value.
|
||||
</value>
|
||||
|
||||
|
||||
</member>
|
||||
<member name="P:DevExpress.Data.CustomSummaryEventArgs.GroupLevel">
|
||||
<summary>
|
||||
<para>Gets the nested level of the group whose summary value is being calculated.
|
||||
</para>
|
||||
</summary>
|
||||
<value>An integer value representing the zero-based nested level of the processed group.
|
||||
</value>
|
||||
|
||||
|
||||
</member>
|
||||
<member name="P:DevExpress.Data.CustomSummaryEventArgs.GroupRowHandle">
|
||||
<summary>
|
||||
<para>Gets a value identifying the group row whose child data rows are involved in summary calculation.
|
||||
</para>
|
||||
</summary>
|
||||
<value>An integer value representing the handle of the group row containing the processed row as a child. <B>0</B> when calculating a total summary value.
|
||||
</value>
|
||||
|
||||
|
||||
</member>
|
||||
<member name="P:DevExpress.Data.CustomSummaryEventArgs.IsGroupSummary">
|
||||
<summary>
|
||||
<para>Gets whether a group summary value is being calculated.
|
||||
</para>
|
||||
</summary>
|
||||
<value><B>true</B> if a group summary value is being calculated; otherwise, <B>false</B>.
|
||||
</value>
|
||||
|
||||
|
||||
</member>
|
||||
<member name="P:DevExpress.Data.CustomSummaryEventArgs.IsTotalSummary">
|
||||
<summary>
|
||||
<para>Gets whether a total summary value is being calculated.
|
||||
</para>
|
||||
</summary>
|
||||
<value><B>true</B> if a total summary value is being calculated; otherwise, <B>false</B>.
|
||||
</value>
|
||||
|
||||
|
||||
</member>
|
||||
<member name="P:DevExpress.Data.CustomSummaryEventArgs.Item">
|
||||
<summary>
|
||||
<para>Gets a summary item whose value is being calculated.
|
||||
</para>
|
||||
</summary>
|
||||
<value>An object representing a summary item whose value is being calculated.
|
||||
</value>
|
||||
|
||||
|
||||
</member>
|
||||
<member name="P:DevExpress.Data.CustomSummaryEventArgs.RowHandle">
|
||||
<summary>
|
||||
<para>Gets the handle of the processed row.
|
||||
</para>
|
||||
</summary>
|
||||
<value>An integer value identifying the processed data row by its handle.
|
||||
</value>
|
||||
|
||||
|
||||
</member>
|
||||
<member name="P:DevExpress.Data.CustomSummaryEventArgs.SummaryProcess">
|
||||
<summary>
|
||||
<para>Gets a value indicating calculation stage.
|
||||
</para>
|
||||
</summary>
|
||||
<value>A <see cref="T:DevExpress.Data.CustomSummaryProcess"/> enumeration value indicating calculation stage.
|
||||
</value>
|
||||
|
||||
|
||||
</member>
|
||||
<member name="P:DevExpress.Data.CustomSummaryEventArgs.TotalValue">
|
||||
<summary>
|
||||
<para>Gets or sets the total summary value.
|
||||
</para>
|
||||
</summary>
|
||||
<value>An object representing the total summary value.
|
||||
</value>
|
||||
|
||||
|
||||
</member>
|
||||
<member name="P:DevExpress.Data.CustomSummaryEventArgs.TotalValueReady">
|
||||
<summary>
|
||||
<para>Gets or sets whether the Calculation stage of the custom summary calculation process should be skipped.
|
||||
</para>
|
||||
</summary>
|
||||
<value><b>true</b> if the Calculation stage of the custom summary calculation process should be skipped; otherwise, <b>false</b>.
|
||||
</value>
|
||||
|
||||
|
||||
</member>
|
||||
<member name="T:DevExpress.Data.CustomSummaryExistEventHandler.CustomSummaryExistEventHandler">
|
||||
|
||||
<summary>
|
||||
<para>Represents a method that will handle the <see cref="E:DevExpress.XtraGrid.Views.Grid.GridView.CustomSummaryExists"/> event.
|
||||
</para>
|
||||
</summary>
|
||||
|
||||
</member>
|
||||
<member name="M:DevExpress.Data.CustomSummaryExistEventHandler.Invoke(System.Object,DevExpress.Data.CustomSummaryExistEventArgs)">
|
||||
<summary>
|
||||
<para>Represents a method that will handle the <see cref="E:DevExpress.XtraGrid.Views.Grid.GridView.CustomSummaryExists"/> event.
|
||||
</para>
|
||||
</summary>
|
||||
<param name="sender">
|
||||
The event source.
|
||||
|
||||
</param>
|
||||
<param name="e">
|
||||
A <see cref="T:DevExpress.Data.CustomSummaryExistEventArgs"/> object containing data related to the event.
|
||||
|
||||
</param>
|
||||
|
||||
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
BIN
source/NotifyTray/bin/Release/FileHelpers.dll
Normal file
BIN
source/NotifyTray/bin/Release/FileHelpers.dll
Normal file
Binary file not shown.
2106
source/NotifyTray/bin/Release/FileHelpers.xml
Normal file
2106
source/NotifyTray/bin/Release/FileHelpers.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
source/NotifyTray/bin/Release/GZTW.AyaNova.BLL.dll
Normal file
BIN
source/NotifyTray/bin/Release/GZTW.AyaNova.BLL.dll
Normal file
Binary file not shown.
28070
source/NotifyTray/bin/Release/GZTW.AyaNova.BLL.xml
Normal file
28070
source/NotifyTray/bin/Release/GZTW.AyaNova.BLL.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
source/NotifyTray/bin/Release/GZTW.Data.dll
Normal file
BIN
source/NotifyTray/bin/Release/GZTW.Data.dll
Normal file
Binary file not shown.
BIN
source/NotifyTray/bin/Release/GZTW.Profile.dll
Normal file
BIN
source/NotifyTray/bin/Release/GZTW.Profile.dll
Normal file
Binary file not shown.
BIN
source/NotifyTray/bin/Release/Generator.exe
Normal file
BIN
source/NotifyTray/bin/Release/Generator.exe
Normal file
Binary file not shown.
52
source/NotifyTray/bin/Release/Generator.exe.config
Normal file
52
source/NotifyTray/bin/Release/Generator.exe.config
Normal file
@@ -0,0 +1,52 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<configuration>
|
||||
<startup>
|
||||
</startup>
|
||||
<appSettings>
|
||||
<!--"Authentication" should always be set to "CSLA" -->
|
||||
<add key="Authentication" value="CSLA" />
|
||||
<!--Only one of the following three connection types can be in effect
|
||||
(two others should be commented out)-->
|
||||
|
||||
|
||||
<!-- (DEFAULT) Use the single user local embedded Firebird database
|
||||
<add key="ConnectionType" value="DataBase"/>
|
||||
<add key="DataBaseType" value="FireBird"/>
|
||||
<add key="DataBaseConnectionString" value="ServerType=1;DataBase=C:\data\AyaNova 3.2\utils\AyaImport\AYANOVA.FDB;Dialect=3;"/>
|
||||
<add key="GenerateFromThisConnection" value="true"/>
|
||||
-->
|
||||
|
||||
|
||||
<!-- Use a shared Microsoft SQL Express 2005 Database -->
|
||||
<add key="ConnectionType" value="DataBase" />
|
||||
<add key="DataBaseType" value="MSSQL" />
|
||||
<add key="DataBaseConnectionString" value="Server=JOHN\SQLExpress;initial catalog=AyaNova;User Id=sa; Password=ayanova;" />
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- Use a shared Firebird server
|
||||
<add key="ConnectionType" value="DataBase" />
|
||||
<add key="DataBaseType" value="FireBird" />
|
||||
<add key="DataBaseConnectionString" value="ServerType=0;DataSource=devsrvr;DataBase=AYANOVA;User=SYSDBA;Password=aya78787;Dialect=3;" />
|
||||
<add key="GenerateFromThisConnection" value="true"/>
|
||||
-->
|
||||
|
||||
|
||||
<!-- Use a shared Microsoft SQL server 2000/2005 or MSDE or SQL Express 2005 Database
|
||||
<add key="ConnectionType" value="DataBase" />
|
||||
<add key="DataBaseType" value="MSSQL" />
|
||||
<add key="DataBaseConnectionString" value="data source=DEVSRVR\SQLExpress;initial catalog=AyaNova;User Id=sa; Password=ayanova;" />
|
||||
-->
|
||||
|
||||
|
||||
<!-- Use a client's DataPortal connection for testing
|
||||
<add key="ConnectionType" value="DataPortal" />
|
||||
<add key="PortalServer" value="http://holco.no-ip.info:6969/AyaNovaDP/DataPortal.rem" />
|
||||
-->
|
||||
<!-- Use a DataPortal connection to AyaNova DB via another computer...
|
||||
<add key="ConnectionType" value="DataPortal" />
|
||||
<add key="PortalServer" value="http://192.168.1.100:6969/AyaNovaDP/DataPortal.rem" />
|
||||
-->
|
||||
</appSettings>
|
||||
</configuration>
|
||||
BIN
source/NotifyTray/bin/Release/log4net.dll
Normal file
BIN
source/NotifyTray/bin/Release/log4net.dll
Normal file
Binary file not shown.
Reference in New Issue
Block a user