Skip to content

Commit

Permalink
Updated project files.
Browse files Browse the repository at this point in the history
  • Loading branch information
dahall committed Sep 13, 2024
1 parent 24ce2be commit 3da05fe
Show file tree
Hide file tree
Showing 31 changed files with 146 additions and 144 deletions.
80 changes: 40 additions & 40 deletions Core/readme.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion DirectoryServices/Vanara.DirectoryServices.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<PackageReleaseNotes>Currently implements:

Classes
ADsBaseObject&lt;T&gt;, ADsComputer, ADsComputerOperations, ADsContainer&lt;T&gt;, ADsDomain, ADsFileService, ADsFileServiceOperations, ADsFileShare, ADsGroup, ADsMembership, ADsObject, ADsPrintJob, ADsPrintJobOperations, ADsPrintQueue, ADsPrintQueueOperations, ADsPropertyCache, ADsResource, ADsSchemaClass, ADsSchemaProperty, ADsSchemaPropertySyntax, ADsService, ADsServiceOperations, ADsSession, ADsUser
ADsBaseObject&lt;T&gt;, ADsCollection&lt;T&gt;, ADsComputer, ADsComputerOperations, ADsContainer&lt;T&gt;, ADsDomain, ADsFileService, ADsFileServiceOperations, ADsFileShare, ADsGroup, ADsMembership, ADsObject, ADsPrintJob, ADsPrintJobOperations, ADsPrintQueue, ADsPrintQueueOperations, ADsPropertyCache, ADsResource, ADsSchemaClass, ADsSchemaProperty, ADsSchemaPropertySyntax, ADsService, ADsServiceOperations, ADsSession, ADsUser

</PackageReleaseNotes>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion DirectoryServices/pkgreadme.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ If you're still running into problems, file an [issue](https://github.com/dahall

Classes | Interfaces
--- | ---
ADsBaseObject ADsComputer ADsComputerOperations ADsContainer ADsDomain ADsFileService ADsFileServiceOperations ADsFileShare ADsGroup ADsMembership ADsObject ADsPrintJob ADsPrintJobOperations ADsPrintQueue ADsPrintQueueOperations ADsPropertyCache ADsResource ADsSchemaClass ADsSchemaProperty ADsSchemaPropertySyntax ADsService ADsServiceOperations ADsSession ADsUser | IADsContainerObject IADsObject
ADsBaseObject ADsCollection ADsComputer ADsComputerOperations ADsContainer ADsDomain ADsFileService ADsFileServiceOperations ADsFileShare ADsGroup ADsMembership ADsObject ADsPrintJob ADsPrintJobOperations ADsPrintQueue ADsPrintQueueOperations ADsPropertyCache ADsResource ADsSchemaClass ADsSchemaProperty ADsSchemaPropertySyntax ADsService ADsServiceOperations ADsSession ADsUser | IADsContainerObject IADsObject
7 changes: 4 additions & 3 deletions DirectoryServices/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,16 @@ Wrapper classes around Win32 ADs methods and interfaces to provide simplified an
### Interfaces
Interface | Description
---- | ----
[Vanara.DirectoryServices.IADsContainerObject&lt;T&gt;](https://github.com/dahall/Vanara/search?l=C%23&q=IADsContainerObject) | Interface that identifies an object as a container with access to its children.
[Vanara.DirectoryServices.IADsContainerObject&lt;T&gt;](https://github.com/dahall/Vanara/search?l=C%23&q=IADsContainerObject%26lt%3BT%26gt%3B) | Interface that identifies an object as a container with access to its children.
[Vanara.DirectoryServices.IADsObject](https://github.com/dahall/Vanara/search?l=C%23&q=IADsObject) | Interface that represents an ADs object.
### Classes
Class | Description
---- | ----
[Vanara.DirectoryServices.ADsBaseObject&lt;T&gt;](https://github.com/dahall/Vanara/search?l=C%23&q=ADsBaseObject) | A template for accessing details associated with `Vanara.PInvoke.ActiveDS.IADs` derived interfaces.
[Vanara.DirectoryServices.ADsBaseObject&lt;T&gt;](https://github.com/dahall/Vanara/search?l=C%23&q=ADsBaseObject%26lt%3BT%26gt%3B) | A template for accessing details associated with `Vanara.PInvoke.ActiveDS.IADs` derived interfaces.
[Vanara.DirectoryServices.ADsCollection&lt;T&gt;](https://github.com/dahall/Vanara/search?l=C%23&q=ADsCollection%26lt%3BT%26gt%3B) | <p> Enables its hosting ADSI object to define and manage an arbitrary set of named data elements for a directory service. Collections differ from arrays of elements in that individual items can be added or deleted without reordering the entire array. </p> <p> Collection objects can represent one or more items that correspond to volatile data, such as processes or active communication sessions, as well as persistent data, such as physical entities for a directory service. For example, a collection object can represent a list of print jobs in a queue or a list of active sessions connected to a server. Although a collection object can represent arbitrary data sets, all elements in a collection must be of the same type. The data are of <c>Variant</c> types. </p>
[Vanara.DirectoryServices.ADsComputer](https://github.com/dahall/Vanara/search?l=C%23&q=ADsComputer) | <p> The `Vanara.DirectoryServices.ADsComputer` object is designed to represent and manage a computer, such as a server, client, workstation, and so on, on a network. You can manipulate the properties of this object to access data about a computer. The data includes the operating system, the make and model, processor, computer identifier, its network addresses, and so on. </p> <note>The `Vanara.DirectoryServices.ADsComputer` object is not implemented by the LDAP ADSI provider. For more information, see ADSI Objects of LDAP.</note>
[Vanara.DirectoryServices.ADsComputerOperations](https://github.com/dahall/Vanara/search?l=C%23&q=ADsComputerOperations) | The `Vanara.DirectoryServices.ADsComputerOperations` class exposes methods for retrieving the status of a computer over a network and to enable remote shutdown. Directory service providers may choose to implement this class to support basic system administration over a network through ADSI.
[Vanara.DirectoryServices.ADsContainer&lt;T&gt;](https://github.com/dahall/Vanara/search?l=C%23&q=ADsContainer) | <p> The `Vanara.DirectoryServices.ADsContainer&lt;T&gt;` class enables an ADSI container object to create, delete, and manage contained ADSI objects. Container objects represent hierarchical directory trees, such as in a file system, and to organize the directory hierarchy. </p> <p> You can use the `Vanara.DirectoryServices.ADsContainer&lt;T&gt;` class to either enumerate contained objects or manage their lifecycle. An example would be to recursively navigate a directory tree. By querying the `Vanara.DirectoryServices.ADsContainer&lt;T&gt;` class on an ADSI object, you can determine if the object has any children. If the interface is not supported, the object is a leaf. Otherwise, it is a container. You can continue this process for the newly found container objects. To create, copy, or delete an object, send the request to the container object to perform the task. </p>
[Vanara.DirectoryServices.ADsContainer&lt;T&gt;](https://github.com/dahall/Vanara/search?l=C%23&q=ADsContainer%26lt%3BT%26gt%3B) | <p> The `Vanara.DirectoryServices.ADsContainer` class enables an ADSI container object to create, delete, and manage contained ADSI objects. Container objects represent hierarchical directory trees, such as in a file system, and to organize the directory hierarchy. </p> <p> You can use the `Vanara.DirectoryServices.ADsContainer` class to either enumerate contained objects or manage their lifecycle. An example would be to recursively navigate a directory tree. By querying the `Vanara.DirectoryServices.ADsContainer` class on an ADSI object, you can determine if the object has any children. If the interface is not supported, the object is a leaf. Otherwise, it is a container. You can continue this process for the newly found container objects. To create, copy, or delete an object, send the request to the container object to perform the task. </p>
[Vanara.DirectoryServices.ADsDomain](https://github.com/dahall/Vanara/search?l=C%23&q=ADsDomain) | Designed to represent a network domain and manage domain accounts. Use this interface to determine whether the domain is actually a Workgroup, to specify how frequently a user must change a password, and to specify the maximum number of invalid password logins allowed before a lockout on the account is set. To change a password, call the <c>ChangePassword</c> method on an ADSI object that supports password controls. For example, to change the password of a user account, call IADsUser::ChangePassword on the user object.
[Vanara.DirectoryServices.ADsFileService](https://github.com/dahall/Vanara/search?l=C%23&q=ADsFileService) | <p> Designed for representing file services supported in the directory service. Through this interface you can discover and modify the maximum number of users simultaneously running a file service. </p> <p> To access active sessions or open resources used by the file service, you must go through the Operations property to retrieve sessions or resources. </p> <p>To examine the status of the file service or to perform service management operations, you use the Operations property.</p>
[Vanara.DirectoryServices.ADsFileServiceOperations](https://github.com/dahall/Vanara/search?l=C%23&q=ADsFileServiceOperations) | Extends the functionality, as exposed in the <c>ADsServiceOperations</c> interface, for managing the file service across a network. Specifically, it serves to maintain and manage open resources and active sessions of the file service.
Expand Down
2 changes: 1 addition & 1 deletion PInvoke/ActiveDS/Vanara.PInvoke.ActiveDS.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<PackageReleaseNotes>Currently implements:

Functions
ADsBuildEnumerator ADsBuildVarArrayInt ADsBuildVarArrayStr ADsEncodeBinaryData ADsEnumerateNext ADsFreeEnumerator ADsGetLastError ADsGetObject ADsOpenObject ADsSetLastError AllocADsMem AllocADsStr BinarySDToSecurityDescriptor ConvertSecurityDescriptorToSecDes FreeADsMem FreeADsStr ReallocADsMem ReallocADsStr SecurityDescriptorToBinarySD
ADsBuildEnumerator ADsBuildVarArrayInt ADsBuildVarArrayStr ADsEncodeBinaryData ADsEnumerateNext ADsFreeEnumerator ADsGetLastError ADsGetObject ADsOpenObject ADsSetLastError AllocADsMem AllocADsStr BinarySDToSecurityDescriptor FreeADsMem FreeADsStr ReallocADsMem ReallocADsStr SecurityDescriptorToBinarySD

Structures
ADSVALUE ADS_ATTR_DEF ADS_ATTR_INFO ADS_BACKLINK ADS_CASEIGNORE_LIST ADS_CLASS_DEF ADS_DN_WITH_BINARY ADS_DN_WITH_STRING ADS_EMAIL ADS_FAXNUMBER ADS_HOLD ADS_NETADDRESS ADS_NT_SECURITY_DESCRIPTOR ADS_OBJECT_INFO ADS_OCTET_LIST ADS_OCTET_STRING ADS_PATH ADS_POSTALADDRESS ADS_PROV_SPECIFIC ADS_REPLICAPOINTER ADS_SEARCHPREF_INFO ADS_SEARCH_COLUMN ADS_SEARCH_HANDLE ADS_SORTKEY ADS_TIMESTAMP ADS_TYPEDNAME ADS_VLV
Expand Down
2 changes: 1 addition & 1 deletion PInvoke/ActiveDS/pkgreadme.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ If you're still running into problems, file an [issue](https://github.com/dahall

Functions | Enumerations | Structures | Interfaces
--- | --- | --- | ---
ADsBuildEnumerator ADsBuildVarArrayInt ADsBuildVarArrayStr ADsEncodeBinaryData ADsEnumerateNext ADsFreeEnumerator ADsGetLastError ADsGetObject ADsOpenObject ADsSetLastError AllocADsMem AllocADsStr BinarySDToSecurityDescriptor ConvertSecurityDescriptorToSecDes FreeADsMem FreeADsStr ReallocADsMem ReallocADsStr SecurityDescriptorToBinarySD | ADS_ACEFLAG ADS_ACETYPE ADS_ATTR ADS_AUTHENTICATION ADS_CHASE_REFERRALS ADS_DEREF ADS_DISPLAY ADS_ESCAPE_MODE ADS_EXT ADS_FLAGTYPE ADS_FORMAT ADS_GROUP_TYPE ADS_JOB_STATUS ADS_NAME_INITTYPE ADS_NAME_TYPE ADS_OPTION ADS_PASSWORD_ENCODING ADS_PATHTYPE ADS_PREFERENCES ADS_PRINT_QUEUE_STATUS ADS_PROPERTY_OPERATION ADS_RIGHTS ADS_SCOPE ADS_SD_CONTROL ADS_SD_FORMAT ADS_SD_REVISION ADS_SEARCHPREF ADS_SECURITY_INFO ADS_SERVICE_ERR ADS_SERVICE_START ADS_SERVICE_STATUS ADS_SERVICE_TYPE ADS_SETTYPE ADS_STATUS ADS_SYSTEMFLAG ADS_USER_FLAG ADSI_DIALECT ADSTYPE PASSWORD_ATTR | ADS_SEARCH_HANDLE ADS_ATTR_DEF ADS_ATTR_INFO ADS_BACKLINK ADS_CASEIGNORE_LIST ADS_CLASS_DEF ADS_DN_WITH_BINARY ADS_DN_WITH_STRING ADS_EMAIL ADS_FAXNUMBER ADS_HOLD ADS_NETADDRESS ADS_NT_SECURITY_DESCRIPTOR ADS_OBJECT_INFO ADS_OCTET_LIST ADS_OCTET_STRING ADS_PATH ADS_POSTALADDRESS ADS_PROV_SPECIFIC ADS_REPLICAPOINTER ADS_SEARCH_COLUMN ADS_SEARCHPREF_INFO ADS_SORTKEY ADS_TIMESTAMP ADS_TYPEDNAME ADSVALUE ADS_VLV | IADs IADsAccessControlEntry IADsAccessControlList IADsAcl IADsADSystemInfo IADsBackLink IADsCaseIgnoreList IADsClass IADsCollection IADsComputer IADsComputerOperations IADsContainer IADsDeleteOps IADsDNWithBinary IADsDNWithString IADsDomain IADsEmail IADsExtension IADsFaxNumber IADsFileService IADsFileServiceOperations IADsFileShare IADsGroup IADsHold IADsLargeInteger IADsLocality IADsMembers IADsNamespaces IADsNameTranslate IADsNetAddress IADsO IADsObjectOptions IADsOctetList IADsOpenDSObject IADsOU IADsPath IADsPathname IADsPostalAddress IADsPrintJob IADsPrintJobOperations IADsPrintQueue IADsPrintQueueOperations IADsProperty IADsPropertyEntry IADsPropertyList IADsPropertyValue IADsPropertyValue2 IADsReplicaPointer IADsResource IADsSecurityDescriptor IADsSecurityUtility IADsService IADsServiceOperations IADsSession IADsSyntax IADsTimestamp IADsTypedName IADsUser IADsWinNTSystemInfo IDirectoryObject IDirectorySearch
ADsBuildEnumerator ADsBuildVarArrayInt ADsBuildVarArrayStr ADsEncodeBinaryData ADsEnumerateNext ADsFreeEnumerator ADsGetLastError ADsGetObject ADsOpenObject ADsSetLastError AllocADsMem AllocADsStr BinarySDToSecurityDescriptor FreeADsMem FreeADsStr ReallocADsMem ReallocADsStr SecurityDescriptorToBinarySD | ADS_ACEFLAG ADS_ACETYPE ADS_ATTR ADS_AUTHENTICATION ADS_CHASE_REFERRALS ADS_DEREF ADS_DISPLAY ADS_ESCAPE_MODE ADS_EXT ADS_FLAGTYPE ADS_FORMAT ADS_GROUP_TYPE ADS_JOB_STATUS ADS_NAME_INITTYPE ADS_NAME_TYPE ADS_OPTION ADS_PASSWORD_ENCODING ADS_PATHTYPE ADS_PREFERENCES ADS_PRINT_QUEUE_STATUS ADS_PROPERTY_OPERATION ADS_RIGHTS ADS_SCOPE ADS_SD_CONTROL ADS_SD_FORMAT ADS_SD_REVISION ADS_SEARCHPREF ADS_SECURITY_INFO ADS_SERVICE_ERR ADS_SERVICE_START ADS_SERVICE_STATUS ADS_SERVICE_TYPE ADS_SETTYPE ADS_STATUS ADS_SYSTEMFLAG ADS_USER_FLAG ADSI_DIALECT ADSTYPE PASSWORD_ATTR | ADS_SEARCH_HANDLE ADS_ATTR_DEF ADS_ATTR_INFO ADS_BACKLINK ADS_CASEIGNORE_LIST ADS_CLASS_DEF ADS_DN_WITH_BINARY ADS_DN_WITH_STRING ADS_EMAIL ADS_FAXNUMBER ADS_HOLD ADS_NETADDRESS ADS_NT_SECURITY_DESCRIPTOR ADS_OBJECT_INFO ADS_OCTET_LIST ADS_OCTET_STRING ADS_PATH ADS_POSTALADDRESS ADS_PROV_SPECIFIC ADS_REPLICAPOINTER ADS_SEARCH_COLUMN ADS_SEARCHPREF_INFO ADS_SORTKEY ADS_TIMESTAMP ADS_TYPEDNAME ADSVALUE ADS_VLV | IADs IADsAccessControlEntry IADsAccessControlList IADsAcl IADsADSystemInfo IADsBackLink IADsCaseIgnoreList IADsClass IADsCollection IADsComputer IADsComputerOperations IADsContainer IADsDeleteOps IADsDNWithBinary IADsDNWithString IADsDomain IADsEmail IADsExtension IADsFaxNumber IADsFileService IADsFileServiceOperations IADsFileShare IADsGroup IADsHold IADsLargeInteger IADsLocality IADsMembers IADsNamespaces IADsNameTranslate IADsNetAddress IADsO IADsObjectOptions IADsOctetList IADsOpenDSObject IADsOU IADsPath IADsPathname IADsPostalAddress IADsPrintJob IADsPrintJobOperations IADsPrintQueue IADsPrintQueueOperations IADsProperty IADsPropertyEntry IADsPropertyList IADsPropertyValue IADsPropertyValue2 IADsReplicaPointer IADsResource IADsSecurityDescriptor IADsSecurityUtility IADsService IADsServiceOperations IADsSession IADsSyntax IADsTimestamp IADsTypedName IADsUser IADsWinNTSystemInfo IDirectoryObject IDirectorySearch
2 changes: 1 addition & 1 deletion PInvoke/BITS/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,4 +74,4 @@ Native Class | Header | Managed Class
--- | --- | ---
[BackgroundCopyManager](https://www.google.com/search?num=5&q=BackgroundCopyManager+site%3Alearn.microsoft.com) | | [Vanara.PInvoke.BITS.BackgroundCopyManager](https://github.com/dahall/Vanara/search?l=C%23&q=BackgroundCopyManager)
[BITS](https://www.google.com/search?num=5&q=BITS+site%3Alearn.microsoft.com) | | [Vanara.PInvoke.BITS](https://github.com/dahall/Vanara/search?l=C%23&q=BITS)
[BitsEnumerator](https://www.google.com/search?num=5&q=BitsEnumerator+site%3Alearn.microsoft.com) | | [Vanara.PInvoke.BITS.BitsEnumerator](https://github.com/dahall/Vanara/search?l=C%23&q=BitsEnumerator)
[BitsEnumerator](https://www.google.com/search?num=5&q=BitsEnumerator+site%3Alearn.microsoft.com) | | [Vanara.PInvoke.BITS.BitsEnumerator](https://github.com/dahall/Vanara/search?l=C%23&q=BitsEnumerator%603)
8 changes: 4 additions & 4 deletions PInvoke/CfgMgr32/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,10 +173,10 @@ Native Enum | Header | Managed Enum
### Structures
Native Structure | Header | Managed Structure
--- | --- | ---
[&lt;Data&gt;e__FixedBuffer](https://www.google.com/search?num=5&q=<Data>e__FixedBuffer+site%3Alearn.microsoft.com) | | [Vanara.PInvoke.CfgMgr32.CM_NOTIFY_EVENT_DATA.UNION.DEVICEHANDLE.&lt;Data&gt;e__FixedBuffer](https://github.com/dahall/Vanara/search?l=C%23&q=&lt;Data&gt;e__FixedBuffer)
[&lt;iid&gt;e__FixedBuffer](https://www.google.com/search?num=5&q=<iid>e__FixedBuffer+site%3Alearn.microsoft.com) | | [Vanara.PInvoke.CfgMgr32.CM_NOTIFY_FILTER.UNION.&lt;iid&gt;e__FixedBuffer](https://github.com/dahall/Vanara/search?l=C%23&q=&lt;iid&gt;e__FixedBuffer)
[&lt;InstanceId&gt;e__FixedBuffer](https://www.google.com/search?num=5&q=<InstanceId>e__FixedBuffer+site%3Alearn.microsoft.com) | | [Vanara.PInvoke.CfgMgr32.CM_NOTIFY_EVENT_DATA.UNION.DEVICEINSTANCE.&lt;InstanceId&gt;e__FixedBuffer](https://github.com/dahall/Vanara/search?l=C%23&q=&lt;InstanceId&gt;e__FixedBuffer)
[&lt;SymbolicLink&gt;e__FixedBuffer](https://www.google.com/search?num=5&q=<SymbolicLink>e__FixedBuffer+site%3Alearn.microsoft.com) | | [Vanara.PInvoke.CfgMgr32.CM_NOTIFY_EVENT_DATA.UNION.DEVICEINTERFACE.&lt;SymbolicLink&gt;e__FixedBuffer](https://github.com/dahall/Vanara/search?l=C%23&q=&lt;SymbolicLink&gt;e__FixedBuffer)
[&lt;Data&gt;e__FixedBuffer](https://www.google.com/search?num=5&q=<Data>e__FixedBuffer+site%3Alearn.microsoft.com) | | [Vanara.PInvoke.CfgMgr32.CM_NOTIFY_EVENT_DATA.UNION.DEVICEHANDLE.&lt;Data&gt;e__FixedBuffer](https://github.com/dahall/Vanara/search?l=C%23&q=%26lt%3BData%26gt%3Be__FixedBuffer)
[&lt;iid&gt;e__FixedBuffer](https://www.google.com/search?num=5&q=<iid>e__FixedBuffer+site%3Alearn.microsoft.com) | | [Vanara.PInvoke.CfgMgr32.CM_NOTIFY_FILTER.UNION.&lt;iid&gt;e__FixedBuffer](https://github.com/dahall/Vanara/search?l=C%23&q=%26lt%3Biid%26gt%3Be__FixedBuffer)
[&lt;InstanceId&gt;e__FixedBuffer](https://www.google.com/search?num=5&q=<InstanceId>e__FixedBuffer+site%3Alearn.microsoft.com) | | [Vanara.PInvoke.CfgMgr32.CM_NOTIFY_EVENT_DATA.UNION.DEVICEINSTANCE.&lt;InstanceId&gt;e__FixedBuffer](https://github.com/dahall/Vanara/search?l=C%23&q=%26lt%3BInstanceId%26gt%3Be__FixedBuffer)
[&lt;SymbolicLink&gt;e__FixedBuffer](https://www.google.com/search?num=5&q=<SymbolicLink>e__FixedBuffer+site%3Alearn.microsoft.com) | | [Vanara.PInvoke.CfgMgr32.CM_NOTIFY_EVENT_DATA.UNION.DEVICEINTERFACE.&lt;SymbolicLink&gt;e__FixedBuffer](https://github.com/dahall/Vanara/search?l=C%23&q=%26lt%3BSymbolicLink%26gt%3Be__FixedBuffer)
[BUSNUMBER_DES](https://www.google.com/search?num=5&q=BUSNUMBER_DES+site%3Alearn.microsoft.com) | cfgmgr32.h | [Vanara.PInvoke.CfgMgr32.BUSNUMBER_DES](https://github.com/dahall/Vanara/search?l=C%23&q=BUSNUMBER_DES)
[BUSNUMBER_RANGE](https://www.google.com/search?num=5&q=BUSNUMBER_RANGE+site%3Alearn.microsoft.com) | cfgmgr32.h | [Vanara.PInvoke.CfgMgr32.BUSNUMBER_RANGE](https://github.com/dahall/Vanara/search?l=C%23&q=BUSNUMBER_RANGE)
[BUSNUMBER_RESOURCE](https://www.google.com/search?num=5&q=BUSNUMBER_RESOURCE+site%3Alearn.microsoft.com) | cfgmgr32.h | [Vanara.PInvoke.CfgMgr32.BUSNUMBER_RESOURCE](https://github.com/dahall/Vanara/search?l=C%23&q=BUSNUMBER_RESOURCE)
Expand Down
Loading

0 comments on commit 3da05fe

Please sign in to comment.