SharedPropertyGroupManager Class
Controls access to shared property groups. This class cannot be inherited.
Assembly: System.EnterpriseServices (in System.EnterpriseServices.dll)
| Name | Description | |
|---|---|---|
![]() | SharedPropertyGroupManager() | Initializes a new instance of the SharedPropertyGroupManager class. |
| Name | Description | |
|---|---|---|
![]() | CreatePropertyGroup(String^, PropertyLockMode%, PropertyReleaseMode%, Boolean%) | Finds or creates a property group with the given information. |
![]() | Equals(Object^) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | GetEnumerator() | Retrieves the enumeration interface for the collection. |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() | Group(String^) | Finds the property group with the given name. |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
| Name | Description | |
|---|---|---|
![]() | AsParallel() | Overloaded. Enables parallelization of a query.(Defined by ParallelEnumerable.) |
![]() | AsQueryable() | Overloaded. Converts an IEnumerable to an IQueryable.(Defined by Queryable.) |
![]() | Cast<TResult>() | Casts the elements of an IEnumerable to the specified type.(Defined by Enumerable.) |
![]() | OfType<TResult>() | Filters the elements of an IEnumerable based on a specified type.(Defined by Enumerable.) |
The following sample shows how to use SharedPropertyGroupManager to create and mange shared properties.
#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; } };
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.
