SharedProperty Class
.NET Framework (current version)
Accesses a shared property. This class cannot be inherited.
Assembly: System.EnterpriseServices (in System.EnterpriseServices.dll)
| Name | Description | |
|---|---|---|
![]() | Value | Gets or sets the value of the shared property. |
| Name | Description | |
|---|---|---|
![]() | Equals(Object^) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
The following code example shows how to create a shared property and set and retrieve the value stored in the shared property.
#using <System.EnterpriseServices.dll> using namespace System; using namespace System::EnterpriseServices; using namespace System::Reflection; [assembly:AssemblyKeyFile("..\\common\\key.snk")]; [assembly:ApplicationName("ReceiptNumberGenerator")]; [assembly:ApplicationActivation(ActivationOption::Library)]; public ref class ReceiptNumberGeneratorClass { public: // Generates a new receipt number based on the receipt number // stored by the Shared Property Manager (SPM) int GetNextReceiptNumber() { bool groupExists; bool propertyExists; int nextReceiptNumber = 0; PropertyLockMode lockMode = PropertyLockMode::SetGet; PropertyReleaseMode releaseMode = PropertyReleaseMode::Standard; // Create a shared property group manager. SharedPropertyGroupManager^ groupManager = gcnew SharedPropertyGroupManager; // Create a shared property group. SharedPropertyGroup^ group = groupManager->CreatePropertyGroup( "Receipts", lockMode, releaseMode, groupExists ); // Create a shared property. SharedProperty^ ReceiptNumber; ReceiptNumber = group->CreateProperty( "ReceiptNumber", propertyExists ); // Retrieve the value from shared property, and increment the shared // property value. nextReceiptNumber = safe_cast<int>(ReceiptNumber->Value); ReceiptNumber->Value = nextReceiptNumber + 1; // Return nextReceiptNumber return nextReceiptNumber; } };
.NET Framework
Available since 1.1
Available since 1.1
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Show:

