System::Text::RegularExpressions::CaptureCollection class
Contents
[
Hide
]CaptureCollection class
List of captures done by single capturing group. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument.
class CaptureCollection : public System::Collections::Generic::List<CapturePtr>
Methods
Method | Description |
---|---|
Add(const CapturePtr&) override | Disables collection ammendment. |
AddCapture(const CapturePtr&) | Service method to add capture into collection. |
Clear() override | Disables cleaning collection. |
get_Count() const override | Gets number of captures. |
get_IsReadOnly() const override | Marks collection as read-only. |
get_IsSynchronized() const | Marks collection as unsynchronized. |
Remove(const CapturePtr&) override | Disables collection ammendment. |
Typedefs
Typedef | Description |
---|---|
Base | Base type. |
See Also
- Class List
- Namespace System::Text::RegularExpressions
- Library Aspose.PUB for C++