├── .editorconfig ├── .gitignore ├── .nuget ├── nuget.exe └── packages.config ├── AUTHORS.txt ├── Build ├── AssemblySharedInfo.cs ├── SharedSettings.StyleCop ├── SystemWrapper.snk └── psake-common.ps1 ├── GenerateFactories.bat ├── Images ├── SystemWrapper_128.png ├── SystemWrapper_128@2x.png └── SystemWrapper_logo.psd ├── LICENSE.txt ├── README.md ├── Rebracer.xml ├── SystemInterface ├── ActiveDirectory │ ├── IDirectoryEntry.cs │ ├── IDirectoryEntryFactory.cs │ ├── IDirectorySearcher.cs │ ├── IDirectorySearcherFactory.cs │ ├── IResultPropertyCollection.cs │ ├── IResultPropertyValueCollection.cs │ ├── ISearchResult.cs │ └── ISearchResultCollection.cs ├── Attributes │ └── GenerateFactoryAttribute.cs ├── Collections │ └── Specialized │ │ ├── INameValueCollection.cs │ │ └── INameValueCollectionFactory.cs ├── Configuration │ ├── IConfiguration.cs │ └── IConfigurationManager.cs ├── Data │ ├── DataTable │ │ ├── IDataTable.cs │ │ └── IDataTableFactory.cs │ └── SqlClient │ │ ├── ISqlCommand.cs │ │ ├── ISqlCommandFactory.cs │ │ ├── ISqlConnection.cs │ │ ├── ISqlConnectionFactory.cs │ │ ├── ISqlDataAdapter.cs │ │ ├── ISqlDataAdapterFactory.cs │ │ ├── ISqlDataReader.cs │ │ └── ISqlParameterCollection.cs ├── Diagnostics │ ├── IFileVersionInfo.cs │ ├── IFileVersionInfoFactory.cs │ ├── IProcess.cs │ ├── IProcessStartInfo.cs │ ├── IStopwatch.cs │ └── ITraceSource.cs ├── Globalization │ └── ICultureInfo.cs ├── IAppDomain.cs ├── IConsole.cs ├── IDateTime.cs ├── IEnvironment.cs ├── IO │ ├── Compression │ │ ├── IDeflateStream.cs │ │ ├── IDeflateStreamFactory.cs │ │ ├── IZipArchive.cs │ │ ├── IZipArchiveEntry.cs │ │ ├── IZipArchiveFactory.cs │ │ └── IZipFile.cs │ ├── IBinaryReader.cs │ ├── IBinaryWriter.cs │ ├── IDirectory.Net45.cs │ ├── IDirectory.cs │ ├── IDirectoryInfo.cs │ ├── IDirectoryInfoFactory.cs │ ├── IFile.cs │ ├── IFileInfo.cs │ ├── IFileInfoFactory.cs │ ├── IFileStream.cs │ ├── IFileStreamFactory.cs │ ├── IFileSystemWatcher.cs │ ├── IFileSystemWatcherFactory.cs │ ├── IMemoryStream.cs │ ├── IMemoryStreamFactory.cs │ ├── IPath.cs │ ├── IStream.cs │ ├── IStreamReader.cs │ ├── IStreamReaderFactory.cs │ ├── IStreamWriter.cs │ ├── IStreamWriterFactory.cs │ └── ITextReader.cs ├── IStaticWrapper.cs ├── IVersion.cs ├── IWrapper.cs ├── Microsoft.Win32 │ ├── IAccessTheRegistry.cs │ ├── IRegistry.cs │ ├── IRegistryKey.cs │ └── SafeHandles │ │ ├── ISafeFileHandle.cs │ │ └── ISafeRegistryHandle.cs ├── Net │ ├── IHttpWebRequest.cs │ ├── IHttpWebRequestFactory.cs │ ├── IHttpWebResponse.cs │ ├── IHttpWebResponseFactory.cs │ └── Mail │ │ └── ISmtpClient.cs ├── Properties │ └── AssemblyInfo.cs ├── Reflection │ ├── IAssembly.cs │ ├── IAssemblyFactory.cs │ └── IAssemblyName.cs ├── Runtime │ └── Serialization │ │ └── Json │ │ ├── IDataContractJSonSerializer.cs │ │ └── IDataContractJSonSerializerFactory.cs ├── Security │ ├── AccessControl │ │ ├── IDirectorySecurity.cs │ │ ├── IFileSecurity.cs │ │ └── IRegistrySecurity.cs │ └── Certificate │ │ ├── IKeyInfoX509Data.cs │ │ ├── IKeyInfoX509DataFactory.cs │ │ ├── IX509Certificate.cs │ │ ├── IX509Certificate2Collection.cs │ │ ├── IX509Certificate2CollectionFactory.cs │ │ ├── IX509CertificateFactory.cs │ │ ├── IX509CertificateFactoryWrap.cs │ │ ├── IX509Chain.cs │ │ ├── IX509ChainElement.cs │ │ ├── IX509ChainElementCollection.cs │ │ ├── IX509ChainElementCollectionFactory.cs │ │ ├── IX509ChainElementEnumerator.cs │ │ ├── IX509ChainElementFactory.cs │ │ ├── IX509ChainFactory.cs │ │ ├── IX509Store.cs │ │ └── IX509StoreFactory.cs ├── ServiceModel │ ├── IChannelWrap.cs │ ├── IChannelWrapFactory.cs │ └── IWebChannelWrapFactory.cs ├── Settings.StyleCop ├── SystemInterface.csproj ├── SystemInterface.nuspec ├── Threading │ └── IThread.cs ├── Timers │ ├── ITimer.cs │ └── ITimerFactory.cs ├── Web │ └── Script │ │ └── Serialization │ │ ├── IJavaScriptSerializer.cs │ │ └── IJavaScriptSerializerFactory.cs ├── Xml │ ├── IXComment.cs │ ├── IXCommentFactory.cs │ ├── IXDocument.cs │ ├── IXDocumentFactory.cs │ ├── IXmlDocument.cs │ ├── IXmlDocumentFactory.cs │ ├── IXmlSerializer.cs │ ├── IXmlSerializerFactory.cs │ ├── IXmlWriter.cs │ └── IXmlWriterFactory.cs └── packages.config ├── SystemWrapper.Samples ├── Data │ └── SqlClient │ │ ├── SqlConnectionSample.cs │ │ └── SqlDataReaderSample.cs ├── IO │ ├── DirectoryInfoSample.cs │ └── FileInfoSample.cs ├── Properties │ └── AssemblyInfo.cs ├── Reflection │ └── AssemblySample.cs ├── SystemWrapper.Samples.csproj └── packages.config ├── SystemWrapper.Tests ├── ActiveDirectory │ ├── DirectorySearcherSpecs.cs │ ├── GroupPrincipalFactory.cs │ ├── IGroupPrincipalFactory.cs │ └── PrincipalContextFactorySpecs.cs ├── AuthorAttribute.cs ├── Configuration │ └── ConfigurationManagerWrapTests.cs ├── Data │ └── SqlClient │ │ ├── SqlCommandFactoryTests.cs │ │ ├── SqlCommandWrapTests.cs │ │ ├── SqlConnectionFactoryTests.cs │ │ ├── SqlConnectionWrapTests.cs │ │ └── SqlDataReaderWrapTests.cs ├── Diagnostics │ ├── FileVersionInfoFactoryTests.cs │ ├── FileVersionInfoWrapTests.cs │ ├── ProcessStartInfoWrapTests.cs │ ├── ProcessWrapTests.cs │ ├── StopwatchWrapTests.cs │ └── TraceSourceWrapTests.cs ├── EnvironmentWrapTests.cs ├── IO │ ├── BinaryReaderWrapTests.cs │ ├── Compression │ │ ├── DeflateStreamFactoryTests.cs │ │ ├── DeflateStreamWrapTests.cs │ │ ├── ZipArchiveEntryWrapTests.cs │ │ ├── ZipArchiveFactoryTests.cs │ │ ├── ZipArchiveWrapTests.cs │ │ ├── ZipFileExtensionsTests.cs │ │ └── ZipFileWrapTests.cs │ ├── DirectoryInfoWrapTests.cs │ ├── DirectoryWrapTests.cs │ ├── StreamWriterFactoryTests.cs │ └── StreamWriterWrapTests.cs ├── Microsoft.Win32 │ └── RegistryWrapTests.cs ├── Net │ └── Mail │ │ └── SmtpClientWrapTests.cs ├── Properties │ └── AssemblyInfo.cs ├── Reflection │ ├── AssemblyNameWrapTests.cs │ └── AssemblyWrapTests.cs ├── Security │ └── Certificate │ │ ├── KeyInfoX509DataFactorySpecs.cs │ │ ├── X509Certificate2CollectionFactorySpecs.cs │ │ ├── X509ChainElementCollectionFactorySpecs.cs │ │ ├── X509ChainElementFactorySpecs.cs │ │ ├── X509ChainFactorySpecs.cs │ │ └── X509StoreFactorySpecs.cs ├── Settings.StyleCop ├── SystemWrapper.Tests.csproj ├── SystemWrapper.Tests.csproj.DotSettings ├── SystemWrapper.snk ├── TestData │ ├── BinaryReaderWrapTestData.txt │ ├── DeflateStreamWrapTestData.txt │ ├── Encoding_UTF8.zip │ └── Encoding_Windows1250.zip └── packages.config ├── SystemWrapper.gallio ├── SystemWrapper.sln ├── SystemWrapper.sln.DotSettings ├── SystemWrapper ├── ActiveDirectory │ ├── Contracts │ │ ├── IGroupPrincipal.cs │ │ ├── IPrincipalCollection.cs │ │ ├── IPrincipalContext.cs │ │ └── IPrincipalContextFactory.cs │ ├── DirectoryEntryFactory.cs │ ├── DirectoryEntryWrap.cs │ ├── DirectorySearcherFactory.cs │ ├── DirectorySearcherWrap.cs │ ├── GroupPrincipalWrap.cs │ ├── PrincipalCollection.cs │ ├── PrincipalContextFactory.cs │ ├── PrincipalContextWrap.cs │ ├── ResultPropertyCollectionWrap.cs │ ├── ResultPropertyValueCollectionWrap.cs │ ├── SearchResultCollectionWrap.cs │ └── SearchResultWrap.cs ├── AppDomainWrap.cs ├── Collections │ └── Specialized │ │ ├── NameValueCollectionFactory.cs │ │ └── NameValueCollectionWrap.cs ├── Configuration │ ├── ConfigurationManagerWrap.cs │ └── ConfigurationWrap.cs ├── ConsoleWrap.cs ├── CurrentCoverage.txt ├── Data │ ├── DataTable │ │ ├── DataTableFactory.cs │ │ └── DataTableWrap.cs │ └── SqlClient │ │ ├── SqlCommandFactory.cs │ │ ├── SqlCommandWrap.cs │ │ ├── SqlConnectionFactory.cs │ │ ├── SqlConnectionWrap.cs │ │ ├── SqlDataAdapterFactory.cs │ │ ├── SqlDataAdapterWrap.cs │ │ ├── SqlDataReaderWrap.cs │ │ └── SqlParameterCollectionWrap.cs ├── DateTimeWrap.cs ├── Diagnostics │ ├── FileVersionInfoFactory.cs │ ├── FileVersionInfoWrap.cs │ ├── ProcessStartInfoWrap.cs │ ├── ProcessWrap.cs │ ├── StopwatchWrap.cs │ └── TraceSourceWrap.cs ├── EnvironmentWrap.cs ├── Globalization │ └── CultureInfoWrap.cs ├── IO │ ├── BinaryReaderWrap.cs │ ├── BinaryWriterWrap.cs │ ├── Compression │ │ ├── DeflateStreamFactory.cs │ │ ├── DeflateStreamWrap.cs │ │ ├── ZipArchiveEntryWrap.cs │ │ ├── ZipArchiveFactory.cs │ │ ├── ZipArchiveWrap.cs │ │ ├── ZipFileExtensions.cs │ │ └── ZipFileWrap.cs │ ├── DirectoryInfoFactory.cs │ ├── DirectoryInfoWrap.cs │ ├── DirectoryWrap.Net45.cs │ ├── DirectoryWrap.cs │ ├── FileInfoFactory.cs │ ├── FileInfoWrap.cs │ ├── FileStreamWrap.cs │ ├── FileStreamWrapFactory.cs │ ├── FileSystemWatcherFactory.cs │ ├── FileSystemWatcherWrap.cs │ ├── FileWrap.cs │ ├── MemoryStreamFactory.cs │ ├── MemoryStreamWrap.cs │ ├── PathWrap.cs │ ├── StreamReaderWrap.cs │ ├── StreamReaderWrapFactory.Generated.cs │ ├── StreamWrap.cs │ ├── StreamWriterFactory.cs │ └── StreamWriterWrap.cs ├── Microsoft.Win32 │ ├── RegistryKeyWrap.cs │ ├── RegistryWrap.cs │ └── SafeHandles │ │ ├── SafeFileHandleWrap.cs │ │ └── SafeRegistryHandleWrap.cs ├── Net │ ├── HttpWebRequestWrap.cs │ ├── HttpWebRequestWrapFactory.Generated.cs │ ├── HttpWebResponseWrap.cs │ ├── HttpWebResponseWrapFactory.Generated.cs │ └── Mail │ │ └── SmtpClientWrap.cs ├── Properties │ └── AssemblyInfo.cs ├── Reflection │ ├── AssemblyFactory.cs │ ├── AssemblyNameWrap.cs │ └── AssemblyWrap.cs ├── Runtime │ └── Serialization │ │ └── Json │ │ ├── DataContractJsonSerializerWrap.cs │ │ └── DataContractJsonSerializerWrapFactory.Generated.cs ├── Security │ ├── AccessControl │ │ ├── DirectorySecurityWrap.cs │ │ ├── FileSecurityWrap.cs │ │ └── RegistrySecurityWrap.cs │ └── Certificate │ │ ├── KeyInfoX509DataFactory.cs │ │ ├── KeyInfoX509DataFactoryWrap.cs │ │ ├── KeyInfoX509DataWrap.cs │ │ ├── X509Certificate2CollectionFactory.cs │ │ ├── X509Certificate2CollectionWrap.cs │ │ ├── X509CertificateFactory.cs │ │ ├── X509CertificateFactoryWrap.cs │ │ ├── X509CertificateWrap.cs │ │ ├── X509ChainElementCollectionFactory.cs │ │ ├── X509ChainElementCollectionWrap.cs │ │ ├── X509ChainElementEnumeratorWrap.cs │ │ ├── X509ChainElementFactory.cs │ │ ├── X509ChainElementWrap.cs │ │ ├── X509ChainFactory.cs │ │ ├── X509ChainWrap.cs │ │ ├── X509StoreFactory.cs │ │ └── X509StoreWrap.cs ├── ServiceModel │ ├── ChannelWrap.cs │ ├── ChannelWrapFactory.cs │ └── WebChannelWrapFactory.cs ├── Settings.StyleCop ├── SystemWrapper.csproj ├── SystemWrapper.nuspec ├── SystemWrapperHelpers.cs ├── Threading │ └── ThreadWrap.cs ├── Timers │ ├── TimerFactory.cs │ └── TimerWrap.cs ├── VersionWrap.cs ├── Web │ └── Script │ │ └── Serialization │ │ ├── JavaScriptSerializerWrap.cs │ │ └── JavaScriptSerializerWrapFactory.Generated.cs ├── Xml │ ├── XCommentFactory.cs │ ├── XCommentWrap.cs │ ├── XDocumentFactory.cs │ ├── XDocumentWrap.cs │ ├── XmlDocumentFactory.cs │ ├── XmlDocumentWrap.cs │ ├── XmlSerializerFactory.cs │ ├── XmlSerializerWrap.cs │ ├── XmlWriterFactory.cs │ └── XmlWriterWrap.cs └── packages.config ├── appveyor.yml ├── nuget-package.bat └── psake-project.ps1 /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/.gitignore -------------------------------------------------------------------------------- /.nuget/nuget.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/.nuget/nuget.exe -------------------------------------------------------------------------------- /.nuget/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/.nuget/packages.config -------------------------------------------------------------------------------- /AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/AUTHORS.txt -------------------------------------------------------------------------------- /Build/AssemblySharedInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/Build/AssemblySharedInfo.cs -------------------------------------------------------------------------------- /Build/SharedSettings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/Build/SharedSettings.StyleCop -------------------------------------------------------------------------------- /Build/SystemWrapper.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/Build/SystemWrapper.snk -------------------------------------------------------------------------------- /Build/psake-common.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/Build/psake-common.ps1 -------------------------------------------------------------------------------- /GenerateFactories.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/GenerateFactories.bat -------------------------------------------------------------------------------- /Images/SystemWrapper_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/Images/SystemWrapper_128.png -------------------------------------------------------------------------------- /Images/SystemWrapper_128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/Images/SystemWrapper_128@2x.png -------------------------------------------------------------------------------- /Images/SystemWrapper_logo.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/Images/SystemWrapper_logo.psd -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/README.md -------------------------------------------------------------------------------- /Rebracer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/Rebracer.xml -------------------------------------------------------------------------------- /SystemInterface/ActiveDirectory/IDirectoryEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/ActiveDirectory/IDirectoryEntry.cs -------------------------------------------------------------------------------- /SystemInterface/ActiveDirectory/IDirectoryEntryFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/ActiveDirectory/IDirectoryEntryFactory.cs -------------------------------------------------------------------------------- /SystemInterface/ActiveDirectory/IDirectorySearcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/ActiveDirectory/IDirectorySearcher.cs -------------------------------------------------------------------------------- /SystemInterface/ActiveDirectory/IDirectorySearcherFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/ActiveDirectory/IDirectorySearcherFactory.cs -------------------------------------------------------------------------------- /SystemInterface/ActiveDirectory/IResultPropertyCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/ActiveDirectory/IResultPropertyCollection.cs -------------------------------------------------------------------------------- /SystemInterface/ActiveDirectory/IResultPropertyValueCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/ActiveDirectory/IResultPropertyValueCollection.cs -------------------------------------------------------------------------------- /SystemInterface/ActiveDirectory/ISearchResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/ActiveDirectory/ISearchResult.cs -------------------------------------------------------------------------------- /SystemInterface/ActiveDirectory/ISearchResultCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/ActiveDirectory/ISearchResultCollection.cs -------------------------------------------------------------------------------- /SystemInterface/Attributes/GenerateFactoryAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Attributes/GenerateFactoryAttribute.cs -------------------------------------------------------------------------------- /SystemInterface/Collections/Specialized/INameValueCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Collections/Specialized/INameValueCollection.cs -------------------------------------------------------------------------------- /SystemInterface/Collections/Specialized/INameValueCollectionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Collections/Specialized/INameValueCollectionFactory.cs -------------------------------------------------------------------------------- /SystemInterface/Configuration/IConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Configuration/IConfiguration.cs -------------------------------------------------------------------------------- /SystemInterface/Configuration/IConfigurationManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Configuration/IConfigurationManager.cs -------------------------------------------------------------------------------- /SystemInterface/Data/DataTable/IDataTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Data/DataTable/IDataTable.cs -------------------------------------------------------------------------------- /SystemInterface/Data/DataTable/IDataTableFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Data/DataTable/IDataTableFactory.cs -------------------------------------------------------------------------------- /SystemInterface/Data/SqlClient/ISqlCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Data/SqlClient/ISqlCommand.cs -------------------------------------------------------------------------------- /SystemInterface/Data/SqlClient/ISqlCommandFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Data/SqlClient/ISqlCommandFactory.cs -------------------------------------------------------------------------------- /SystemInterface/Data/SqlClient/ISqlConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Data/SqlClient/ISqlConnection.cs -------------------------------------------------------------------------------- /SystemInterface/Data/SqlClient/ISqlConnectionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Data/SqlClient/ISqlConnectionFactory.cs -------------------------------------------------------------------------------- /SystemInterface/Data/SqlClient/ISqlDataAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Data/SqlClient/ISqlDataAdapter.cs -------------------------------------------------------------------------------- /SystemInterface/Data/SqlClient/ISqlDataAdapterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Data/SqlClient/ISqlDataAdapterFactory.cs -------------------------------------------------------------------------------- /SystemInterface/Data/SqlClient/ISqlDataReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Data/SqlClient/ISqlDataReader.cs -------------------------------------------------------------------------------- /SystemInterface/Data/SqlClient/ISqlParameterCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Data/SqlClient/ISqlParameterCollection.cs -------------------------------------------------------------------------------- /SystemInterface/Diagnostics/IFileVersionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Diagnostics/IFileVersionInfo.cs -------------------------------------------------------------------------------- /SystemInterface/Diagnostics/IFileVersionInfoFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Diagnostics/IFileVersionInfoFactory.cs -------------------------------------------------------------------------------- /SystemInterface/Diagnostics/IProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Diagnostics/IProcess.cs -------------------------------------------------------------------------------- /SystemInterface/Diagnostics/IProcessStartInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Diagnostics/IProcessStartInfo.cs -------------------------------------------------------------------------------- /SystemInterface/Diagnostics/IStopwatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Diagnostics/IStopwatch.cs -------------------------------------------------------------------------------- /SystemInterface/Diagnostics/ITraceSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Diagnostics/ITraceSource.cs -------------------------------------------------------------------------------- /SystemInterface/Globalization/ICultureInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Globalization/ICultureInfo.cs -------------------------------------------------------------------------------- /SystemInterface/IAppDomain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/IAppDomain.cs -------------------------------------------------------------------------------- /SystemInterface/IConsole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/IConsole.cs -------------------------------------------------------------------------------- /SystemInterface/IDateTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/IDateTime.cs -------------------------------------------------------------------------------- /SystemInterface/IEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/IEnvironment.cs -------------------------------------------------------------------------------- /SystemInterface/IO/Compression/IDeflateStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/IO/Compression/IDeflateStream.cs -------------------------------------------------------------------------------- /SystemInterface/IO/Compression/IDeflateStreamFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/IO/Compression/IDeflateStreamFactory.cs -------------------------------------------------------------------------------- /SystemInterface/IO/Compression/IZipArchive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/IO/Compression/IZipArchive.cs -------------------------------------------------------------------------------- /SystemInterface/IO/Compression/IZipArchiveEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/IO/Compression/IZipArchiveEntry.cs -------------------------------------------------------------------------------- /SystemInterface/IO/Compression/IZipArchiveFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/IO/Compression/IZipArchiveFactory.cs -------------------------------------------------------------------------------- /SystemInterface/IO/Compression/IZipFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/IO/Compression/IZipFile.cs -------------------------------------------------------------------------------- /SystemInterface/IO/IBinaryReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/IO/IBinaryReader.cs -------------------------------------------------------------------------------- /SystemInterface/IO/IBinaryWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/IO/IBinaryWriter.cs -------------------------------------------------------------------------------- /SystemInterface/IO/IDirectory.Net45.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/IO/IDirectory.Net45.cs -------------------------------------------------------------------------------- /SystemInterface/IO/IDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/IO/IDirectory.cs -------------------------------------------------------------------------------- /SystemInterface/IO/IDirectoryInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/IO/IDirectoryInfo.cs -------------------------------------------------------------------------------- /SystemInterface/IO/IDirectoryInfoFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/IO/IDirectoryInfoFactory.cs -------------------------------------------------------------------------------- /SystemInterface/IO/IFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/IO/IFile.cs -------------------------------------------------------------------------------- /SystemInterface/IO/IFileInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/IO/IFileInfo.cs -------------------------------------------------------------------------------- /SystemInterface/IO/IFileInfoFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/IO/IFileInfoFactory.cs -------------------------------------------------------------------------------- /SystemInterface/IO/IFileStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/IO/IFileStream.cs -------------------------------------------------------------------------------- /SystemInterface/IO/IFileStreamFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/IO/IFileStreamFactory.cs -------------------------------------------------------------------------------- /SystemInterface/IO/IFileSystemWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/IO/IFileSystemWatcher.cs -------------------------------------------------------------------------------- /SystemInterface/IO/IFileSystemWatcherFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/IO/IFileSystemWatcherFactory.cs -------------------------------------------------------------------------------- /SystemInterface/IO/IMemoryStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/IO/IMemoryStream.cs -------------------------------------------------------------------------------- /SystemInterface/IO/IMemoryStreamFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/IO/IMemoryStreamFactory.cs -------------------------------------------------------------------------------- /SystemInterface/IO/IPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/IO/IPath.cs -------------------------------------------------------------------------------- /SystemInterface/IO/IStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/IO/IStream.cs -------------------------------------------------------------------------------- /SystemInterface/IO/IStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/IO/IStreamReader.cs -------------------------------------------------------------------------------- /SystemInterface/IO/IStreamReaderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/IO/IStreamReaderFactory.cs -------------------------------------------------------------------------------- /SystemInterface/IO/IStreamWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/IO/IStreamWriter.cs -------------------------------------------------------------------------------- /SystemInterface/IO/IStreamWriterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/IO/IStreamWriterFactory.cs -------------------------------------------------------------------------------- /SystemInterface/IO/ITextReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/IO/ITextReader.cs -------------------------------------------------------------------------------- /SystemInterface/IStaticWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/IStaticWrapper.cs -------------------------------------------------------------------------------- /SystemInterface/IVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/IVersion.cs -------------------------------------------------------------------------------- /SystemInterface/IWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/IWrapper.cs -------------------------------------------------------------------------------- /SystemInterface/Microsoft.Win32/IAccessTheRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Microsoft.Win32/IAccessTheRegistry.cs -------------------------------------------------------------------------------- /SystemInterface/Microsoft.Win32/IRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Microsoft.Win32/IRegistry.cs -------------------------------------------------------------------------------- /SystemInterface/Microsoft.Win32/IRegistryKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Microsoft.Win32/IRegistryKey.cs -------------------------------------------------------------------------------- /SystemInterface/Microsoft.Win32/SafeHandles/ISafeFileHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Microsoft.Win32/SafeHandles/ISafeFileHandle.cs -------------------------------------------------------------------------------- /SystemInterface/Microsoft.Win32/SafeHandles/ISafeRegistryHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Microsoft.Win32/SafeHandles/ISafeRegistryHandle.cs -------------------------------------------------------------------------------- /SystemInterface/Net/IHttpWebRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Net/IHttpWebRequest.cs -------------------------------------------------------------------------------- /SystemInterface/Net/IHttpWebRequestFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Net/IHttpWebRequestFactory.cs -------------------------------------------------------------------------------- /SystemInterface/Net/IHttpWebResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Net/IHttpWebResponse.cs -------------------------------------------------------------------------------- /SystemInterface/Net/IHttpWebResponseFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Net/IHttpWebResponseFactory.cs -------------------------------------------------------------------------------- /SystemInterface/Net/Mail/ISmtpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Net/Mail/ISmtpClient.cs -------------------------------------------------------------------------------- /SystemInterface/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SystemInterface/Reflection/IAssembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Reflection/IAssembly.cs -------------------------------------------------------------------------------- /SystemInterface/Reflection/IAssemblyFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Reflection/IAssemblyFactory.cs -------------------------------------------------------------------------------- /SystemInterface/Reflection/IAssemblyName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Reflection/IAssemblyName.cs -------------------------------------------------------------------------------- /SystemInterface/Runtime/Serialization/Json/IDataContractJSonSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Runtime/Serialization/Json/IDataContractJSonSerializer.cs -------------------------------------------------------------------------------- /SystemInterface/Runtime/Serialization/Json/IDataContractJSonSerializerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Runtime/Serialization/Json/IDataContractJSonSerializerFactory.cs -------------------------------------------------------------------------------- /SystemInterface/Security/AccessControl/IDirectorySecurity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Security/AccessControl/IDirectorySecurity.cs -------------------------------------------------------------------------------- /SystemInterface/Security/AccessControl/IFileSecurity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Security/AccessControl/IFileSecurity.cs -------------------------------------------------------------------------------- /SystemInterface/Security/AccessControl/IRegistrySecurity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Security/AccessControl/IRegistrySecurity.cs -------------------------------------------------------------------------------- /SystemInterface/Security/Certificate/IKeyInfoX509Data.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Security/Certificate/IKeyInfoX509Data.cs -------------------------------------------------------------------------------- /SystemInterface/Security/Certificate/IKeyInfoX509DataFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Security/Certificate/IKeyInfoX509DataFactory.cs -------------------------------------------------------------------------------- /SystemInterface/Security/Certificate/IX509Certificate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Security/Certificate/IX509Certificate.cs -------------------------------------------------------------------------------- /SystemInterface/Security/Certificate/IX509Certificate2Collection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Security/Certificate/IX509Certificate2Collection.cs -------------------------------------------------------------------------------- /SystemInterface/Security/Certificate/IX509Certificate2CollectionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Security/Certificate/IX509Certificate2CollectionFactory.cs -------------------------------------------------------------------------------- /SystemInterface/Security/Certificate/IX509CertificateFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Security/Certificate/IX509CertificateFactory.cs -------------------------------------------------------------------------------- /SystemInterface/Security/Certificate/IX509CertificateFactoryWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Security/Certificate/IX509CertificateFactoryWrap.cs -------------------------------------------------------------------------------- /SystemInterface/Security/Certificate/IX509Chain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Security/Certificate/IX509Chain.cs -------------------------------------------------------------------------------- /SystemInterface/Security/Certificate/IX509ChainElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Security/Certificate/IX509ChainElement.cs -------------------------------------------------------------------------------- /SystemInterface/Security/Certificate/IX509ChainElementCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Security/Certificate/IX509ChainElementCollection.cs -------------------------------------------------------------------------------- /SystemInterface/Security/Certificate/IX509ChainElementCollectionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Security/Certificate/IX509ChainElementCollectionFactory.cs -------------------------------------------------------------------------------- /SystemInterface/Security/Certificate/IX509ChainElementEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Security/Certificate/IX509ChainElementEnumerator.cs -------------------------------------------------------------------------------- /SystemInterface/Security/Certificate/IX509ChainElementFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Security/Certificate/IX509ChainElementFactory.cs -------------------------------------------------------------------------------- /SystemInterface/Security/Certificate/IX509ChainFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Security/Certificate/IX509ChainFactory.cs -------------------------------------------------------------------------------- /SystemInterface/Security/Certificate/IX509Store.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Security/Certificate/IX509Store.cs -------------------------------------------------------------------------------- /SystemInterface/Security/Certificate/IX509StoreFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Security/Certificate/IX509StoreFactory.cs -------------------------------------------------------------------------------- /SystemInterface/ServiceModel/IChannelWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/ServiceModel/IChannelWrap.cs -------------------------------------------------------------------------------- /SystemInterface/ServiceModel/IChannelWrapFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/ServiceModel/IChannelWrapFactory.cs -------------------------------------------------------------------------------- /SystemInterface/ServiceModel/IWebChannelWrapFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/ServiceModel/IWebChannelWrapFactory.cs -------------------------------------------------------------------------------- /SystemInterface/Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Settings.StyleCop -------------------------------------------------------------------------------- /SystemInterface/SystemInterface.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/SystemInterface.csproj -------------------------------------------------------------------------------- /SystemInterface/SystemInterface.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/SystemInterface.nuspec -------------------------------------------------------------------------------- /SystemInterface/Threading/IThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Threading/IThread.cs -------------------------------------------------------------------------------- /SystemInterface/Timers/ITimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Timers/ITimer.cs -------------------------------------------------------------------------------- /SystemInterface/Timers/ITimerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Timers/ITimerFactory.cs -------------------------------------------------------------------------------- /SystemInterface/Web/Script/Serialization/IJavaScriptSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Web/Script/Serialization/IJavaScriptSerializer.cs -------------------------------------------------------------------------------- /SystemInterface/Web/Script/Serialization/IJavaScriptSerializerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Web/Script/Serialization/IJavaScriptSerializerFactory.cs -------------------------------------------------------------------------------- /SystemInterface/Xml/IXComment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Xml/IXComment.cs -------------------------------------------------------------------------------- /SystemInterface/Xml/IXCommentFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Xml/IXCommentFactory.cs -------------------------------------------------------------------------------- /SystemInterface/Xml/IXDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Xml/IXDocument.cs -------------------------------------------------------------------------------- /SystemInterface/Xml/IXDocumentFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Xml/IXDocumentFactory.cs -------------------------------------------------------------------------------- /SystemInterface/Xml/IXmlDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Xml/IXmlDocument.cs -------------------------------------------------------------------------------- /SystemInterface/Xml/IXmlDocumentFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Xml/IXmlDocumentFactory.cs -------------------------------------------------------------------------------- /SystemInterface/Xml/IXmlSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Xml/IXmlSerializer.cs -------------------------------------------------------------------------------- /SystemInterface/Xml/IXmlSerializerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Xml/IXmlSerializerFactory.cs -------------------------------------------------------------------------------- /SystemInterface/Xml/IXmlWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Xml/IXmlWriter.cs -------------------------------------------------------------------------------- /SystemInterface/Xml/IXmlWriterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/Xml/IXmlWriterFactory.cs -------------------------------------------------------------------------------- /SystemInterface/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemInterface/packages.config -------------------------------------------------------------------------------- /SystemWrapper.Samples/Data/SqlClient/SqlConnectionSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper.Samples/Data/SqlClient/SqlConnectionSample.cs -------------------------------------------------------------------------------- /SystemWrapper.Samples/Data/SqlClient/SqlDataReaderSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper.Samples/Data/SqlClient/SqlDataReaderSample.cs -------------------------------------------------------------------------------- /SystemWrapper.Samples/IO/DirectoryInfoSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper.Samples/IO/DirectoryInfoSample.cs -------------------------------------------------------------------------------- /SystemWrapper.Samples/IO/FileInfoSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper.Samples/IO/FileInfoSample.cs -------------------------------------------------------------------------------- /SystemWrapper.Samples/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper.Samples/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SystemWrapper.Samples/Reflection/AssemblySample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper.Samples/Reflection/AssemblySample.cs -------------------------------------------------------------------------------- /SystemWrapper.Samples/SystemWrapper.Samples.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper.Samples/SystemWrapper.Samples.csproj -------------------------------------------------------------------------------- /SystemWrapper.Samples/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper.Samples/packages.config -------------------------------------------------------------------------------- /SystemWrapper.Tests/ActiveDirectory/DirectorySearcherSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper.Tests/ActiveDirectory/DirectorySearcherSpecs.cs -------------------------------------------------------------------------------- /SystemWrapper.Tests/ActiveDirectory/GroupPrincipalFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper.Tests/ActiveDirectory/GroupPrincipalFactory.cs -------------------------------------------------------------------------------- /SystemWrapper.Tests/ActiveDirectory/IGroupPrincipalFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper.Tests/ActiveDirectory/IGroupPrincipalFactory.cs -------------------------------------------------------------------------------- /SystemWrapper.Tests/ActiveDirectory/PrincipalContextFactorySpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper.Tests/ActiveDirectory/PrincipalContextFactorySpecs.cs -------------------------------------------------------------------------------- /SystemWrapper.Tests/AuthorAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper.Tests/AuthorAttribute.cs -------------------------------------------------------------------------------- /SystemWrapper.Tests/Configuration/ConfigurationManagerWrapTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper.Tests/Configuration/ConfigurationManagerWrapTests.cs -------------------------------------------------------------------------------- /SystemWrapper.Tests/Data/SqlClient/SqlCommandFactoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper.Tests/Data/SqlClient/SqlCommandFactoryTests.cs -------------------------------------------------------------------------------- /SystemWrapper.Tests/Data/SqlClient/SqlCommandWrapTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper.Tests/Data/SqlClient/SqlCommandWrapTests.cs -------------------------------------------------------------------------------- /SystemWrapper.Tests/Data/SqlClient/SqlConnectionFactoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper.Tests/Data/SqlClient/SqlConnectionFactoryTests.cs -------------------------------------------------------------------------------- /SystemWrapper.Tests/Data/SqlClient/SqlConnectionWrapTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper.Tests/Data/SqlClient/SqlConnectionWrapTests.cs -------------------------------------------------------------------------------- /SystemWrapper.Tests/Data/SqlClient/SqlDataReaderWrapTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper.Tests/Data/SqlClient/SqlDataReaderWrapTests.cs -------------------------------------------------------------------------------- /SystemWrapper.Tests/Diagnostics/FileVersionInfoFactoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper.Tests/Diagnostics/FileVersionInfoFactoryTests.cs -------------------------------------------------------------------------------- /SystemWrapper.Tests/Diagnostics/FileVersionInfoWrapTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper.Tests/Diagnostics/FileVersionInfoWrapTests.cs -------------------------------------------------------------------------------- /SystemWrapper.Tests/Diagnostics/ProcessStartInfoWrapTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper.Tests/Diagnostics/ProcessStartInfoWrapTests.cs -------------------------------------------------------------------------------- /SystemWrapper.Tests/Diagnostics/ProcessWrapTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper.Tests/Diagnostics/ProcessWrapTests.cs -------------------------------------------------------------------------------- /SystemWrapper.Tests/Diagnostics/StopwatchWrapTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper.Tests/Diagnostics/StopwatchWrapTests.cs -------------------------------------------------------------------------------- /SystemWrapper.Tests/Diagnostics/TraceSourceWrapTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper.Tests/Diagnostics/TraceSourceWrapTests.cs -------------------------------------------------------------------------------- /SystemWrapper.Tests/EnvironmentWrapTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper.Tests/EnvironmentWrapTests.cs -------------------------------------------------------------------------------- /SystemWrapper.Tests/IO/BinaryReaderWrapTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper.Tests/IO/BinaryReaderWrapTests.cs -------------------------------------------------------------------------------- /SystemWrapper.Tests/IO/Compression/DeflateStreamFactoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper.Tests/IO/Compression/DeflateStreamFactoryTests.cs -------------------------------------------------------------------------------- /SystemWrapper.Tests/IO/Compression/DeflateStreamWrapTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper.Tests/IO/Compression/DeflateStreamWrapTests.cs -------------------------------------------------------------------------------- /SystemWrapper.Tests/IO/Compression/ZipArchiveEntryWrapTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper.Tests/IO/Compression/ZipArchiveEntryWrapTests.cs -------------------------------------------------------------------------------- /SystemWrapper.Tests/IO/Compression/ZipArchiveFactoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper.Tests/IO/Compression/ZipArchiveFactoryTests.cs -------------------------------------------------------------------------------- /SystemWrapper.Tests/IO/Compression/ZipArchiveWrapTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper.Tests/IO/Compression/ZipArchiveWrapTests.cs -------------------------------------------------------------------------------- /SystemWrapper.Tests/IO/Compression/ZipFileExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper.Tests/IO/Compression/ZipFileExtensionsTests.cs -------------------------------------------------------------------------------- /SystemWrapper.Tests/IO/Compression/ZipFileWrapTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper.Tests/IO/Compression/ZipFileWrapTests.cs -------------------------------------------------------------------------------- /SystemWrapper.Tests/IO/DirectoryInfoWrapTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper.Tests/IO/DirectoryInfoWrapTests.cs -------------------------------------------------------------------------------- /SystemWrapper.Tests/IO/DirectoryWrapTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper.Tests/IO/DirectoryWrapTests.cs -------------------------------------------------------------------------------- /SystemWrapper.Tests/IO/StreamWriterFactoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper.Tests/IO/StreamWriterFactoryTests.cs -------------------------------------------------------------------------------- /SystemWrapper.Tests/IO/StreamWriterWrapTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper.Tests/IO/StreamWriterWrapTests.cs -------------------------------------------------------------------------------- /SystemWrapper.Tests/Microsoft.Win32/RegistryWrapTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper.Tests/Microsoft.Win32/RegistryWrapTests.cs -------------------------------------------------------------------------------- /SystemWrapper.Tests/Net/Mail/SmtpClientWrapTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper.Tests/Net/Mail/SmtpClientWrapTests.cs -------------------------------------------------------------------------------- /SystemWrapper.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SystemWrapper.Tests/Reflection/AssemblyNameWrapTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper.Tests/Reflection/AssemblyNameWrapTests.cs -------------------------------------------------------------------------------- /SystemWrapper.Tests/Reflection/AssemblyWrapTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper.Tests/Reflection/AssemblyWrapTests.cs -------------------------------------------------------------------------------- /SystemWrapper.Tests/Security/Certificate/KeyInfoX509DataFactorySpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper.Tests/Security/Certificate/KeyInfoX509DataFactorySpecs.cs -------------------------------------------------------------------------------- /SystemWrapper.Tests/Security/Certificate/X509Certificate2CollectionFactorySpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper.Tests/Security/Certificate/X509Certificate2CollectionFactorySpecs.cs -------------------------------------------------------------------------------- /SystemWrapper.Tests/Security/Certificate/X509ChainElementCollectionFactorySpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper.Tests/Security/Certificate/X509ChainElementCollectionFactorySpecs.cs -------------------------------------------------------------------------------- /SystemWrapper.Tests/Security/Certificate/X509ChainElementFactorySpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper.Tests/Security/Certificate/X509ChainElementFactorySpecs.cs -------------------------------------------------------------------------------- /SystemWrapper.Tests/Security/Certificate/X509ChainFactorySpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper.Tests/Security/Certificate/X509ChainFactorySpecs.cs -------------------------------------------------------------------------------- /SystemWrapper.Tests/Security/Certificate/X509StoreFactorySpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper.Tests/Security/Certificate/X509StoreFactorySpecs.cs -------------------------------------------------------------------------------- /SystemWrapper.Tests/Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper.Tests/Settings.StyleCop -------------------------------------------------------------------------------- /SystemWrapper.Tests/SystemWrapper.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper.Tests/SystemWrapper.Tests.csproj -------------------------------------------------------------------------------- /SystemWrapper.Tests/SystemWrapper.Tests.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper.Tests/SystemWrapper.Tests.csproj.DotSettings -------------------------------------------------------------------------------- /SystemWrapper.Tests/SystemWrapper.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper.Tests/SystemWrapper.snk -------------------------------------------------------------------------------- /SystemWrapper.Tests/TestData/BinaryReaderWrapTestData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper.Tests/TestData/BinaryReaderWrapTestData.txt -------------------------------------------------------------------------------- /SystemWrapper.Tests/TestData/DeflateStreamWrapTestData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper.Tests/TestData/DeflateStreamWrapTestData.txt -------------------------------------------------------------------------------- /SystemWrapper.Tests/TestData/Encoding_UTF8.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper.Tests/TestData/Encoding_UTF8.zip -------------------------------------------------------------------------------- /SystemWrapper.Tests/TestData/Encoding_Windows1250.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper.Tests/TestData/Encoding_Windows1250.zip -------------------------------------------------------------------------------- /SystemWrapper.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper.Tests/packages.config -------------------------------------------------------------------------------- /SystemWrapper.gallio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper.gallio -------------------------------------------------------------------------------- /SystemWrapper.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper.sln -------------------------------------------------------------------------------- /SystemWrapper.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper.sln.DotSettings -------------------------------------------------------------------------------- /SystemWrapper/ActiveDirectory/Contracts/IGroupPrincipal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/ActiveDirectory/Contracts/IGroupPrincipal.cs -------------------------------------------------------------------------------- /SystemWrapper/ActiveDirectory/Contracts/IPrincipalCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/ActiveDirectory/Contracts/IPrincipalCollection.cs -------------------------------------------------------------------------------- /SystemWrapper/ActiveDirectory/Contracts/IPrincipalContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/ActiveDirectory/Contracts/IPrincipalContext.cs -------------------------------------------------------------------------------- /SystemWrapper/ActiveDirectory/Contracts/IPrincipalContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/ActiveDirectory/Contracts/IPrincipalContextFactory.cs -------------------------------------------------------------------------------- /SystemWrapper/ActiveDirectory/DirectoryEntryFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/ActiveDirectory/DirectoryEntryFactory.cs -------------------------------------------------------------------------------- /SystemWrapper/ActiveDirectory/DirectoryEntryWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/ActiveDirectory/DirectoryEntryWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/ActiveDirectory/DirectorySearcherFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/ActiveDirectory/DirectorySearcherFactory.cs -------------------------------------------------------------------------------- /SystemWrapper/ActiveDirectory/DirectorySearcherWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/ActiveDirectory/DirectorySearcherWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/ActiveDirectory/GroupPrincipalWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/ActiveDirectory/GroupPrincipalWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/ActiveDirectory/PrincipalCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/ActiveDirectory/PrincipalCollection.cs -------------------------------------------------------------------------------- /SystemWrapper/ActiveDirectory/PrincipalContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/ActiveDirectory/PrincipalContextFactory.cs -------------------------------------------------------------------------------- /SystemWrapper/ActiveDirectory/PrincipalContextWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/ActiveDirectory/PrincipalContextWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/ActiveDirectory/ResultPropertyCollectionWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/ActiveDirectory/ResultPropertyCollectionWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/ActiveDirectory/ResultPropertyValueCollectionWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/ActiveDirectory/ResultPropertyValueCollectionWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/ActiveDirectory/SearchResultCollectionWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/ActiveDirectory/SearchResultCollectionWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/ActiveDirectory/SearchResultWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/ActiveDirectory/SearchResultWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/AppDomainWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/AppDomainWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/Collections/Specialized/NameValueCollectionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Collections/Specialized/NameValueCollectionFactory.cs -------------------------------------------------------------------------------- /SystemWrapper/Collections/Specialized/NameValueCollectionWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Collections/Specialized/NameValueCollectionWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/Configuration/ConfigurationManagerWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Configuration/ConfigurationManagerWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/Configuration/ConfigurationWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Configuration/ConfigurationWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/ConsoleWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/ConsoleWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/CurrentCoverage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/CurrentCoverage.txt -------------------------------------------------------------------------------- /SystemWrapper/Data/DataTable/DataTableFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Data/DataTable/DataTableFactory.cs -------------------------------------------------------------------------------- /SystemWrapper/Data/DataTable/DataTableWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Data/DataTable/DataTableWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/Data/SqlClient/SqlCommandFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Data/SqlClient/SqlCommandFactory.cs -------------------------------------------------------------------------------- /SystemWrapper/Data/SqlClient/SqlCommandWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Data/SqlClient/SqlCommandWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/Data/SqlClient/SqlConnectionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Data/SqlClient/SqlConnectionFactory.cs -------------------------------------------------------------------------------- /SystemWrapper/Data/SqlClient/SqlConnectionWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Data/SqlClient/SqlConnectionWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/Data/SqlClient/SqlDataAdapterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Data/SqlClient/SqlDataAdapterFactory.cs -------------------------------------------------------------------------------- /SystemWrapper/Data/SqlClient/SqlDataAdapterWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Data/SqlClient/SqlDataAdapterWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/Data/SqlClient/SqlDataReaderWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Data/SqlClient/SqlDataReaderWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/Data/SqlClient/SqlParameterCollectionWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Data/SqlClient/SqlParameterCollectionWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/DateTimeWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/DateTimeWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/Diagnostics/FileVersionInfoFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Diagnostics/FileVersionInfoFactory.cs -------------------------------------------------------------------------------- /SystemWrapper/Diagnostics/FileVersionInfoWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Diagnostics/FileVersionInfoWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/Diagnostics/ProcessStartInfoWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Diagnostics/ProcessStartInfoWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/Diagnostics/ProcessWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Diagnostics/ProcessWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/Diagnostics/StopwatchWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Diagnostics/StopwatchWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/Diagnostics/TraceSourceWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Diagnostics/TraceSourceWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/EnvironmentWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/EnvironmentWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/Globalization/CultureInfoWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Globalization/CultureInfoWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/IO/BinaryReaderWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/IO/BinaryReaderWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/IO/BinaryWriterWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/IO/BinaryWriterWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/IO/Compression/DeflateStreamFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/IO/Compression/DeflateStreamFactory.cs -------------------------------------------------------------------------------- /SystemWrapper/IO/Compression/DeflateStreamWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/IO/Compression/DeflateStreamWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/IO/Compression/ZipArchiveEntryWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/IO/Compression/ZipArchiveEntryWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/IO/Compression/ZipArchiveFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/IO/Compression/ZipArchiveFactory.cs -------------------------------------------------------------------------------- /SystemWrapper/IO/Compression/ZipArchiveWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/IO/Compression/ZipArchiveWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/IO/Compression/ZipFileExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/IO/Compression/ZipFileExtensions.cs -------------------------------------------------------------------------------- /SystemWrapper/IO/Compression/ZipFileWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/IO/Compression/ZipFileWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/IO/DirectoryInfoFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/IO/DirectoryInfoFactory.cs -------------------------------------------------------------------------------- /SystemWrapper/IO/DirectoryInfoWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/IO/DirectoryInfoWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/IO/DirectoryWrap.Net45.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/IO/DirectoryWrap.Net45.cs -------------------------------------------------------------------------------- /SystemWrapper/IO/DirectoryWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/IO/DirectoryWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/IO/FileInfoFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/IO/FileInfoFactory.cs -------------------------------------------------------------------------------- /SystemWrapper/IO/FileInfoWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/IO/FileInfoWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/IO/FileStreamWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/IO/FileStreamWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/IO/FileStreamWrapFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/IO/FileStreamWrapFactory.cs -------------------------------------------------------------------------------- /SystemWrapper/IO/FileSystemWatcherFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/IO/FileSystemWatcherFactory.cs -------------------------------------------------------------------------------- /SystemWrapper/IO/FileSystemWatcherWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/IO/FileSystemWatcherWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/IO/FileWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/IO/FileWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/IO/MemoryStreamFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/IO/MemoryStreamFactory.cs -------------------------------------------------------------------------------- /SystemWrapper/IO/MemoryStreamWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/IO/MemoryStreamWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/IO/PathWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/IO/PathWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/IO/StreamReaderWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/IO/StreamReaderWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/IO/StreamReaderWrapFactory.Generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/IO/StreamReaderWrapFactory.Generated.cs -------------------------------------------------------------------------------- /SystemWrapper/IO/StreamWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/IO/StreamWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/IO/StreamWriterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/IO/StreamWriterFactory.cs -------------------------------------------------------------------------------- /SystemWrapper/IO/StreamWriterWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/IO/StreamWriterWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/Microsoft.Win32/RegistryKeyWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Microsoft.Win32/RegistryKeyWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/Microsoft.Win32/RegistryWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Microsoft.Win32/RegistryWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/Microsoft.Win32/SafeHandles/SafeFileHandleWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Microsoft.Win32/SafeHandles/SafeFileHandleWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/Microsoft.Win32/SafeHandles/SafeRegistryHandleWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Microsoft.Win32/SafeHandles/SafeRegistryHandleWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/Net/HttpWebRequestWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Net/HttpWebRequestWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/Net/HttpWebRequestWrapFactory.Generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Net/HttpWebRequestWrapFactory.Generated.cs -------------------------------------------------------------------------------- /SystemWrapper/Net/HttpWebResponseWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Net/HttpWebResponseWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/Net/HttpWebResponseWrapFactory.Generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Net/HttpWebResponseWrapFactory.Generated.cs -------------------------------------------------------------------------------- /SystemWrapper/Net/Mail/SmtpClientWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Net/Mail/SmtpClientWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SystemWrapper/Reflection/AssemblyFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Reflection/AssemblyFactory.cs -------------------------------------------------------------------------------- /SystemWrapper/Reflection/AssemblyNameWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Reflection/AssemblyNameWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/Reflection/AssemblyWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Reflection/AssemblyWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/Runtime/Serialization/Json/DataContractJsonSerializerWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Runtime/Serialization/Json/DataContractJsonSerializerWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/Runtime/Serialization/Json/DataContractJsonSerializerWrapFactory.Generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Runtime/Serialization/Json/DataContractJsonSerializerWrapFactory.Generated.cs -------------------------------------------------------------------------------- /SystemWrapper/Security/AccessControl/DirectorySecurityWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Security/AccessControl/DirectorySecurityWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/Security/AccessControl/FileSecurityWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Security/AccessControl/FileSecurityWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/Security/AccessControl/RegistrySecurityWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Security/AccessControl/RegistrySecurityWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/Security/Certificate/KeyInfoX509DataFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Security/Certificate/KeyInfoX509DataFactory.cs -------------------------------------------------------------------------------- /SystemWrapper/Security/Certificate/KeyInfoX509DataFactoryWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Security/Certificate/KeyInfoX509DataFactoryWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/Security/Certificate/KeyInfoX509DataWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Security/Certificate/KeyInfoX509DataWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/Security/Certificate/X509Certificate2CollectionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Security/Certificate/X509Certificate2CollectionFactory.cs -------------------------------------------------------------------------------- /SystemWrapper/Security/Certificate/X509Certificate2CollectionWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Security/Certificate/X509Certificate2CollectionWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/Security/Certificate/X509CertificateFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Security/Certificate/X509CertificateFactory.cs -------------------------------------------------------------------------------- /SystemWrapper/Security/Certificate/X509CertificateFactoryWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Security/Certificate/X509CertificateFactoryWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/Security/Certificate/X509CertificateWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Security/Certificate/X509CertificateWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/Security/Certificate/X509ChainElementCollectionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Security/Certificate/X509ChainElementCollectionFactory.cs -------------------------------------------------------------------------------- /SystemWrapper/Security/Certificate/X509ChainElementCollectionWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Security/Certificate/X509ChainElementCollectionWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/Security/Certificate/X509ChainElementEnumeratorWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Security/Certificate/X509ChainElementEnumeratorWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/Security/Certificate/X509ChainElementFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Security/Certificate/X509ChainElementFactory.cs -------------------------------------------------------------------------------- /SystemWrapper/Security/Certificate/X509ChainElementWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Security/Certificate/X509ChainElementWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/Security/Certificate/X509ChainFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Security/Certificate/X509ChainFactory.cs -------------------------------------------------------------------------------- /SystemWrapper/Security/Certificate/X509ChainWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Security/Certificate/X509ChainWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/Security/Certificate/X509StoreFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Security/Certificate/X509StoreFactory.cs -------------------------------------------------------------------------------- /SystemWrapper/Security/Certificate/X509StoreWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Security/Certificate/X509StoreWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/ServiceModel/ChannelWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/ServiceModel/ChannelWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/ServiceModel/ChannelWrapFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/ServiceModel/ChannelWrapFactory.cs -------------------------------------------------------------------------------- /SystemWrapper/ServiceModel/WebChannelWrapFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/ServiceModel/WebChannelWrapFactory.cs -------------------------------------------------------------------------------- /SystemWrapper/Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Settings.StyleCop -------------------------------------------------------------------------------- /SystemWrapper/SystemWrapper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/SystemWrapper.csproj -------------------------------------------------------------------------------- /SystemWrapper/SystemWrapper.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/SystemWrapper.nuspec -------------------------------------------------------------------------------- /SystemWrapper/SystemWrapperHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/SystemWrapperHelpers.cs -------------------------------------------------------------------------------- /SystemWrapper/Threading/ThreadWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Threading/ThreadWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/Timers/TimerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Timers/TimerFactory.cs -------------------------------------------------------------------------------- /SystemWrapper/Timers/TimerWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Timers/TimerWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/VersionWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/VersionWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/Web/Script/Serialization/JavaScriptSerializerWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Web/Script/Serialization/JavaScriptSerializerWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/Web/Script/Serialization/JavaScriptSerializerWrapFactory.Generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Web/Script/Serialization/JavaScriptSerializerWrapFactory.Generated.cs -------------------------------------------------------------------------------- /SystemWrapper/Xml/XCommentFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Xml/XCommentFactory.cs -------------------------------------------------------------------------------- /SystemWrapper/Xml/XCommentWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Xml/XCommentWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/Xml/XDocumentFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Xml/XDocumentFactory.cs -------------------------------------------------------------------------------- /SystemWrapper/Xml/XDocumentWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Xml/XDocumentWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/Xml/XmlDocumentFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Xml/XmlDocumentFactory.cs -------------------------------------------------------------------------------- /SystemWrapper/Xml/XmlDocumentWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Xml/XmlDocumentWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/Xml/XmlSerializerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Xml/XmlSerializerFactory.cs -------------------------------------------------------------------------------- /SystemWrapper/Xml/XmlSerializerWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Xml/XmlSerializerWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/Xml/XmlWriterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Xml/XmlWriterFactory.cs -------------------------------------------------------------------------------- /SystemWrapper/Xml/XmlWriterWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/Xml/XmlWriterWrap.cs -------------------------------------------------------------------------------- /SystemWrapper/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/SystemWrapper/packages.config -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/appveyor.yml -------------------------------------------------------------------------------- /nuget-package.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/nuget-package.bat -------------------------------------------------------------------------------- /psake-project.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozefizso/SystemWrapper/HEAD/psake-project.ps1 --------------------------------------------------------------------------------