├── .dockerignore ├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── Common ├── Cdy.Spider.Common │ ├── Api │ │ ├── ApiBase.cs │ │ ├── ApiData.cs │ │ ├── ApiDevelopBase.cs │ │ └── ApiFactory.cs │ ├── Calculate │ │ └── CalculateExtend.cs │ ├── Cdy.Spider.Common.csproj │ ├── Channel │ │ ├── ChannelBase.cs │ │ ├── ChannelBase2.cs │ │ ├── ChannelData.cs │ │ ├── ChannelDevelopBase.cs │ │ ├── ChannelFactory.cs │ │ └── ChannelFactory2.cs │ ├── Context.cs │ ├── DataFormate.cs │ ├── Device │ │ ├── DeviceData.cs │ │ ├── DeviceDevelop.cs │ │ ├── DeviceProxyBase.cs │ │ ├── DeviceRuner.cs │ │ ├── NetworkDeviceProxyBase.cs │ │ ├── SerialDeviceProxyBase.cs │ │ ├── SpecifiedCharacterMessage.cs │ │ └── TagCollection.cs │ ├── DeviceAddressDataBase.cs │ ├── Driver │ │ ├── DriverData.cs │ │ ├── DriverDevelop.cs │ │ ├── DriverFactory.cs │ │ ├── DriverRunner.cs │ │ └── TimerDriverRunner.cs │ ├── Helper │ │ ├── AddressBlock.cs │ │ ├── AddressManager.cs │ │ ├── ByteTransformBase.cs │ │ ├── ByteTransformHelper.cs │ │ ├── DataExtend.cs │ │ ├── File.cs │ │ ├── RegularByteTransform.cs │ │ ├── ReverseBytesTransform.cs │ │ └── ReverseWordTransform.cs │ ├── Interface │ │ ├── IApi.cs │ │ ├── IApiDevelop.cs │ │ ├── IApiFactory.cs │ │ ├── IByteTransform.cs │ │ ├── ICommChannel.cs │ │ ├── ICommChannel2.cs │ │ ├── ICommChannelDevelop.cs │ │ ├── ICommChannelDevelopManager.cs │ │ ├── ICommChannelFactory.cs │ │ ├── ICommChannelFactory2.cs │ │ ├── ICommChannelRuntimeManager.cs │ │ ├── IDeviceDevelop.cs │ │ ├── IDeviceDevelopService.cs │ │ ├── IDeviceRuntime.cs │ │ ├── IDeviceRuntimeManager.cs │ │ ├── IDriverDevelop.cs │ │ ├── IDriverDevelopManager.cs │ │ ├── IDriverFactory.cs │ │ ├── IDriverRuntime.cs │ │ ├── IDriverRuntimeManager.cs │ │ ├── ILink.cs │ │ ├── ILinkDevelop.cs │ │ ├── ILinkFactory.cs │ │ ├── INetMessage.cs │ │ ├── INumberTag.cs │ │ ├── IRealDataService.cs │ │ ├── IRegistorConfigModel.cs │ │ ├── IScriptService.cs │ │ └── IValueConvert.cs │ ├── Link │ │ ├── LinkData.cs │ │ ├── LinkDevelopBase.cs │ │ ├── LinkFactory.cs │ │ └── LinkRunner.cs │ ├── Logger │ │ ├── ConsoleLogger.cs │ │ ├── ILog.cs │ │ └── LoggerService.cs │ ├── Logo │ │ ├── Author.txt │ │ ├── Logo.txt │ │ └── LogoHelper.cs │ ├── Md5Helper.cs │ ├── ServiceLocator.cs │ ├── Tags │ │ ├── BoolTag.cs │ │ ├── ByteTag.cs │ │ ├── DateTimeTag.cs │ │ ├── DoubleTag.cs │ │ ├── FloatTag.cs │ │ ├── HisDataMemory.cs │ │ ├── Int3PointTag.cs │ │ ├── IntPointTag.cs │ │ ├── IntTag.cs │ │ ├── LongPoint3Tag.cs │ │ ├── LongPointTag.cs │ │ ├── LongTag.cs │ │ ├── MemoryHelper.cs │ │ ├── ShortTag.cs │ │ ├── StringTag.cs │ │ ├── TagHisValueBuffer.cs │ │ ├── Tagbae.cs │ │ ├── UIntPoint3Tag.cs │ │ ├── UIntPointTag.cs │ │ ├── UIntTag.cs │ │ ├── ULongPointTag.cs │ │ ├── ULongPointTag3.cs │ │ ├── ULongTag.cs │ │ └── UShortTag.cs │ ├── ValueConvert │ │ ├── AdvanceConvert.cs │ │ ├── BitInvertConvert.cs │ │ ├── LinerConvert.cs │ │ ├── NumberToBitConvert.cs │ │ ├── StringFormateConvert.cs │ │ └── ValueConvertManager.cs │ └── WindowConsolHelper.cs └── Cdy.Spider.DevelopCommon │ ├── AssemblyInfo.cs │ ├── BoolInvert.cs │ ├── Cdy.Spider.DevelopCommon.csproj │ ├── Common │ ├── AutoCompleteBehavior.cs │ ├── CustomWindowBase.cs │ ├── DialogHelper.cs │ ├── PasswordControl.cs │ ├── RelayCommand.cs │ ├── Res.cs │ ├── ResMarkerExtension.cs │ └── WindowViewModelBase.cs │ ├── Control │ └── AutoComplete │ │ ├── BindingEvaluator.cs │ │ ├── Editors │ │ ├── AutoCompleteComboBox.cs │ │ ├── AutoCompleteTextBox.cs │ │ ├── IComboSuggestionProvider.cs │ │ ├── ISuggestionProvider.cs │ │ ├── SelectionAdapter.cs │ │ ├── SuggestionProvider.cs │ │ └── Themes │ │ │ └── Generic.xaml │ │ └── Enumerations.cs │ ├── Image │ ├── cancel.png │ ├── close.png │ ├── hidden.png │ ├── max.png │ ├── minus.png │ ├── ok.png │ ├── show.png │ └── spider.png │ ├── Properties │ ├── Resources.Designer.cs │ ├── Resources.resx │ └── Resources.zh-CN.resx │ ├── Themes │ ├── ControlStyle.xaml │ └── Generic.xaml │ └── ViewModel │ └── ViewModelBase.cs ├── Deploy └── SpiderDeployService │ ├── Controllers │ └── DeployServiceController.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── SpiderDeployService.csproj │ ├── appsettings.Development.json │ └── appsettings.json ├── Develop ├── Api │ ├── Cdy.Api.Mars.Develop │ │ ├── ApiConfigView.xaml │ │ ├── ApiConfigView.xaml.cs │ │ ├── ApiConfigViewModel.cs │ │ ├── AssemblyInfo.cs │ │ ├── Cdy.Api.Mars.Develop.csproj │ │ ├── Common │ │ │ ├── Res.cs │ │ │ └── ResMarkerExtension.cs │ │ ├── Image │ │ │ └── 文件夹.png │ │ ├── IndexConverter.cs │ │ ├── MarsApiDevelop.cs │ │ ├── MarsApiDevelopPush.cs │ │ ├── Properties │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ └── Resources.zh-CN.resx │ │ ├── TagBrowserView.xaml │ │ ├── TagBrowserView.xaml.cs │ │ ├── TagBrowserViewModel.cs │ │ └── Themes │ │ │ └── Generic.xaml │ ├── Cdy.Api.OpcUAServer.Develop │ │ ├── ApiConfigView.xaml │ │ ├── ApiConfigView.xaml.cs │ │ ├── ApiConfigViewModel.cs │ │ ├── AssemblyInfo.cs │ │ ├── Cdy.Api.OpcUAServer.Develop.csproj │ │ ├── Common │ │ │ ├── Res.cs │ │ │ └── ResMarkerExtension.cs │ │ ├── OpcUAServerDevelop.cs │ │ ├── Properties │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ └── Resources.zh-CN.resx │ │ └── Themes │ │ │ └── Generic.xaml │ ├── Cdy.Api.SpiderMqtt.Develop │ │ ├── ApiConfigView.xaml │ │ ├── ApiConfigView.xaml.cs │ │ ├── ApiConfigViewModel.cs │ │ ├── AssemblyInfo.cs │ │ ├── Cdy.Api.SpiderMqtt.Develop.csproj │ │ ├── Common │ │ │ ├── Res.cs │ │ │ └── ResMarkerExtension.cs │ │ ├── Properties │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ └── Resources.zh-CN.resx │ │ ├── SpiderMqttDevelop.cs │ │ └── Themes │ │ │ └── Generic.xaml │ └── Cdy.Api.SpiderTcp.Develop │ │ ├── ApiConfigView.xaml │ │ ├── ApiConfigView.xaml.cs │ │ ├── ApiConfigViewModel.cs │ │ ├── AssemblyInfo.cs │ │ ├── Cdy.Api.SpiderTcp.Develop.csproj │ │ ├── Common │ │ ├── Res.cs │ │ └── ResMarkerExtension.cs │ │ ├── Properties │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ └── Resources.zh-CN.resx │ │ ├── SpiderTcpDevelop.cs │ │ └── Themes │ │ └── Generic.xaml ├── Drivers │ ├── Cdy.Spider. Siemens.Develop │ │ ├── AssemblyInfo.cs │ │ ├── Cdy.Spider.Siemens.Develop.csproj │ │ ├── Common │ │ │ ├── Res.cs │ │ │ └── ResMarkerExtension.cs │ │ ├── Properties │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ └── Resources.zh-CN.resx │ │ ├── SiemensS7DriverDevelop.cs │ │ ├── SiemensS7DriverDevelopView.xaml │ │ ├── SiemensS7DriverDevelopView.xaml.cs │ │ ├── SiemensS7DriverDevelopViewModel.cs │ │ ├── SiemensS7RegistorConfigModel.cs │ │ └── Themes │ │ │ └── Generic.xaml │ ├── Cdy.Spider.AllenBradley.Develop │ │ ├── AllenBradleyCIPDriverDevelop.cs │ │ ├── AllenBradleyCIPDriverDevelopView.xaml │ │ ├── AllenBradleyCIPDriverDevelopView.xaml.cs │ │ ├── AllenBradleyCIPDriverDevelopViewModel.cs │ │ ├── AllenBradleyCIPRegistorConfigModel.cs │ │ ├── AssemblyInfo.cs │ │ ├── Cdy.Spider.AllenBradley.Develop.csproj │ │ ├── Common │ │ │ ├── Res.cs │ │ │ └── ResMarkerExtension.cs │ │ ├── Properties │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ └── Resources.zh-CN.resx │ │ └── Themes │ │ │ └── Generic.xaml │ ├── Cdy.Spider.BeckhoffDriver.Develop │ │ ├── AssemblyInfo.cs │ │ ├── BeckhoffAreasProvider.cs │ │ ├── BeckhoffDriverDevelop.cs │ │ ├── BeckhoffDriverDevelopView.xaml │ │ ├── BeckhoffDriverDevelopView.xaml.cs │ │ ├── BeckhoffDriverDevelopViewModel.cs │ │ ├── BeckhoffRegistorConfigModel.cs │ │ ├── Cdy.Spider.BeckhoffDriver.Develop.csproj │ │ ├── Common │ │ │ ├── Res.cs │ │ │ └── ResMarkerExtension.cs │ │ ├── Properties │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ └── Resources.zh-CN.resx │ │ └── Themes │ │ │ └── Generic.xaml │ ├── Cdy.Spider.CalculateDriver.Develop │ │ ├── AssemblyInfo.cs │ │ ├── CalculateDriverConfigModel.cs │ │ ├── CalculateDriverDevelop.cs │ │ ├── CalculateDriverDevelopView.xaml │ │ ├── CalculateDriverDevelopView.xaml.cs │ │ ├── CalculateDriverDevelopViewModel.cs │ │ ├── Cdy.Spider.CalculateDriver.Develop.csproj │ │ ├── Cdy.Spider.CalculateDriver.Develop.xml │ │ ├── Common │ │ │ ├── Res.cs │ │ │ └── ResMarkerExtension.cs │ │ ├── ExpressionEditView.xaml │ │ ├── ExpressionEditView.xaml.cs │ │ ├── ExpressionEditViewModel.cs │ │ ├── ParametersView.xaml │ │ ├── ParametersView.xaml.cs │ │ ├── ParametersViewModel.cs │ │ ├── Properties │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ └── Resources.zh-CN.resx │ │ ├── ScriptExpressConfigModel.cs │ │ ├── Tag.cs │ │ ├── Template │ │ │ ├── Command.xml │ │ │ └── Script.xml │ │ └── Themes │ │ │ └── Generic.xaml │ ├── Cdy.Spider.CalculateExpressEditor │ │ ├── AssemblyAttributes.cs │ │ ├── AvalonEditExtensions.cs │ │ ├── AvalonEditTextContainer.cs │ │ ├── BraceMatcherHighlightRenderer.cs │ │ ├── Cdy.Spider.CalculateExpressEditor.csproj │ │ ├── ClassificationHighlightColors.cs │ │ ├── CodeSnippet.cs │ │ ├── CodeTextEditor.Windows.cs │ │ ├── CodeTextEditor.cs │ │ ├── CommonEvent.cs │ │ ├── CommonProperty.cs │ │ ├── CompletionResult.cs │ │ ├── ContextActionsBulbContextMenu.cs │ │ ├── ContextActionsRenderer.cs │ │ ├── DocumentUtilities.cs │ │ ├── GlyphExtensions.cs │ │ ├── GlyphToImageSourceConverter.cs │ │ ├── IClassificationHighlightColors.cs │ │ ├── ICodeEditorCompletionProvider.cs │ │ ├── ICompletionDataEx.cs │ │ ├── IContextActionProvider.cs │ │ ├── LanguageServices │ │ │ ├── ChangeSignature │ │ │ │ ├── ChangeSignatureDialog.xaml │ │ │ │ └── ChangeSignatureDialog.xaml.cs │ │ │ ├── ExtractInterface │ │ │ │ ├── ExtractInterfaceDialog.xaml │ │ │ │ └── ExtractInterfaceDialog.xaml.cs │ │ │ └── PickMembers │ │ │ │ ├── PickMembersDialog.xaml │ │ │ │ └── PickMembersDialog.xaml.cs │ │ ├── MarkerMargin.cs │ │ ├── PropertyOptions.cs │ │ ├── QuickInfo │ │ │ └── DeferredQuickInfoContentProvider.cs │ │ ├── Resources │ │ │ ├── Glyphs.xaml │ │ │ └── Glyphs.xaml.cs │ │ ├── RoslynCodeEditor.cs │ │ ├── RoslynCodeEditorCompletionProvider.cs │ │ ├── RoslynCompletionData.cs │ │ ├── RoslynContextActionProvider.cs │ │ ├── RoslynHighlightingColorizer.cs │ │ ├── RoslynOverloadProvider.cs │ │ ├── RoslynPad.Editor.Shared.shproj │ │ ├── RoslynSemanticHighlighter.cs │ │ ├── SearchReplacePanel.cs │ │ ├── SnippetInfoService.cs │ │ ├── SnippetManager.cs │ │ ├── SymbolDisplayPartExtensions.cs │ │ ├── TaggedTextToTextBlockConverter.cs │ │ ├── TextMarker.cs │ │ ├── TextMarkerService.cs │ │ ├── TextMarkerToolTipProvider.cs │ │ ├── TextViewExtensions.cs │ │ ├── Themes │ │ │ └── Generic.xaml │ │ ├── WindowExtensions.cs │ │ └── WpfExtensions.cs │ ├── Cdy.Spider.CoapClient.Develop │ │ ├── AssemblyInfo.cs │ │ ├── Cdy.Spider.CoapClient.Develop.csproj │ │ ├── CoapClientChannelConfigView.xaml │ │ ├── CoapClientChannelConfigView.xaml.cs │ │ ├── CoapClientChannelConfigViewModel.cs │ │ ├── CoapClientChannelDevelop.cs │ │ ├── Common │ │ │ ├── Res.cs │ │ │ └── ResMarkerExtension.cs │ │ ├── Properties │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ └── Resources.zh-CN.resx │ │ └── Themes │ │ │ └── Generic.xaml │ ├── Cdy.Spider.CoapServer.Develop │ │ ├── AssemblyInfo.cs │ │ ├── Cdy.Spider.CoapServer.Develop.csproj │ │ ├── CoapServerChannelConfigView.xaml │ │ ├── CoapServerChannelConfigView.xaml.cs │ │ ├── CoapServerChannelConfigViewModel.cs │ │ ├── CoapServerChannelDevelop.cs │ │ ├── Common │ │ │ ├── Res.cs │ │ │ └── ResMarkerExtension.cs │ │ ├── Properties │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ └── Resources.zh-CN.resx │ │ └── Themes │ │ │ └── Generic.xaml │ ├── Cdy.Spider.CustomDriver.Develop │ │ ├── AssemblyInfo.cs │ │ ├── Cdy.Spider.CustomDriver.Develop.csproj │ │ ├── Cdy.Spider.CustomDriver.Develop.xml │ │ ├── Common │ │ │ ├── Res.cs │ │ │ └── ResMarkerExtension.cs │ │ ├── CustomDriverDevelop.cs │ │ ├── CustomDriverDevelopView.xaml │ │ ├── CustomDriverDevelopView.xaml.cs │ │ ├── CustomDriverDevelopViewModel.cs │ │ ├── Properties │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ └── Resources.zh-CN.resx │ │ ├── SaveAsFileDialogView.xaml │ │ ├── SaveAsFileDialogView.xaml.cs │ │ ├── SaveAsFileDialogViewModel.cs │ │ └── Themes │ │ │ └── Generic.xaml │ ├── Cdy.Spider.DeltaDriver.Develop │ │ ├── AssemblyInfo.cs │ │ ├── Cdy.Spider.DeltaDriver.Develop.csproj │ │ ├── Common │ │ │ ├── Res.cs │ │ │ └── ResMarkerExtension.cs │ │ ├── DeltaAreasProvider.cs │ │ ├── DeltaRegistorConfigModel.cs │ │ ├── DeltaSerialDriverDevelop.cs │ │ ├── DeltaSerialDriverDevelopView.xaml │ │ ├── DeltaSerialDriverDevelopView.xaml.cs │ │ ├── DeltaSerialDriverDevelopViewModel.cs │ │ ├── DeltaTcpDriverDevelop.cs │ │ ├── Properties │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ └── Resources.zh-CN.resx │ │ └── Themes │ │ │ └── Generic.xaml │ ├── Cdy.Spider.Fatek.Develop │ │ ├── AssemblyInfo.cs │ │ ├── Cdy.Spider.Fatek.Develop.csproj │ │ ├── CustomControl1.cs │ │ └── Themes │ │ │ └── Generic.xaml │ ├── Cdy.Spider.Fuji.Develop │ │ ├── AssemblyInfo.cs │ │ ├── Cdy.Spider.Fuji.Develop.csproj │ │ ├── Common │ │ │ ├── Res.cs │ │ │ └── ResMarkerExtension.cs │ │ ├── CustomControl1.cs │ │ ├── Properties │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ └── Resources.zh-CN.resx │ │ ├── SPB │ │ │ ├── FujiSPBDriverDevelop.cs │ │ │ ├── FujiSPBDriverDevelopView.xaml │ │ │ ├── FujiSPBDriverDevelopView.xaml.cs │ │ │ ├── FujiSPBDriverDevelopViewModel.cs │ │ │ ├── FujiSPBRegistorConfigModel.cs │ │ │ └── SPBAreasProvider.cs │ │ ├── SPH │ │ │ ├── FujiSPHDriverDevelop.cs │ │ │ ├── FujiSPHDriverDevelopView.xaml │ │ │ ├── FujiSPHDriverDevelopView.xaml.cs │ │ │ ├── FujiSPHDriverDevelopViewModel.cs │ │ │ ├── FujiSPHRegistorConfigModel.cs │ │ │ └── SPHAreasProvider.cs │ │ └── Themes │ │ │ └── Generic.xaml │ ├── Cdy.Spider.GEDriver.Develop │ │ ├── AssemblyInfo.cs │ │ ├── Cdy.Spider.GEDriver.Develop.csproj │ │ ├── Common │ │ │ ├── Res.cs │ │ │ └── ResMarkerExtension.cs │ │ ├── GEAreasProvider.cs │ │ ├── GEDriverDevelop.cs │ │ ├── GEDriverDevelopView.xaml │ │ ├── GEDriverDevelopView.xaml.cs │ │ ├── GEDriverDevelopViewModel.cs │ │ ├── GERegistorConfigModel.cs │ │ ├── Properties │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ └── Resources.zh-CN.resx │ │ └── Themes │ │ │ └── Generic.xaml │ ├── Cdy.Spider.IEC60870Driver.Develop │ │ ├── AssemblyInfo.cs │ │ ├── Cdy.Spider.IEC60870Driver.Develop.csproj │ │ ├── Common │ │ │ ├── Res.cs │ │ │ └── ResMarkerExtension.cs │ │ ├── IEC60870_101DriverDevelop.cs │ │ ├── IEC60870_101DriverDevelopView.xaml │ │ ├── IEC60870_101DriverDevelopView.xaml.cs │ │ ├── IEC60870_101DriverDevelopViewModel.cs │ │ ├── IEC60870_104DriverDevelop.cs │ │ ├── IEC60870_104DriverDevelopView.xaml │ │ ├── IEC60870_104DriverDevelopView.xaml.cs │ │ ├── IEC60870_104DriverDevelopViewModel.cs │ │ ├── IEC60870_104DriverRegistorConfigModel.cs │ │ ├── Properties │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ └── Resources.zh-CN.resx │ │ └── Themes │ │ │ └── Generic.xaml │ ├── Cdy.Spider.InovanceDriver.Develop │ │ ├── AssemblyInfo.cs │ │ ├── Cdy.Spider.InovanceDriver.Develop.csproj │ │ ├── Common │ │ │ ├── Res.cs │ │ │ └── ResMarkerExtension.cs │ │ ├── InovanceAreasProvider.cs │ │ ├── InovanceRegistorConfigModel.cs │ │ ├── InovanceSerialDriverDevelop.cs │ │ ├── InovanceSerialDriverDevelopView.xaml │ │ ├── InovanceSerialDriverDevelopView.xaml.cs │ │ ├── InovanceSerialDriverDevelopViewModel.cs │ │ ├── InovanceTcpDriverDevelop.cs │ │ ├── Properties │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ └── Resources.zh-CN.resx │ │ └── Themes │ │ │ └── Generic.xaml │ ├── Cdy.Spider.Keyence.Develop │ │ ├── AssemblyInfo.cs │ │ ├── Cdy.Spider.Keyence.Develop.csproj │ │ ├── CustomControl1.cs │ │ └── Themes │ │ │ └── Generic.xaml │ ├── Cdy.Spider.LSIS.Develop │ │ ├── AssemblyInfo.cs │ │ ├── Cdy.Spider.LSIS.Develop.csproj │ │ ├── CustomControl1.cs │ │ └── Themes │ │ │ └── Generic.xaml │ ├── Cdy.Spider.LinkDriver.Develop │ │ ├── Cdy.Spider.LinkDriver.Develop.csproj │ │ ├── Common │ │ │ ├── Res.cs │ │ │ └── ResMarkerExtension.cs │ │ ├── LinkDriverDevelop.cs │ │ └── Properties │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ └── Resources.zh-CN.resx │ ├── Cdy.Spider.MQTTClient.Develop │ │ ├── AssemblyInfo.cs │ │ ├── Cdy.Spider.MQTTClient.Develop.csproj │ │ ├── Common │ │ │ ├── Res.cs │ │ │ └── ResMarkerExtension.cs │ │ ├── MQTTClientChannelConfigView.xaml │ │ ├── MQTTClientChannelConfigView.xaml.cs │ │ ├── MQTTClientChannelConfigViewModel.cs │ │ ├── MQTTClientChannelDevelop.cs │ │ ├── Properties │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ └── Resources.zh-CN.resx │ │ └── Themes │ │ │ └── Generic.xaml │ ├── Cdy.Spider.MQTTServer.Develop │ │ ├── AssemblyInfo.cs │ │ ├── Cdy.Spider.MQTTServer.Develop.csproj │ │ ├── Common │ │ │ ├── Res.cs │ │ │ └── ResMarkerExtension.cs │ │ ├── MQTTServerChannelConfigView.xaml │ │ ├── MQTTServerChannelConfigView.xaml.cs │ │ ├── MQTTServerChannelConfigViewModel.cs │ │ ├── MQTTServerChannelDevelop.cs │ │ ├── Properties │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ └── Resources.zh-CN.resx │ │ └── Themes │ │ │ └── Generic.xaml │ ├── Cdy.Spider.Melsec.Develop │ │ ├── A1 │ │ │ ├── A1AreasProvider.cs │ │ │ ├── MelsecA1DriverDevelop.cs │ │ │ ├── MelsecA1DriverDevelopView.xaml │ │ │ ├── MelsecA1DriverDevelopView.xaml.cs │ │ │ ├── MelsecA1DriverDevelopViewModel.cs │ │ │ └── MelsecA1RegistorConfigModel.cs │ │ ├── A3 │ │ │ ├── A3AreasProvider.cs │ │ │ ├── MelsecA3DriverDevelop.cs │ │ │ ├── MelsecA3DriverDevelopView.xaml │ │ │ ├── MelsecA3DriverDevelopView.xaml.cs │ │ │ ├── MelsecA3DriverDevelopViewModel.cs │ │ │ └── MelsecA3RegistorConfigModel.cs │ │ ├── AssemblyInfo.cs │ │ ├── Cdy.Spider.Melsec.Develop.csproj │ │ ├── Common │ │ │ ├── Res.cs │ │ │ └── ResMarkerExtension.cs │ │ ├── Fx │ │ │ ├── FxAreasProvider.cs │ │ │ ├── MelsecFxDriverDevelop.cs │ │ │ ├── MelsecFxDriverDevelopView.xaml │ │ │ ├── MelsecFxDriverDevelopView.xaml.cs │ │ │ ├── MelsecFxDriverDevelopViewModel.cs │ │ │ └── MelsecFxRegistorConfigModel.cs │ │ ├── MC │ │ │ ├── MelsecMcDriverDevelop.cs │ │ │ ├── MelsecMcDriverDevelopView.xaml │ │ │ ├── MelsecMcDriverDevelopView.xaml.cs │ │ │ ├── MelsecMcDriverDevelopViewModel.cs │ │ │ └── MelsecMcRegistorConfigModel.cs │ │ ├── Properties │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ └── Resources.zh-CN.resx │ │ └── Themes │ │ │ └── Generic.xaml │ ├── Cdy.Spider.ModbusDriver.Develop │ │ ├── AssemblyInfo.cs │ │ ├── Cdy.Spider.ModbusDriver.Develop.csproj │ │ ├── Common │ │ │ ├── Res.cs │ │ │ └── ResMarkerExtension.cs │ │ ├── ModbusDriverDevelop.cs │ │ ├── ModbusDriverDevelopView.xaml │ │ ├── ModbusDriverDevelopView.xaml.cs │ │ ├── ModbusDriverDevelopViewModel.cs │ │ ├── ModbusMutiConfigView.xaml │ │ ├── ModbusMutiConfigView.xaml.cs │ │ ├── ModbusMutiConfigViewModel.cs │ │ ├── ModbusRegistorConfigModel.cs │ │ ├── ModbusSeriseDriverDevelop.cs │ │ ├── ModbusSeriseDriverDevelopView.xaml │ │ ├── ModbusSeriseDriverDevelopView.xaml.cs │ │ ├── ModbusSeriseDriverDevelopViewModel.cs │ │ ├── Properties │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ └── Resources.zh-CN.resx │ │ └── Themes │ │ │ └── Generic.xaml │ ├── Cdy.Spider.OmronFins.Develop │ │ ├── AssemblyInfo.cs │ │ ├── Cdy.Spider.OmronFins.Develop.csproj │ │ ├── Common │ │ │ ├── Res.cs │ │ │ └── ResMarkerExtension.cs │ │ ├── OmronFinsDriverDevelop.cs │ │ ├── OmronFinsDriverDevelopView.xaml │ │ ├── OmronFinsDriverDevelopView.xaml.cs │ │ ├── OmronFinsDriverDevelopViewModel.cs │ │ ├── OmronFinsRegistorConfigModel.cs │ │ ├── OmronHostLinkDriverDevelop.cs │ │ ├── OmronHostLinkDriverDevelopView.xaml │ │ ├── OmronHostLinkDriverDevelopView.xaml.cs │ │ ├── OmronHostLinkDriverDevelopViewModel.cs │ │ ├── Properties │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ └── Resources.zh-CN.resx │ │ └── Themes │ │ │ └── Generic.xaml │ ├── Cdy.Spider.OpcDA.Develop │ │ ├── AssemblyInfo.cs │ │ ├── Cdy.Spider.OpcDA.Develop.csproj │ │ ├── Common │ │ │ ├── Res.cs │ │ │ └── ResMarkerExtension.cs │ │ ├── OpcDAChannelConfigView.xaml │ │ ├── OpcDAChannelConfigView.xaml.cs │ │ ├── OpcDAChannelConfigViewModel.cs │ │ ├── OpcDAChannelDevelop.cs │ │ ├── Properties │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ └── Resources.zh-CN.resx │ │ ├── Themes │ │ │ └── Generic.xaml │ │ └── reload.png │ ├── Cdy.Spider.OpcDriver.Develop │ │ ├── AssemblyInfo.cs │ │ ├── Cdy.Spider.OpcDriver.Develop.csproj │ │ ├── Common │ │ │ ├── Res.cs │ │ │ └── ResMarkerExtension.cs │ │ ├── IndexConverter.cs │ │ ├── OpcBrowserView.xaml │ │ ├── OpcBrowserView.xaml.cs │ │ ├── OpcBrowserViewModel.cs │ │ ├── OpcDABrowserView.xaml │ │ ├── OpcDABrowserView.xaml.cs │ │ ├── OpcDABrowserViewModel.cs │ │ ├── OpcDriverConfigModel.cs │ │ ├── OpcDriverDevelop.cs │ │ ├── OpcDriverDevelopView.xaml │ │ ├── OpcDriverDevelopView.xaml.cs │ │ ├── OpcDriverDevelopViewModel.cs │ │ ├── OpcUaClient.cs │ │ ├── Properties │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ └── Resources.zh-CN.resx │ │ └── Themes │ │ │ └── Generic.xaml │ ├── Cdy.Spider.OpcUA.Develop │ │ ├── AssemblyInfo.cs │ │ ├── Cdy.Spider.OpcUA.Develop.csproj │ │ ├── Common │ │ │ ├── Res.cs │ │ │ └── ResMarkerExtension.cs │ │ ├── OpcUaChannelConfigView.xaml │ │ ├── OpcUaChannelConfigView.xaml.cs │ │ ├── OpcUaChannelConfigViewModel.cs │ │ ├── OpcUaChannelDevelop.cs │ │ ├── Properties │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ └── Resources.zh-CN.resx │ │ └── Themes │ │ │ └── Generic.xaml │ ├── Cdy.Spider.Panasonic.Develop │ │ ├── AssemblyInfo.cs │ │ ├── Cdy.Spider.Panasonic.Develop.csproj │ │ ├── CustomControl1.cs │ │ └── Themes │ │ │ └── Generic.xaml │ ├── Cdy.Spider.SerisePortClient.Develop │ │ ├── AssemblyInfo.cs │ │ ├── Cdy.Spider.SerisePortClient.Develop.csproj │ │ ├── Common │ │ │ ├── Res.cs │ │ │ └── ResMarkerExtension.cs │ │ ├── Properties │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ └── Resources.zh-CN.resx │ │ ├── SerisePortClientChannelDevelop.cs │ │ ├── SerisePortClientChannelView.xaml │ │ ├── SerisePortClientChannelView.xaml.cs │ │ ├── SerisePortClientChannelViewModel.cs │ │ └── Themes │ │ │ └── Generic.xaml │ ├── Cdy.Spider.SystemDriver.Develop │ │ ├── AssemblyInfo.cs │ │ ├── Cdy.Spider.SystemDriver.Develop.csproj │ │ ├── Common │ │ │ ├── Res.cs │ │ │ └── ResMarkerExtension.cs │ │ ├── Properties │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ └── Resources.zh-CN.resx │ │ ├── SystemDriverDevelop.cs │ │ ├── SystemDriverDevelopView.xaml │ │ ├── SystemDriverDevelopView.xaml.cs │ │ ├── SystemDriverDevelopViewModel.cs │ │ ├── SystemRegistorConfigModel.cs │ │ └── Themes │ │ │ └── Generic.xaml │ ├── Cdy.Spider.TcpClient.Develop │ │ ├── AssemblyInfo.cs │ │ ├── Cdy.Spider.TcpClient.Develop.csproj │ │ ├── Common │ │ │ ├── Res.cs │ │ │ └── ResMarkerExtension.cs │ │ ├── Properties │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ └── Resources.zh-CN.resx │ │ ├── TcpClientChannelConfigView.xaml │ │ ├── TcpClientChannelConfigView.xaml.cs │ │ ├── TcpClientChannelConfigViewModel.cs │ │ ├── TcpClientChannelDevelop.cs │ │ └── Themes │ │ │ └── Generic.xaml │ ├── Cdy.Spider.UdpClient.Develop │ │ ├── AssemblyInfo.cs │ │ ├── Cdy.Spider.UdpClient.Develop.csproj │ │ ├── Common │ │ │ ├── Res.cs │ │ │ └── ResMarkerExtension.cs │ │ ├── Properties │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ └── Resources.zh-CN.resx │ │ ├── Themes │ │ │ └── Generic.xaml │ │ ├── UdpClientChannelConfigView.xaml │ │ ├── UdpClientChannelConfigView.xaml.cs │ │ ├── UdpClientChannelConfigViewModel.cs │ │ └── UdpClientChannelDevelop.cs │ ├── Cdy.Spider.WebApiClient.Develop │ │ ├── AssemblyInfo.cs │ │ ├── Cdy.Spider.WebApiClient.Develop.csproj │ │ ├── Common │ │ │ ├── Res.cs │ │ │ └── ResMarkerExtension.cs │ │ ├── Properties │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ └── Resources.zh-CN.resx │ │ ├── Themes │ │ │ └── Generic.xaml │ │ ├── WebApiClientChannelConfigView.xaml │ │ ├── WebApiClientChannelConfigView.xaml.cs │ │ ├── WebApiClientChannelConfigViewModel.cs │ │ └── WebApiClientChannelDevelop.cs │ ├── Cdy.Spider.WebApiServer.Develop │ │ ├── AssemblyInfo.cs │ │ ├── Cdy.Spider.WebApiServer.Develop.csproj │ │ ├── Common │ │ │ ├── Res.cs │ │ │ └── ResMarkerExtension.cs │ │ ├── Properties │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ └── Resources.zh-CN.resx │ │ ├── Themes │ │ │ └── Generic.xaml │ │ ├── WebApiServerChannelConfigView.xaml │ │ ├── WebApiServerChannelConfigView.xaml.cs │ │ ├── WebApiServerChannelConfigViewModel.cs │ │ └── WebApiServerChannelDevelop.cs │ ├── ICSharpCode.AvalonEdit │ │ ├── AvalonEditCommands.cs │ │ ├── AvalonEditNuGetPackageIcon.png │ │ ├── CodeCompletion │ │ │ ├── CompletionList.cs │ │ │ ├── CompletionList.xaml │ │ │ ├── CompletionListBox.cs │ │ │ ├── CompletionWindow.cs │ │ │ ├── CompletionWindowBase.cs │ │ │ ├── ICompletionData.cs │ │ │ ├── IOverloadProvider.cs │ │ │ ├── InsightWindow.cs │ │ │ ├── InsightWindow.xaml │ │ │ ├── OverloadInsightWindow.cs │ │ │ └── OverloadViewer.cs │ │ ├── Document │ │ │ ├── DocumentChangeEventArgs.cs │ │ │ ├── DocumentChangeOperation.cs │ │ │ ├── DocumentLine.cs │ │ │ ├── DocumentLineTree.cs │ │ │ ├── DocumentTextWriter.cs │ │ │ ├── GapTextBuffer.cs │ │ │ ├── IDocument.cs │ │ │ ├── ILineTracker.cs │ │ │ ├── ITextAnchor.cs │ │ │ ├── ITextSource.cs │ │ │ ├── IUndoableOperation.cs │ │ │ ├── LineManager.cs │ │ │ ├── LineNode.cs │ │ │ ├── NewLineFinder.cs │ │ │ ├── OffsetChangeMap.cs │ │ │ ├── RopeTextSource.cs │ │ │ ├── SimpleSegment.cs │ │ │ ├── TextAnchor.cs │ │ │ ├── TextAnchorNode.cs │ │ │ ├── TextAnchorTree.cs │ │ │ ├── TextDocument.cs │ │ │ ├── TextDocumentWeakEventManager.cs │ │ │ ├── TextLocation.cs │ │ │ ├── TextSegment.cs │ │ │ ├── TextSegmentCollection.cs │ │ │ ├── TextSourceVersionProvider.cs │ │ │ ├── TextUtilities.cs │ │ │ ├── UndoOperationGroup.cs │ │ │ ├── UndoStack.cs │ │ │ └── WeakLineTracker.cs │ │ ├── Editing │ │ │ ├── AbstractMargin.cs │ │ │ ├── Caret.cs │ │ │ ├── CaretLayer.cs │ │ │ ├── CaretNavigationCommandHandler.cs │ │ │ ├── CaretWeakEventHandler.cs │ │ │ ├── DottedLineMargin.cs │ │ │ ├── DragDropException.cs │ │ │ ├── EditingCommandHandler.cs │ │ │ ├── EmptySelection.cs │ │ │ ├── IReadOnlySectionProvider.cs │ │ │ ├── ImeNativeWrapper.cs │ │ │ ├── ImeSupport.cs │ │ │ ├── LineNumberMargin.cs │ │ │ ├── MouseSelectionMode.cs │ │ │ ├── NoReadOnlySections.cs │ │ │ ├── RectangleSelection.cs │ │ │ ├── Selection.cs │ │ │ ├── SelectionColorizer.cs │ │ │ ├── SelectionLayer.cs │ │ │ ├── SelectionMouseHandler.cs │ │ │ ├── SelectionSegment.cs │ │ │ ├── SimpleSelection.cs │ │ │ ├── TextArea.cs │ │ │ ├── TextAreaAutomationPeer.cs │ │ │ ├── TextAreaDefaultInputHandlers.cs │ │ │ ├── TextAreaInputHandler.cs │ │ │ ├── TextRangeProvider.cs │ │ │ └── TextSegmentReadOnlySectionProvider.cs │ │ ├── Folding │ │ │ ├── FoldingElementGenerator.cs │ │ │ ├── FoldingManager.cs │ │ │ ├── FoldingMargin.cs │ │ │ ├── FoldingMarginMarker.cs │ │ │ ├── FoldingSection.cs │ │ │ ├── NewFolding.cs │ │ │ └── XmlFoldingStrategy.cs │ │ ├── Highlighting │ │ │ ├── DocumentHighlighter.cs │ │ │ ├── HighlightedInlineBuilder.cs │ │ │ ├── HighlightedLine.cs │ │ │ ├── HighlightedSection.cs │ │ │ ├── HighlightingBrush.cs │ │ │ ├── HighlightingColor.cs │ │ │ ├── HighlightingColorizer.cs │ │ │ ├── HighlightingDefinitionInvalidException.cs │ │ │ ├── HighlightingDefinitionTypeConverter.cs │ │ │ ├── HighlightingEngine.cs │ │ │ ├── HighlightingManager.cs │ │ │ ├── HighlightingRule.cs │ │ │ ├── HighlightingRuleSet.cs │ │ │ ├── HighlightingSpan.cs │ │ │ ├── HtmlClipboard.cs │ │ │ ├── HtmlOptions.cs │ │ │ ├── HtmlRichTextWriter.cs │ │ │ ├── IHighlighter.cs │ │ │ ├── IHighlightingDefinition.cs │ │ │ ├── IHighlightingDefinitionReferenceResolver.cs │ │ │ ├── Resources │ │ │ │ ├── ASPX.xshd │ │ │ │ ├── Boo.xshd │ │ │ │ ├── CPP-Mode.xshd │ │ │ │ ├── CSS-Mode.xshd │ │ │ │ ├── CSharp-Mode.xshd │ │ │ │ ├── Coco-Mode.xshd │ │ │ │ ├── HTML-Mode.xshd │ │ │ │ ├── Java-Mode.xshd │ │ │ │ ├── JavaScript-Mode.xshd │ │ │ │ ├── Json.xshd │ │ │ │ ├── MarkDown-Mode.xshd │ │ │ │ ├── MarkDownWithFontSize-Mode.xshd │ │ │ │ ├── ModeV1.xsd │ │ │ │ ├── ModeV2.xsd │ │ │ │ ├── PHP-Mode.xshd │ │ │ │ ├── Patch-Mode.xshd │ │ │ │ ├── PowerShell.xshd │ │ │ │ ├── Python-Mode.xshd │ │ │ │ ├── Resources.cs │ │ │ │ ├── TSQL-Mode.xshd │ │ │ │ ├── Tex-Mode.xshd │ │ │ │ ├── VB-Mode.xshd │ │ │ │ ├── XML-Mode.xshd │ │ │ │ └── XmlDoc.xshd │ │ │ ├── RichText.cs │ │ │ ├── RichTextColorizer.cs │ │ │ ├── RichTextModel.cs │ │ │ ├── RichTextModelWriter.cs │ │ │ └── Xshd │ │ │ │ ├── HighlightingLoader.cs │ │ │ │ ├── IXshdVisitor.cs │ │ │ │ ├── SaveXshdVisitor.cs │ │ │ │ ├── V1Loader.cs │ │ │ │ ├── V2Loader.cs │ │ │ │ ├── XmlHighlightingDefinition.cs │ │ │ │ ├── XshdColor.cs │ │ │ │ ├── XshdElement.cs │ │ │ │ ├── XshdImport.cs │ │ │ │ ├── XshdKeywords.cs │ │ │ │ ├── XshdProperty.cs │ │ │ │ ├── XshdReference.cs │ │ │ │ ├── XshdRule.cs │ │ │ │ ├── XshdRuleSet.cs │ │ │ │ ├── XshdSpan.cs │ │ │ │ └── XshdSyntaxDefinition.cs │ │ ├── ICSharpCode.AvalonEdit.csproj │ │ ├── ICSharpCode.AvalonEdit.snk │ │ ├── Indentation │ │ │ ├── CSharp │ │ │ │ ├── CSharpIndentationStrategy.cs │ │ │ │ ├── DocumentAccessor.cs │ │ │ │ └── IndentationReformatter.cs │ │ │ ├── DefaultIndentationStrategy.cs │ │ │ └── IIndentationStrategy.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── CodeAnalysisDictionary.xml │ │ ├── Rendering │ │ │ ├── BackgroundGeometryBuilder.cs │ │ │ ├── CollapsedLineSection.cs │ │ │ ├── ColorizingTransformer.cs │ │ │ ├── ColumnRulerRenderer.cs │ │ │ ├── CurrentLineHighlightRenderer.cs │ │ │ ├── DefaultTextRunTypographyProperties.cs │ │ │ ├── DocumentColorizingTransformer.cs │ │ │ ├── FormattedTextElement.cs │ │ │ ├── GlobalTextRunProperties.cs │ │ │ ├── HeightTree.cs │ │ │ ├── HeightTreeLineNode.cs │ │ │ ├── HeightTreeNode.cs │ │ │ ├── IBackgroundRenderer.cs │ │ │ ├── ITextRunConstructionContext.cs │ │ │ ├── ITextViewConnect.cs │ │ │ ├── IVisualLineTransformer.cs │ │ │ ├── InlineObjectRun.cs │ │ │ ├── Layer.cs │ │ │ ├── LayerPosition.cs │ │ │ ├── LinkElementGenerator.cs │ │ │ ├── MouseHoverLogic.cs │ │ │ ├── SimpleTextSource.cs │ │ │ ├── SingleCharacterElementGenerator.cs │ │ │ ├── TextLayer.cs │ │ │ ├── TextView.cs │ │ │ ├── TextViewCachedElements.cs │ │ │ ├── TextViewWeakEventManager.cs │ │ │ ├── VisualLine.cs │ │ │ ├── VisualLineConstructionStartEventArgs.cs │ │ │ ├── VisualLineElement.cs │ │ │ ├── VisualLineElementGenerator.cs │ │ │ ├── VisualLineElementTextRunProperties.cs │ │ │ ├── VisualLineLinkText.cs │ │ │ ├── VisualLineText.cs │ │ │ ├── VisualLineTextParagraphProperties.cs │ │ │ ├── VisualLineTextSource.cs │ │ │ ├── VisualLinesInvalidException.cs │ │ │ └── VisualYPosition.cs │ │ ├── Search │ │ │ ├── DropDownButton.cs │ │ │ ├── DropDownButton.xaml │ │ │ ├── ISearchStrategy.cs │ │ │ ├── Localization.cs │ │ │ ├── RegexSearchStrategy.cs │ │ │ ├── SearchCommands.cs │ │ │ ├── SearchPanel.cs │ │ │ ├── SearchPanel.xaml │ │ │ ├── SearchResultBackgroundRenderer.cs │ │ │ ├── SearchStrategyFactory.cs │ │ │ ├── next.png │ │ │ └── prev.png │ │ ├── Snippets │ │ │ ├── IActiveElement.cs │ │ │ ├── InsertionContext.cs │ │ │ ├── Snippet.cs │ │ │ ├── SnippetAnchorElement.cs │ │ │ ├── SnippetBoundElement.cs │ │ │ ├── SnippetCaretElement.cs │ │ │ ├── SnippetContainerElement.cs │ │ │ ├── SnippetElement.cs │ │ │ ├── SnippetEventArgs.cs │ │ │ ├── SnippetInputHandler.cs │ │ │ ├── SnippetReplaceableTextElement.cs │ │ │ ├── SnippetSelectionElement.cs │ │ │ └── SnippetTextElement.cs │ │ ├── TextEditor.cs │ │ ├── TextEditor.xaml │ │ ├── TextEditorAutomationPeer.cs │ │ ├── TextEditorComponent.cs │ │ ├── TextEditorOptions.cs │ │ ├── TextEditorWeakEventManager.cs │ │ ├── TextViewPosition.cs │ │ ├── Utils │ │ │ ├── Boxes.cs │ │ │ ├── CallbackOnDispose.cs │ │ │ ├── CharRope.cs │ │ │ ├── CompressingTreeList.cs │ │ │ ├── Constants.cs │ │ │ ├── DelayedEvents.cs │ │ │ ├── Deque.cs │ │ │ ├── DocumentPrinter.cs │ │ │ ├── Empty.cs │ │ │ ├── ExtensionMethods.cs │ │ │ ├── FileReader.cs │ │ │ ├── IFreezable.cs │ │ │ ├── ImmutableStack.cs │ │ │ ├── NullSafeCollection.cs │ │ │ ├── ObserveAddRemoveCollection.cs │ │ │ ├── PixelSnapHelpers.cs │ │ │ ├── PlainRichTextWriter.cs │ │ │ ├── PropertyChangedWeakEventManager.cs │ │ │ ├── RichTextWriter.cs │ │ │ ├── Rope.cs │ │ │ ├── RopeNode.cs │ │ │ ├── RopeTextReader.cs │ │ │ ├── StringSegment.cs │ │ │ ├── TextFormatterFactory.cs │ │ │ ├── ThrowUtil.cs │ │ │ ├── WeakEventManagerBase.cs │ │ │ └── Win32.cs │ │ └── themes │ │ │ ├── RightArrow.cur │ │ │ └── generic.xaml │ └── RoslynPad.Roslyn │ │ ├── AssemblyAttributes.cs │ │ ├── BraceMatching │ │ ├── AbstractBraceMatcher.cs │ │ ├── AbstractCSharpBraceMatcher.cs │ │ ├── AbstractDirectiveTriviaBraceMatcher.cs │ │ ├── BraceCharacterAndKind.cs │ │ ├── BraceMatchingService.cs │ │ ├── BraceMatchingServiceExtensions.cs │ │ ├── CSharpDirectiveTriviaBraceMatcher.cs │ │ ├── ExportBraceMatcherAttribute.cs │ │ ├── IBraceMatcher.cs │ │ ├── IBraceMatchingService.cs │ │ ├── LessThanGreaterThanBraceMatcher.cs │ │ ├── OpenCloseBraceBraceMatcher.cs │ │ ├── OpenCloseBracketBraceMatcher.cs │ │ ├── OpenCloseParenBraceMatcher.cs │ │ └── StringLiteralBraceMatcher.cs │ │ ├── CachedScriptMetadataResolver.cs │ │ ├── CodeActions │ │ └── CodeActionExtensions.cs │ │ ├── CodeFixes │ │ ├── CodeFix.cs │ │ ├── CodeFixCollection.cs │ │ ├── CodeFixService.cs │ │ ├── FirstDiagnosticResult.cs │ │ └── ICodeFixService.cs │ │ ├── CodeRefactorings │ │ ├── CodeRefactoring.cs │ │ ├── CodeRefactoringService.cs │ │ ├── ICodeRefactoringService.cs │ │ └── PasteTrackingService.cs │ │ ├── Completion │ │ ├── CompletionHelper.cs │ │ ├── CompletionItemExtensions.cs │ │ ├── Glyph.cs │ │ └── Providers │ │ │ ├── AbstractDirectivePathCompletionProvider.cs │ │ │ ├── AbstractLoadDirectiveCompletionProvider.cs │ │ │ ├── AbstractReferenceDirectiveCompletionProvider.cs │ │ │ ├── DirectiveCompletionProviderUtilities.cs │ │ │ ├── FileSystemCompletionHelper.cs │ │ │ ├── GlobalAssemblyCacheCompletionHelper.cs │ │ │ ├── LoadDirectiveCompletionProvider.cs │ │ │ └── ReferenceDirectiveCompletionProvider.cs │ │ ├── DiagnosticOptions.cs │ │ ├── Diagnostics │ │ ├── DiagnosticData.cs │ │ ├── DiagnosticDataLocation.cs │ │ ├── DiagnosticsService.cs │ │ ├── DiagnosticsUpdatedArgs.cs │ │ ├── DiagnosticsUpdatedKind.cs │ │ ├── IDiagnosticService.cs │ │ ├── UpdatedEventArgs.cs │ │ └── WorkspaceDiagnosticAnalyzerProviderService.cs │ │ ├── DocumentCreationArgs.cs │ │ ├── DocumentExtensions.cs │ │ ├── DocumentTrackingService.cs │ │ ├── IEditorCaretProvider.cs │ │ ├── IRoslynHost.cs │ │ ├── ISymbolExtensions.cs │ │ ├── LanguageServices │ │ ├── ChangeSignature │ │ │ ├── ChangeSignatureDialogViewModel.cs │ │ │ ├── ChangeSignatureOptionsService.cs │ │ │ ├── IChangeSignatureDialog.cs │ │ │ ├── ParameterConfiguration.cs │ │ │ └── SignatureChange.cs │ │ ├── ExtractInterface │ │ │ ├── ExtractInterfaceDialogViewModel.cs │ │ │ ├── ExtractInterfaceOptionsService.cs │ │ │ └── IExtractInterfaceDialog.cs │ │ ├── IRoslynDialog.cs │ │ └── PickMembers │ │ │ ├── PickMembersDialogViewModel.cs │ │ │ └── PickMembersService.cs │ │ ├── Navigation │ │ └── DocumentNavigationService.cs │ │ ├── NotificationObject.cs │ │ ├── QuickInfo │ │ ├── IQuickInfoProvider.cs │ │ └── QuickInfoProvider.cs │ │ ├── Rename │ │ └── RenameHelper.cs │ │ ├── RoslynHost.cs │ │ ├── RoslynHostReferences.cs │ │ ├── RoslynPad.Roslyn.csproj │ │ ├── RoslynWorkspace.cs │ │ ├── Scripting │ │ └── ScriptRunner.cs │ │ ├── SignatureHelp │ │ ├── AggregateSignatureHelpProvider.cs │ │ ├── ISignatureHelpProvider.cs │ │ ├── PythiaSignatureHelpProviderImplementation.cs │ │ ├── SignatureHelpItem.cs │ │ ├── SignatureHelpItems.cs │ │ ├── SignatureHelpParameter.cs │ │ ├── SignatureHelpProviderExtensions.cs │ │ ├── SignatureHelpTriggerInfo.cs │ │ └── SignatureHelpTriggerReason.cs │ │ ├── Snippets │ │ ├── SnippetInfo.cs │ │ └── SnippetInfoService.cs │ │ ├── WorkspaceExtensions.cs │ │ └── WorkspaceServices │ │ ├── AddMetadataReferenceCodeActionOperationFactoryWorkspaceService.cs │ │ ├── DocumentationProviderServiceFactory.cs │ │ └── SymbolRenamedCodeActionOperationFactory.cs ├── InSpiderDevelop │ ├── Api │ │ └── APIDocument.cs │ ├── Channel │ │ └── ChannelDocument.cs │ ├── DevelopManager.cs │ ├── Device │ │ ├── DeviceDocument.cs │ │ └── DeviceGroup.cs │ ├── Driver │ │ └── DriverDocument.cs │ ├── InSpiderDevelop.csproj │ ├── Link │ │ └── LinkDocument.cs │ └── MachineDocument.cs ├── InSpiderDevelopServer │ ├── GrpcDBService.cs │ ├── IMachineManager.cs │ ├── InSpiderDevelopServer.csproj │ ├── Properties │ │ └── launchSettings.json │ ├── Protos │ │ └── DevelopServer.proto │ ├── Security │ │ ├── Security.cs │ │ ├── SecurityManager.cs │ │ ├── SecuritySerise.cs │ │ ├── User.cs │ │ └── UserDocument.cs │ ├── Service.cs │ ├── Services │ │ └── DevelopServerService.cs │ ├── Startup.cs │ ├── appsettings.Development.json │ └── appsettings.json ├── InSpiderDevelopServerClientAPI │ ├── DevelopServer.proto │ ├── DevelopServiceHelper.cs │ └── InSpiderDevelopServerClientAPI.csproj ├── InSpiderDevelopWindow │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssemblyInfo.cs │ ├── Common │ │ ├── CustomWindowBase.cs │ │ ├── DialogHelper.cs │ │ ├── PasswordControl.cs │ │ ├── RelayCommand.cs │ │ ├── Res.cs │ │ ├── ResMarkerExtension.cs │ │ └── WindowViewModelBase.cs │ ├── Config │ │ ├── ApiDevelop.cfg │ │ ├── Calculate.cfg │ │ ├── ChannelDevelop.cfg │ │ ├── DriverDevelop.cfg │ │ └── LinkDevelop.cfg │ ├── Image │ │ ├── API.png │ │ ├── AllSelect.png │ │ ├── PROJECT.png │ │ ├── PublishAll.png │ │ ├── Spider.jpg │ │ ├── UserSettings.png │ │ ├── add.png │ │ ├── cancel.png │ │ ├── cellselect.png │ │ ├── close.png │ │ ├── computer.png │ │ ├── devices.png │ │ ├── idevices.png │ │ ├── link.png │ │ ├── log-out.png │ │ ├── max.png │ │ ├── minus.png │ │ ├── monitor.png │ │ ├── ok.png │ │ ├── publish.png │ │ ├── reload.png │ │ ├── remove.png │ │ ├── rowselect.png │ │ ├── save.png │ │ ├── server-security.png │ │ ├── settings.png │ │ ├── spider.ico │ │ ├── spider.png │ │ ├── spider2.ico │ │ ├── start.png │ │ ├── stop.png │ │ ├── user.png │ │ ├── 文件夹.png │ │ └── 登录.png │ ├── InSpiderDevelopWindow.csproj │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Resources.zh-CN.resx │ │ └── launchSettings.json │ ├── Themes │ │ ├── ControlStyle.xaml │ │ └── Generic.xaml │ ├── View │ │ ├── APIDetailView.xaml │ │ ├── APIDetailView.xaml.cs │ │ ├── AdvanceConvertView.xaml │ │ ├── AdvanceConvertView.xaml.cs │ │ ├── BitInverteConvertView.xaml │ │ ├── BitInverteConvertView.xaml.cs │ │ ├── Convert │ │ │ └── IndexConverter.cs │ │ ├── ConvertEditView.xaml │ │ ├── ConvertEditView.xaml.cs │ │ ├── DeviceDetailView.xaml │ │ ├── DeviceDetailView.xaml.cs │ │ ├── ImportModeSelectView.xaml │ │ ├── ImportModeSelectView.xaml.cs │ │ ├── LinearConvertView.xaml │ │ ├── LinearConvertView.xaml.cs │ │ ├── LinkDetailView.xaml │ │ ├── LinkDetailView.xaml.cs │ │ ├── LoginView.xaml │ │ ├── LoginView.xaml.cs │ │ ├── MonitorSettingView.xaml │ │ ├── MonitorSettingView.xaml.cs │ │ ├── NumberToBitConvertView.xaml │ │ ├── NumberToBitConvertView.xaml.cs │ │ ├── ServerUserEditorView.xaml │ │ ├── ServerUserEditorView.xaml.cs │ │ ├── ServerUserGroupDetailView.xaml │ │ ├── ServerUserGroupDetailView.xaml.cs │ │ ├── ShareDeviceSelectView.xaml │ │ ├── ShareDeviceSelectView.xaml.cs │ │ ├── SpiderInfoView.xaml │ │ ├── SpiderInfoView.xaml.cs │ │ ├── StringFormatConvertView.xaml │ │ └── StringFormatConvertView.xaml.cs │ └── ViewModel │ │ ├── APIDetailViewModel.cs │ │ ├── ConvertEditViewModel.cs │ │ ├── DeviceDetailViewModel.cs │ │ ├── DeviceRootViewModel.cs │ │ ├── IModeSwitch.cs │ │ ├── ImportModeSelectViewModel.cs │ │ ├── LinkDetailViewModel.cs │ │ ├── LoginViewModel.cs │ │ ├── MachineViewModel.cs │ │ ├── MainViewModel.cs │ │ ├── MonitorSettingViewModel.cs │ │ ├── ProjectItemViewModel.cs │ │ ├── Server │ │ ├── CurrentUserManager.cs │ │ ├── ServerSecurityTreeViewModel.cs │ │ ├── ServerUserEditorTreeViewModel.cs │ │ ├── ServerUserEditorViewModel.cs │ │ ├── ServerUserManagerTreeViewModel.cs │ │ └── ServerUserManagerViewModel.cs │ │ ├── ServerHelper.cs │ │ ├── ShareDeviceSelectViewModel.cs │ │ ├── SpiderInfoViewModel.cs │ │ ├── TreeItemViewModel.cs │ │ └── ViewModelBase.cs ├── InSpiderStudioServer │ ├── InSpiderStudioServer.csproj │ ├── Program.cs │ ├── Properties │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Resources.zh-CN.resx │ │ └── launchSettings.json │ ├── Res.cs │ └── spiderServer.ico └── Link │ ├── Cdy.Link.Mqtt.Develop │ ├── ApiConfigView.xaml │ ├── ApiConfigView.xaml.cs │ ├── ApiConfigViewModel.cs │ ├── AssemblyInfo.cs │ ├── Cdy.Link.Mqtt.Develop.csproj │ ├── Common │ │ ├── Res.cs │ │ └── ResMarkerExtension.cs │ ├── MqttLinkDevelop.cs │ ├── Properties │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ └── Resources.zh-CN.resx │ └── Themes │ │ └── Generic.xaml │ └── Cdy.Link.Tcp.Develop │ ├── ApiConfigView.xaml │ ├── ApiConfigView.xaml.cs │ ├── ApiConfigViewModel.cs │ ├── AssemblyInfo.cs │ ├── Cdy.Link.Tcp.Develop.csproj │ ├── Common │ ├── Res.cs │ └── ResMarkerExtension.cs │ ├── Properties │ ├── Resources.Designer.cs │ ├── Resources.resx │ └── Resources.zh-CN.resx │ ├── TcpLinkDevelop.cs │ └── Themes │ └── Generic.xaml ├── Doc ├── Images │ └── spider.png ├── Spider 做网关实现协议转化.docx ├── Spider 快速入门.docx ├── Spider级联功能.docx └── 自定义驱动帮助文档.docx ├── LICENSE ├── README.md ├── README.zh-CN.md ├── Run ├── API │ ├── Cdy.Api.Mars │ │ ├── Cdy.Api.Mars.csproj │ │ ├── MarsApiPushRuntime.cs │ │ └── MarsApiRuntime.cs │ ├── Cdy.Api.OpcUAServer │ │ ├── Cdy.Api.OpcUAServer.csproj │ │ ├── OPCServer.cs │ │ ├── OPCUAApiData.cs │ │ ├── OPCUAApiRuntime.cs │ │ ├── SpiderNodeManager.cs │ │ ├── SpiderOpcuaServer.cs │ │ └── SpiderTag.cs │ ├── Cdy.Api.SpiderMqtt │ │ ├── Cdy.Api.SpiderMqtt.csproj │ │ ├── MqttApiData.cs │ │ └── SpiderMqttApiRuntime.cs │ └── Cdy.Api.SpiderTcp │ │ ├── Cdy.Api.SpiderTcp.csproj │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── SpiderTcpApiRuntime.cs │ │ ├── TcpApiData.cs │ │ └── TcpClient.cs ├── Driver │ ├── Cdy.Spider.CalculateDriver │ │ ├── CalculateDriver.cs │ │ ├── CalculateDriverData.cs │ │ └── Cdy.Spider.CalculateDriver.csproj │ ├── Cdy.Spider.CoapClient │ │ ├── Cdy.Spider.CoapClient.csproj │ │ ├── CoapClientChannel.cs │ │ └── CoapClientChannelData.cs │ ├── Cdy.Spider.CoapServer │ │ ├── Cdy.Spider.CoapServer.csproj │ │ ├── CoapServerChannel.cs │ │ └── CoapServerChannelData.cs │ ├── Cdy.Spider.CustomDriver │ │ ├── Cdy.Spider.CustomDriver.csproj │ │ ├── Cdy.Spider.CustomDriver.xml │ │ ├── CustomDriver.cs │ │ └── CustomDriverData.cs │ ├── Cdy.Spider.IEC60870Driver │ │ ├── Cdy.Spider.IEC60870Driver.csproj │ │ ├── IEC60870_101_Driver.cs │ │ ├── IEC60870_101_DriverData.cs │ │ ├── IEC60870_104_Driver.cs │ │ ├── IEC60870_104_DriverData.cs │ │ └── Lib │ │ │ ├── ASDUParsingException.cs │ │ │ ├── BufferFrame.cs │ │ │ ├── CP16Time2a.cs │ │ │ ├── CP24Time2a.cs │ │ │ ├── CP32Time2a.cs │ │ │ ├── CP56Time2a.cs │ │ │ ├── CS101 │ │ │ ├── ASDU.cs │ │ │ ├── ApplicationLayerParameters.cs │ │ │ ├── BinaryCounterReading.cs │ │ │ ├── Bitstring32.cs │ │ │ ├── CS101Master.cs │ │ │ ├── CS101Slave.cs │ │ │ ├── CauseOfTransmission.cs │ │ │ ├── DoublePointInformation.cs │ │ │ ├── EndOfInitialization.cs │ │ │ ├── EventOfProtectionEquipment.cs │ │ │ ├── FileObjects.cs │ │ │ ├── FileServices.cs │ │ │ ├── InformationObject.cs │ │ │ ├── IntegratedTotals.cs │ │ │ ├── Master.cs │ │ │ ├── MeasuredValueNormalized.cs │ │ │ ├── MeasuredValueScaled.cs │ │ │ ├── MeasuredValueShort.cs │ │ │ ├── OutputCircuitInfo.cs │ │ │ ├── PackedOutputCircuitInfo.cs │ │ │ ├── PackedStartEventsOfProtectionEquipment.cs │ │ │ ├── ParameterMeasuredValues.cs │ │ │ ├── QualityDescriptor.cs │ │ │ ├── QualityDescriptorP.cs │ │ │ ├── ScaledValue.cs │ │ │ ├── SetpointCommandQualifier.cs │ │ │ ├── SetpointCommands.cs │ │ │ ├── SingleCommand.cs │ │ │ ├── SingleCommandQualifier.cs │ │ │ ├── SingleEvent.cs │ │ │ ├── SinglePointInformation.cs │ │ │ ├── Slave.cs │ │ │ ├── StartEvent.cs │ │ │ ├── StatusAndStatusChangeDetection.cs │ │ │ ├── StepPositionInformation.cs │ │ │ ├── SystemInformationCommands.cs │ │ │ └── TypeID.cs │ │ │ ├── CS104 │ │ │ ├── APCIParameters.cs │ │ │ ├── Connection.cs │ │ │ └── TlsSecurityInformation.cs │ │ │ ├── ConnectionException.cs │ │ │ ├── Frame.cs │ │ │ ├── LibraryCommon.cs │ │ │ ├── LinkLayer │ │ │ ├── LinkLayer.cs │ │ │ ├── PrimaryLinkLayer.cs │ │ │ ├── PrimaryLinkLayerBalanced.cs │ │ │ ├── PrimaryLinkLayerUnbalanced.cs │ │ │ ├── SecondaryLinkLayer.cs │ │ │ ├── SecondaryLinkLayerBalanced.cs │ │ │ ├── SecondaryLinkLayerUnbalanced.cs │ │ │ ├── SerialTransceiverFT12.cs │ │ │ ├── TcpClientVirtualSerialPort.cs │ │ │ └── TcpServerVirtualSerialPort.cs │ │ │ └── SystemUtils.cs │ ├── Cdy.Spider.LinkDriver │ │ ├── Cdy.Spider.LinkDriver.csproj │ │ ├── LinkDriver.cs │ │ └── LinkDriverData.cs │ ├── Cdy.Spider.MQTTClient │ │ ├── Cdy.Spider.MQTTClient.csproj │ │ ├── MQTTChannelData.cs │ │ └── MQTTClientChannel.cs │ ├── Cdy.Spider.MQTTServer │ │ ├── Cdy.Spider.MQTTServer.csproj │ │ ├── JsonServerStorage.cs │ │ ├── MQTTChannelData.cs │ │ ├── MQTTServer.cs │ │ ├── MQTTServerChannel.cs │ │ └── MQTTServerManager.cs │ ├── Cdy.Spider.ModbusDriver │ │ ├── Cdy.Spider.ModbusDriver.csproj │ │ ├── Modbus │ │ │ ├── IModbus.cs │ │ │ ├── ModbusAddress.cs │ │ │ ├── ModbusAsciiNetProxy.cs │ │ │ ├── ModbusAsciiProxy.cs │ │ │ ├── ModbusHelper.cs │ │ │ ├── ModbusInfo.cs │ │ │ ├── ModbusRtuNetProxy.cs │ │ │ ├── ModbusRtuProxy.cs │ │ │ ├── ModbusTcpMessage.cs │ │ │ ├── ModbusTcpNetProxy.cs │ │ │ └── SoftIncrementCount.cs │ │ ├── ModbusIpDriver.cs │ │ ├── ModbusIpDriverData.cs │ │ ├── ModbusSeriseDriver.cs │ │ ├── ModbusSeriseDriverData.cs │ │ └── NModbus4 │ │ │ ├── Data │ │ │ ├── DataStore.cs │ │ │ ├── DataStoreEventArgs.cs │ │ │ ├── DataStoreFactory.cs │ │ │ ├── DiscreteCollection.cs │ │ │ ├── IModbusMessageDataCollection.cs │ │ │ ├── ModbusDataCollection.cs │ │ │ ├── ModbusDataType.cs │ │ │ └── RegisterCollection.cs │ │ │ ├── Device │ │ │ ├── IModbusMaster.cs │ │ │ ├── IModbusSerialMaster.cs │ │ │ ├── ModbusDevice.cs │ │ │ ├── ModbusIpMaster.cs │ │ │ ├── ModbusMaster.cs │ │ │ ├── ModbusSerialMaster.cs │ │ │ └── TcpConnectionEventArgs.cs │ │ │ ├── Extensions │ │ │ └── Enron │ │ │ │ └── EnronModbus.cs │ │ │ ├── GlobalSuppressions.cs │ │ │ ├── IO │ │ │ ├── EmptyTransport.cs │ │ │ ├── IStreamResource.cs │ │ │ ├── ModbusAsciiTransport.cs │ │ │ ├── ModbusIpTransport.cs │ │ │ ├── ModbusRtuTransport.cs │ │ │ ├── ModbusSerialTransport.cs │ │ │ ├── ModbusTransport.cs │ │ │ ├── StreamResourceUtility.cs │ │ │ ├── TcpClientAdapter.cs │ │ │ └── UdpClientAdapter.cs │ │ │ ├── InvalidModbusRequestException.cs │ │ │ ├── Message │ │ │ ├── AbstractModbusMessage.cs │ │ │ ├── AbstractModbusMessageWithData.cs │ │ │ ├── DiagnosticsRequestResponse.cs │ │ │ ├── IModbusMessage.cs │ │ │ ├── IModbusRequest.cs │ │ │ ├── ModbusMessageFactory.cs │ │ │ ├── ModbusMessageImpl.cs │ │ │ ├── ReadCoilsInputsRequest.cs │ │ │ ├── ReadCoilsInputsResponse.cs │ │ │ ├── ReadHoldingInputRegistersRequest.cs │ │ │ ├── ReadHoldingInputRegistersResponse.cs │ │ │ ├── ReadWriteMultipleRegistersRequest.cs │ │ │ ├── SlaveExceptionResponse.cs │ │ │ ├── WriteMultipleCoilsRequest.cs │ │ │ ├── WriteMultipleCoilsResponse.cs │ │ │ ├── WriteMultipleRegistersRequest.cs │ │ │ ├── WriteMultipleRegistersResponse.cs │ │ │ ├── WriteSingleCoilRequestResponse.cs │ │ │ └── WriteSingleRegisterRequestResponse.cs │ │ │ ├── Modbus.cs │ │ │ ├── Resources.cs │ │ │ ├── SlaveException.cs │ │ │ ├── Unme.Common │ │ │ ├── DisposableUtility.cs │ │ │ └── SequenceUtility.cs │ │ │ └── Utility │ │ │ ├── DiscriminatedUnion.cs │ │ │ └── ModbusUtility.cs │ ├── Cdy.Spider.OpcClient │ │ ├── Cdy.Spider.OpcClient.csproj │ │ ├── OpcUAChannelData.cs │ │ ├── OpcUaChannel.cs │ │ ├── OpcUaClient.cs │ │ └── Properties │ │ │ └── launchSettings.json │ ├── Cdy.Spider.OpcDaClient │ │ ├── Cdy.Spider.OpcDaClient.csproj │ │ ├── OpcDAChannel.cs │ │ ├── OpcDAChannelData.cs │ │ └── Properties │ │ │ └── launchSettings.json │ ├── Cdy.Spider.OpcDriver │ │ ├── Cdy.Spider.OpcDriver.csproj │ │ ├── OpcDriver.cs │ │ └── OpcDriverData.cs │ ├── Cdy.Spider.SerisePortClient │ │ ├── Cdy.Spider.SerisePortClient.csproj │ │ ├── SerisePortClientChannel.cs │ │ └── SerisePortClientChannelData.cs │ ├── Cdy.Spider.SystemDriver │ │ ├── Cdy.Spider.SystemDriver.csproj │ │ ├── SystemDriver.cs │ │ └── SystemDriverData.cs │ ├── Cdy.Spider.TcpClient │ │ ├── Cdy.Spider.TcpClient.csproj │ │ ├── TcpClientChannel.cs │ │ └── TcpClientChannelData.cs │ ├── Cdy.Spider.UdpClient │ │ ├── Cdy.Spider.UdpClient.csproj │ │ ├── UdpClientChannel.cs │ │ └── UdpClientChannelData.cs │ ├── Cdy.Spider.WebApiClient │ │ ├── Cdy.Spider.WebApiClient.csproj │ │ ├── WebApiClientChannel.cs │ │ └── WebApiClientChannelData.cs │ ├── Cdy.Spider.WebApiServer │ │ ├── Cdy.Spider.WebApiServer.csproj │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── ServiceMapManager.cs │ │ ├── Startup.cs │ │ ├── WebApiServer.cs │ │ ├── WebApiServerChannel.cs │ │ ├── WebApiServerChannelData.cs │ │ └── WebApiServiceManager.cs │ ├── OPCDALib │ │ ├── OPCDALib.csproj │ │ ├── OpcComRcw │ │ │ ├── Ae │ │ │ │ ├── CATID_OPCAEServer10.cs │ │ │ │ ├── Constants.cs │ │ │ │ ├── FILETIME.cs │ │ │ │ ├── IOPCEventAreaBrowser.cs │ │ │ │ ├── IOPCEventServer.cs │ │ │ │ ├── IOPCEventServer2.cs │ │ │ │ ├── IOPCEventSink.cs │ │ │ │ ├── IOPCEventSubscriptionMgt.cs │ │ │ │ ├── IOPCEventSubscriptionMgt2.cs │ │ │ │ ├── ONEVENTSTRUCT.cs │ │ │ │ ├── OPCAEBROWSEDIRECTION.cs │ │ │ │ ├── OPCAEBROWSETYPE.cs │ │ │ │ ├── OPCCONDITIONSTATE.cs │ │ │ │ ├── OPCEVENTSERVERSTATE.cs │ │ │ │ └── OPCEVENTSERVERSTATUS.cs │ │ │ ├── AssemblyVersionInfo.cs │ │ │ ├── Batch │ │ │ │ ├── CATID_OPCBatchServer10.cs │ │ │ │ ├── CATID_OPCBatchServer20.cs │ │ │ │ ├── Constants.cs │ │ │ │ ├── EnumSets.cs │ │ │ │ ├── IEnumOPCBatchSummary.cs │ │ │ │ ├── IOPCBatchServer.cs │ │ │ │ ├── IOPCBatchServer2.cs │ │ │ │ ├── IOPCEnumerationSets.cs │ │ │ │ ├── OPCBATCHSUMMARY.cs │ │ │ │ ├── OPCBATCHSUMMARYFILTER.cs │ │ │ │ └── Properties.cs │ │ │ ├── Cmd │ │ │ │ ├── CATID_OPCCMDServer10.cs │ │ │ │ ├── Constants.cs │ │ │ │ ├── ControlCommand.cs │ │ │ │ ├── EventName.cs │ │ │ │ ├── IOPCComandCallback.cs │ │ │ │ ├── IOPCCommandExecution.cs │ │ │ │ ├── IOPCCommandInformation.cs │ │ │ │ ├── OpcCmdActionDefinition.cs │ │ │ │ ├── OpcCmdArgument.cs │ │ │ │ ├── OpcCmdArgumentDefinition.cs │ │ │ │ ├── OpcCmdBrowseFilter.cs │ │ │ │ ├── OpcCmdCommandDescription.cs │ │ │ │ ├── OpcCmdEventDefinition.cs │ │ │ │ ├── OpcCmdNamespaceDefinition.cs │ │ │ │ ├── OpcCmdStateChangeEvent.cs │ │ │ │ ├── OpcCmdStateDefinition.cs │ │ │ │ ├── OpcCmdStateTransition.cs │ │ │ │ ├── OpcCmdTargetElement.cs │ │ │ │ └── StateName.cs │ │ │ ├── Comn │ │ │ │ ├── CONNECTDATA.cs │ │ │ │ ├── IConnectionPoint.cs │ │ │ │ ├── IConnectionPointContainer.cs │ │ │ │ ├── IEnumConnectionPoints.cs │ │ │ │ ├── IEnumConnections.cs │ │ │ │ ├── IEnumGUID.cs │ │ │ │ ├── IEnumString.cs │ │ │ │ ├── IEnumUnknown.cs │ │ │ │ ├── IOPCCommon.cs │ │ │ │ ├── IOPCEnumGUID.cs │ │ │ │ ├── IOPCServerList.cs │ │ │ │ ├── IOPCServerList2.cs │ │ │ │ └── IOPCShutdown.cs │ │ │ ├── Da │ │ │ │ ├── CATID_OPCDAServer10.cs │ │ │ │ ├── CATID_OPCDAServer20.cs │ │ │ │ ├── CATID_OPCDAServer30.cs │ │ │ │ ├── CATID_XMLDAServer10.cs │ │ │ │ ├── Constants.cs │ │ │ │ ├── FILETIME.cs │ │ │ │ ├── IEnumOPCItemAttributes.cs │ │ │ │ ├── IOPCAsyncIO.cs │ │ │ │ ├── IOPCAsyncIO2.cs │ │ │ │ ├── IOPCAsyncIO3.cs │ │ │ │ ├── IOPCBrowse.cs │ │ │ │ ├── IOPCBrowseServerAddressSpace.cs │ │ │ │ ├── IOPCDataCallback.cs │ │ │ │ ├── IOPCGroupStateMgt.cs │ │ │ │ ├── IOPCGroupStateMgt2.cs │ │ │ │ ├── IOPCItemDeadbandMgt.cs │ │ │ │ ├── IOPCItemIO.cs │ │ │ │ ├── IOPCItemMgt.cs │ │ │ │ ├── IOPCItemProperties.cs │ │ │ │ ├── IOPCItemSamplingMgt.cs │ │ │ │ ├── IOPCPublicGroupStateMgt.cs │ │ │ │ ├── IOPCServer.cs │ │ │ │ ├── IOPCServerPublicGroups.cs │ │ │ │ ├── IOPCSyncIO.cs │ │ │ │ ├── IOPCSyncIO2.cs │ │ │ │ ├── OPCBROWSEDIRECTION.cs │ │ │ │ ├── OPCBROWSEELEMENT.cs │ │ │ │ ├── OPCBROWSEFILTER.cs │ │ │ │ ├── OPCBROWSETYPE.cs │ │ │ │ ├── OPCDATASOURCE.cs │ │ │ │ ├── OPCENUMSCOPE.cs │ │ │ │ ├── OPCEUTYPE.cs │ │ │ │ ├── OPCGROUPHEADER.cs │ │ │ │ ├── OPCGROUPHEADERWRITE.cs │ │ │ │ ├── OPCITEMATTRIBUTES.cs │ │ │ │ ├── OPCITEMDEF.cs │ │ │ │ ├── OPCITEMHEADER1.cs │ │ │ │ ├── OPCITEMHEADER2.cs │ │ │ │ ├── OPCITEMHEADERWRITE.cs │ │ │ │ ├── OPCITEMPROPERTIES.cs │ │ │ │ ├── OPCITEMPROPERTY.cs │ │ │ │ ├── OPCITEMRESULT.cs │ │ │ │ ├── OPCITEMSTATE.cs │ │ │ │ ├── OPCITEMVQT.cs │ │ │ │ ├── OPCNAMESPACETYPE.cs │ │ │ │ ├── OPCSERVERSTATE.cs │ │ │ │ ├── OPCSERVERSTATUS.cs │ │ │ │ ├── Properties.cs │ │ │ │ └── Qualities.cs │ │ │ ├── Dx │ │ │ │ ├── CATID_OPCDXServer10.cs │ │ │ │ ├── ConnectStatus.cs │ │ │ │ ├── ConnectStatusName.cs │ │ │ │ ├── ConnectionState.cs │ │ │ │ ├── ConnectionStateName.cs │ │ │ │ ├── DXConnection.cs │ │ │ │ ├── DXGeneralResponse.cs │ │ │ │ ├── IOPCConfiguration.cs │ │ │ │ ├── IdentifiedResult.cs │ │ │ │ ├── ItemIdentifier.cs │ │ │ │ ├── LimitStatusName.cs │ │ │ │ ├── Mask.cs │ │ │ │ ├── Names.cs │ │ │ │ ├── QualityStatusName.cs │ │ │ │ ├── ServerState.cs │ │ │ │ ├── ServerStateName.cs │ │ │ │ ├── ServerType.cs │ │ │ │ ├── ServerTypeName.cs │ │ │ │ └── SourceServer.cs │ │ │ ├── Hda │ │ │ │ ├── CATID_OPCHDAServer10.cs │ │ │ │ ├── Constants.cs │ │ │ │ ├── IOPCHDA_AsyncAnnotations.cs │ │ │ │ ├── IOPCHDA_AsyncRead.cs │ │ │ │ ├── IOPCHDA_AsyncUpdate.cs │ │ │ │ ├── IOPCHDA_Browser.cs │ │ │ │ ├── IOPCHDA_DataCallback.cs │ │ │ │ ├── IOPCHDA_Playback.cs │ │ │ │ ├── IOPCHDA_Server.cs │ │ │ │ ├── IOPCHDA_SyncAnnotations.cs │ │ │ │ ├── IOPCHDA_SyncRead.cs │ │ │ │ ├── IOPCHDA_SyncUpdate.cs │ │ │ │ ├── OPCHDA_AGGREGATE.cs │ │ │ │ ├── OPCHDA_ANNOTATION.cs │ │ │ │ ├── OPCHDA_ANNOTATIONCAPABILITIES.cs │ │ │ │ ├── OPCHDA_ATTRIBUTE.cs │ │ │ │ ├── OPCHDA_BROWSEDIRECTION.cs │ │ │ │ ├── OPCHDA_BROWSETYPE.cs │ │ │ │ ├── OPCHDA_EDITTYPE.cs │ │ │ │ ├── OPCHDA_FILETIME.cs │ │ │ │ ├── OPCHDA_ITEM.cs │ │ │ │ ├── OPCHDA_MODIFIEDITEM.cs │ │ │ │ ├── OPCHDA_OPERATORCODES.cs │ │ │ │ ├── OPCHDA_SERVERSTATUS.cs │ │ │ │ ├── OPCHDA_TIME.cs │ │ │ │ └── OPCHDA_UPDATECAPABILITIES.cs │ │ │ ├── ResultIds.cs │ │ │ ├── Security │ │ │ │ ├── IOPCSecurityNT.cs │ │ │ │ └── IOPCSecurityPrivate.cs │ │ │ ├── ServerDescription.cs │ │ │ ├── ServerEnumerator.cs │ │ │ └── Utils.cs │ │ ├── OpcNetApi.Com │ │ │ ├── Ae │ │ │ │ ├── BrowsePosition.cs │ │ │ │ ├── Interop.cs │ │ │ │ ├── ResultIDs.cs │ │ │ │ ├── Server.cs │ │ │ │ └── Subscription.cs │ │ │ ├── ConnectionPoint.cs │ │ │ ├── Cpx │ │ │ │ └── ResultIDs.cs │ │ │ ├── Da │ │ │ │ ├── BrowsePosition.cs │ │ │ │ ├── Interop.cs │ │ │ │ ├── Request.cs │ │ │ │ ├── ResultIDs.cs │ │ │ │ ├── Server.cs │ │ │ │ ├── Subscription.cs │ │ │ │ └── Wrapper │ │ │ │ │ ├── ConnectionPoint.cs │ │ │ │ │ ├── ConnectionPointContainer.cs │ │ │ │ │ ├── EnumConnectionPoints.cs │ │ │ │ │ ├── EnumOPCItemAttributes.cs │ │ │ │ │ ├── EnumString.cs │ │ │ │ │ ├── EnumUnknown.cs │ │ │ │ │ ├── Group.cs │ │ │ │ │ └── Server.cs │ │ │ ├── Da20 │ │ │ │ ├── BrowsePosition.cs │ │ │ │ ├── Server.cs │ │ │ │ └── Subscription.cs │ │ │ ├── Dx │ │ │ │ ├── Interop.cs │ │ │ │ ├── ResultIDs.cs │ │ │ │ └── Server.cs │ │ │ ├── EnumGuid.cs │ │ │ ├── EnumString.cs │ │ │ ├── Factory.cs │ │ │ ├── Hda │ │ │ │ ├── BrowsePosition.cs │ │ │ │ ├── Browser.cs │ │ │ │ ├── DataCallback.cs │ │ │ │ ├── Interop.cs │ │ │ │ ├── Request.cs │ │ │ │ ├── ResultIDs.cs │ │ │ │ └── Server.cs │ │ │ ├── IOPCWrappedServer.cs │ │ │ ├── Interop.cs │ │ │ ├── Server.cs │ │ │ └── ServerEnumerator.cs │ │ └── OpcNetApi │ │ │ ├── AccessDeniedException.cs │ │ │ ├── Ae │ │ │ ├── Attribute.cs │ │ │ ├── AttributeCollection.cs │ │ │ ├── AttributeDictionary.cs │ │ │ ├── AttributeValue.cs │ │ │ ├── BrowseElement.cs │ │ │ ├── BrowsePosition.cs │ │ │ ├── BrowseType.cs │ │ │ ├── Category.cs │ │ │ ├── ChangeMask.cs │ │ │ ├── Condition.cs │ │ │ ├── ConditionState.cs │ │ │ ├── EnabledStateResult.cs │ │ │ ├── EventAcknowledgement.cs │ │ │ ├── EventChangedEventHandler.cs │ │ │ ├── EventNotification.cs │ │ │ ├── EventType.cs │ │ │ ├── FilterType.cs │ │ │ ├── GetStatusAsyncDelegate.cs │ │ │ ├── IServer.cs │ │ │ ├── ISubscription.cs │ │ │ ├── ItemUrl.cs │ │ │ ├── ItemUrlCollection.cs │ │ │ ├── Server.cs │ │ │ ├── ServerState.cs │ │ │ ├── ServerStatus.cs │ │ │ ├── StateMask.cs │ │ │ ├── SubCondition.cs │ │ │ ├── Subscription.cs │ │ │ ├── SubscriptionFilters.cs │ │ │ └── SubscriptionState.cs │ │ │ ├── AlreadyConnectedException.cs │ │ │ ├── BrowseCannotContinueException.cs │ │ │ ├── ConnectAsyncDelegate.cs │ │ │ ├── ConnectData.cs │ │ │ ├── ConnectFailedException.cs │ │ │ ├── Convert.cs │ │ │ ├── Cpx │ │ │ ├── Ascii.cs │ │ │ ├── BinaryReader.cs │ │ │ ├── BinaryStream.cs │ │ │ ├── BinaryWriter.cs │ │ │ ├── BitString.cs │ │ │ ├── CharString.cs │ │ │ ├── ComplexItem.cs │ │ │ ├── ComplexTypeCache.cs │ │ │ ├── ComplexValue.cs │ │ │ ├── Context.cs │ │ │ ├── Double.cs │ │ │ ├── FieldType.cs │ │ │ ├── FloatingPoint.cs │ │ │ ├── Int16.cs │ │ │ ├── Int32.cs │ │ │ ├── Int64.cs │ │ │ ├── Int8.cs │ │ │ ├── Integer.cs │ │ │ ├── InvalidDataInBufferException.cs │ │ │ ├── InvalidDataToWriteException.cs │ │ │ ├── InvalidSchemaException.cs │ │ │ ├── Single.cs │ │ │ ├── TypeDescription.cs │ │ │ ├── TypeDictionary.cs │ │ │ ├── TypeReference.cs │ │ │ ├── UInt16.cs │ │ │ ├── UInt32.cs │ │ │ ├── UInt64.cs │ │ │ ├── UInt8.cs │ │ │ └── Unicode.cs │ │ │ ├── Da │ │ │ ├── BrowseAsyncDelegate.cs │ │ │ ├── BrowseElement.cs │ │ │ ├── BrowseFilters.cs │ │ │ ├── BrowseNextAsyncDelegate.cs │ │ │ ├── BrowsePosition.cs │ │ │ ├── CancelCompleteEventHandler.cs │ │ │ ├── CancelSubscriptionAsyncDelegate.cs │ │ │ ├── CreateSubscriptionAsyncDelegate.cs │ │ │ ├── DataChangedEventHandler.cs │ │ │ ├── GetPropertiesAsyncDelegate.cs │ │ │ ├── GetResultFiltersAsyncDelegate.cs │ │ │ ├── GetStatusAsyncDelegate.cs │ │ │ ├── IServer.cs │ │ │ ├── ISubscription.cs │ │ │ ├── Item.cs │ │ │ ├── ItemCollection.cs │ │ │ ├── ItemProperty.cs │ │ │ ├── ItemPropertyCollection.cs │ │ │ ├── ItemResult.cs │ │ │ ├── ItemValue.cs │ │ │ ├── ItemValueResult.cs │ │ │ ├── Property.cs │ │ │ ├── PropertyDescription.cs │ │ │ ├── PropertyID.cs │ │ │ ├── Quality.cs │ │ │ ├── ReadAsyncDelegate.cs │ │ │ ├── ReadCompleteEventHandler.cs │ │ │ ├── Request.cs │ │ │ ├── ResultFilter.cs │ │ │ ├── Server.cs │ │ │ ├── ServerStatus.cs │ │ │ ├── SetResultFiltersAsyncDelegate.cs │ │ │ ├── StateMask.cs │ │ │ ├── Subscription.cs │ │ │ ├── SubscriptionCollection.cs │ │ │ ├── SubscriptionState.cs │ │ │ ├── WriteAsyncDelegate.cs │ │ │ ├── WriteCompleteEventHandler.cs │ │ │ ├── accessRights.cs │ │ │ ├── browseFilter.cs │ │ │ ├── euType.cs │ │ │ ├── limitBits.cs │ │ │ ├── qualityBits.cs │ │ │ ├── qualityMasks.cs │ │ │ └── serverState.cs │ │ │ ├── DisconnectAsyncDelegate.cs │ │ │ ├── Dx │ │ │ ├── BrowsePathCollection.cs │ │ │ ├── DXConnection.cs │ │ │ ├── DXConnectionCollection.cs │ │ │ ├── DXConnectionQuery.cs │ │ │ ├── DXConnectionQueryCollection.cs │ │ │ ├── GeneralResponse.cs │ │ │ ├── IServer.cs │ │ │ ├── IdentifiedResult.cs │ │ │ ├── ItemIdentifier.cs │ │ │ ├── Server.cs │ │ │ ├── ServerType.cs │ │ │ ├── SourceServer.cs │ │ │ └── SourceServerCollection.cs │ │ │ ├── Factory.cs │ │ │ ├── GetErrorTextAsyncDelegate.cs │ │ │ ├── GetLocaleAsyncDelegate.cs │ │ │ ├── GetSupportedLocalesAsyncDelegate.cs │ │ │ ├── Hda │ │ │ ├── Aggregate.cs │ │ │ ├── AggregateCollection.cs │ │ │ ├── AggregateID.cs │ │ │ ├── AnnotationValue.cs │ │ │ ├── AnnotationValueCollection.cs │ │ │ ├── Attribute.cs │ │ │ ├── AttributeCollection.cs │ │ │ ├── AttributeID.cs │ │ │ ├── AttributeValue.cs │ │ │ ├── AttributeValueCollection.cs │ │ │ ├── BrowseElement.cs │ │ │ ├── BrowseFilter.cs │ │ │ ├── BrowseFilterCollection.cs │ │ │ ├── BrowsePosition.cs │ │ │ ├── CallbackExceptionEventHandler.cs │ │ │ ├── CancelCompleteEventHandler.cs │ │ │ ├── DataUpdateEventHandler.cs │ │ │ ├── EditType.cs │ │ │ ├── GetStatusDelegate.cs │ │ │ ├── IActualTime.cs │ │ │ ├── IBrowser.cs │ │ │ ├── IServer.cs │ │ │ ├── Item.cs │ │ │ ├── ItemAttributeCollection.cs │ │ │ ├── ItemCollection.cs │ │ │ ├── ItemResult.cs │ │ │ ├── ItemTimeCollection.cs │ │ │ ├── ItemValue.cs │ │ │ ├── ItemValueCollection.cs │ │ │ ├── ModifiedValue.cs │ │ │ ├── ModifiedValueCollection.cs │ │ │ ├── Operator.cs │ │ │ ├── Quality.cs │ │ │ ├── ReadAnnotationsEventHandler.cs │ │ │ ├── ReadAttributesEventHandler.cs │ │ │ ├── ReadValuesEventHandler.cs │ │ │ ├── RelativeTime.cs │ │ │ ├── Result.cs │ │ │ ├── ResultCollection.cs │ │ │ ├── Server.cs │ │ │ ├── ServerState.cs │ │ │ ├── ServerStatus.cs │ │ │ ├── Time.cs │ │ │ ├── TimeOffset.cs │ │ │ ├── TimeOffsetCollection.cs │ │ │ ├── Trend.cs │ │ │ ├── TrendCollection.cs │ │ │ └── UpdateCompleteEventHandler.cs │ │ │ ├── IBrowsePosition.cs │ │ │ ├── IDiscovery.cs │ │ │ ├── IFactory.cs │ │ │ ├── IRequest.cs │ │ │ ├── IResult.cs │ │ │ ├── IServer.cs │ │ │ ├── IdentifiedResult.cs │ │ │ ├── IdentifiedResultCollection.cs │ │ │ ├── InvalidResponseException.cs │ │ │ ├── ItemIdentifier.cs │ │ │ ├── ItemIdentifierCollection.cs │ │ │ ├── Namespace.cs │ │ │ ├── NotConnectedException.cs │ │ │ ├── ReadOnlyCollection.cs │ │ │ ├── ReadOnlyDictionary.cs │ │ │ ├── Resources │ │ │ └── Strings.resources │ │ │ ├── ResultID.cs │ │ │ ├── ResultIDException.cs │ │ │ ├── Server.cs │ │ │ ├── ServerShutdownEventHandler.cs │ │ │ ├── ServerTimeoutException.cs │ │ │ ├── SetLocaleAsyncDelegate.cs │ │ │ ├── Specification.cs │ │ │ ├── Type.cs │ │ │ ├── URL.cs │ │ │ ├── UrlScheme.cs │ │ │ ├── WriteableCollection.cs │ │ │ └── WriteableDictionary.cs │ └── PLC │ │ ├── Cdy.Spider.AllenBradleyDriver │ │ ├── AllenBradleyCIPData.cs │ │ ├── AllenBradleyCIPDriver.cs │ │ ├── AllenBradleyCIPNetProxy.cs │ │ ├── AllenBradleyHelper.cs │ │ ├── AllenBradleyMessage.cs │ │ ├── AllenBradleySLCAddress.cs │ │ ├── Cdy.Spider.AllenBradleyDriver.csproj │ │ └── MessageRouter.cs │ │ ├── Cdy.Spider.BeckhoffDriver │ │ ├── AdsData.cs │ │ ├── AdsDeviceInfo.cs │ │ ├── AdsDriver.cs │ │ ├── AdsHelper.cs │ │ ├── AdsNetMessage.cs │ │ ├── BeckoffNetProxy.cs │ │ ├── Cdy.Spider.BeckhoffDriver.csproj │ │ └── SoftIncrementCount.cs │ │ ├── Cdy.Spider.DeltaDriver │ │ ├── Cdy.Spider.DeltaDriver.csproj │ │ ├── DeltaASHelper.cs │ │ ├── DeltaDriver.cs │ │ ├── DeltaDriverData.cs │ │ ├── DeltaDvpHelper.cs │ │ ├── DeltaHelper.cs │ │ ├── DeltaSerialAsciiNetProxy.cs │ │ ├── DeltaSerialAsciiProxy.cs │ │ ├── DeltaSerialNetProxy.cs │ │ ├── DeltaSerialProxy.cs │ │ ├── DeltaTcpDriver.cs │ │ └── DeltaTcpNetProxy.cs │ │ ├── Cdy.Spider.FujiDriver │ │ ├── Cdy.Spider.FujiDriver.csproj │ │ ├── FujiSPBAddress.cs │ │ ├── FujiSPBDriver.cs │ │ ├── FujiSPBDriverData.cs │ │ ├── FujiSPBHelper.cs │ │ ├── FujiSPBMessage.cs │ │ ├── FujiSPBNetProxy.cs │ │ ├── FujiSPBProxy.cs │ │ ├── FujiSPHAddress.cs │ │ ├── FujiSPHDriver.cs │ │ ├── FujiSPHDriverData.cs │ │ ├── FujiSPHMessage.cs │ │ ├── FujiSPHNetProxy.cs │ │ └── IReadWriteDevice .cs │ │ ├── Cdy.Spider.GEDriver │ │ ├── Cdy.Spider.GEDriver.csproj │ │ ├── GeHelper.cs │ │ ├── GeSRTPAddress.cs │ │ ├── GeSRTPDriver.cs │ │ ├── GeSRTPDriverData.cs │ │ ├── GeSRTPMessage.cs │ │ ├── GeSRTPNet.cs │ │ └── SoftIncrementCount.cs │ │ ├── Cdy.Spider.InovanceDriver │ │ ├── Cdy.Spider.InovanceDriver.csproj │ │ ├── InovanceDriver.cs │ │ ├── InovanceDriverData.cs │ │ ├── InovanceHelper.cs │ │ ├── InovanceNetProxy.cs │ │ ├── InovanceSerialProxy.cs │ │ ├── InovanceTcpDriver.cs │ │ └── InovanceTcpNetProxy.cs │ │ ├── Cdy.Spider.MelsecDriver │ │ ├── A1 │ │ │ ├── MelsecA1Driver.cs │ │ │ ├── MelsecA1DriverData.cs │ │ │ ├── MelsecA1EAsciiNetProxy.cs │ │ │ ├── MelsecA1EDataType.cs │ │ │ └── MelsecA1ENetProxy.cs │ │ ├── A3 │ │ │ ├── MelsecA3CNetHelper.cs │ │ │ ├── MelsecA3CNetProxy.cs │ │ │ ├── MelsecA3CSeriseProxy.cs │ │ │ ├── MelsecA3Driver.cs │ │ │ └── MelsecA3DriverData.cs │ │ ├── Cdy.Spider.MelsecDriver.csproj │ │ ├── Fx │ │ │ ├── MelsecFxDriver.cs │ │ │ ├── MelsecFxDriverData.cs │ │ │ ├── MelsecFxLinksAddress.cs │ │ │ ├── MelsecFxLinksHelper.cs │ │ │ ├── MelsecFxLinksNetProxy.cs │ │ │ └── MelsecFxLinksProxy.cs │ │ ├── IReadWriteA3C.cs │ │ ├── IReadWriteFxLinks.cs │ │ ├── Mc │ │ │ ├── McAddressData.cs │ │ │ ├── McAsciiHelper.cs │ │ │ ├── McBinaryHelper.cs │ │ │ ├── McHelper.cs │ │ │ ├── MelsecMCDriver.cs │ │ │ ├── MelsecMcAsciiNetProxy.cs │ │ │ ├── MelsecMcDriverData.cs │ │ │ ├── MelsecMcNetProxy.cs │ │ │ └── MelsecMcRNetProxy.cs │ │ ├── MelsecHelper.cs │ │ └── Message │ │ │ ├── MelsecA1EAsciiMessage.cs │ │ │ ├── MelsecA1EBinaryMessage.cs │ │ │ ├── MelsecQnA3EAsciiMessage.cs │ │ │ └── MelsecQnA3EBinaryMessage.cs │ │ ├── Cdy.Spider.OmronDriver │ │ ├── Cdy.Spider.OmronDriver.csproj │ │ ├── FinsMessage.cs │ │ ├── HostLink │ │ │ ├── OmronHostLinkDriverData.cs │ │ │ ├── OmronHostLinkHelper.cs │ │ │ ├── OmronHostLinkNetDriver.cs │ │ │ ├── OmronHostLinkOverTcpProxy.cs │ │ │ └── OmronHostLinkSeriseProxy.cs │ │ ├── IHostLink.cs │ │ ├── OmronFinsAddress.cs │ │ ├── OmronFinsDataType.cs │ │ ├── OmronFinsDriverData.cs │ │ ├── OmronFinsNetDriver.cs │ │ ├── OmronFinsNetHelper.cs │ │ ├── OmronFinsNetProxy.cs │ │ └── OmronFinsUDPProxy.cs │ │ └── Cdy.Spider.SiemensDriver │ │ ├── Cdy.Spider.SiemensDriver.csproj │ │ ├── S7AddressData.cs │ │ ├── S7Message.cs │ │ ├── SiemensPLCS.cs │ │ ├── SiemensS7DriverData.cs │ │ ├── SiemensS7NetDriver.cs │ │ └── SiemensS7NetProxy.cs ├── InSpiderRun │ ├── Config │ │ ├── ApiRuntime.cfg │ │ ├── ChannelRuntime.cfg │ │ ├── DriverRuntime.cfg │ │ └── LinkRuntime.cfg │ ├── Image │ │ └── spider.ico │ ├── InSpiderRun.csproj │ ├── Program.cs │ ├── Properties │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Resources.zh-CN.resx │ │ └── launchSettings.json │ └── Res.cs ├── Link │ ├── Cdy.Link.Mqtt │ │ ├── Cdy.Link.Mqtt.csproj │ │ ├── MqttLinkData.cs │ │ └── MqttRuntime.cs │ └── Cdy.Link.Tcp │ │ ├── Cdy.Link.Tcp.csproj │ │ ├── NetworkService │ │ ├── APIConst.cs │ │ ├── DataServerBase.cs │ │ ├── RealDataServerProcess.cs │ │ ├── SecurityService.cs │ │ ├── ServerProcessBase.cs │ │ ├── TagInfoServerProcess.cs │ │ └── TcpServer.cs │ │ ├── TcpLinkData.cs │ │ └── TcpRuntime.cs └── Monitor │ └── RealDataService │ ├── Controllers │ └── RealValueController.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── RealDataService.csproj │ ├── Startup.cs │ ├── UserConfigDocument.cs │ ├── WebApiServer.cs │ ├── appsettings.Development.json │ └── appsettings.json ├── Spider.sln └── SpiderRuntime ├── Api └── APIManager.cs ├── ChannelManager.cs ├── Data ├── Api.cfg ├── Channel.cfg └── Driver.cfg ├── DeviceManager.cs ├── DriverManager.cs ├── Link └── LinkManager.cs ├── Runer.cs ├── Script └── ScriptService.cs └── SpiderRuntime.csproj /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/.gitignore -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Api/ApiBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Api/ApiBase.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Api/ApiData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Api/ApiData.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Api/ApiDevelopBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Api/ApiDevelopBase.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Api/ApiFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Api/ApiFactory.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Calculate/CalculateExtend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Calculate/CalculateExtend.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Cdy.Spider.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Cdy.Spider.Common.csproj -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Channel/ChannelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Channel/ChannelBase.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Channel/ChannelBase2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Channel/ChannelBase2.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Channel/ChannelData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Channel/ChannelData.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Channel/ChannelDevelopBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Channel/ChannelDevelopBase.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Channel/ChannelFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Channel/ChannelFactory.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Channel/ChannelFactory2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Channel/ChannelFactory2.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Context.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Context.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/DataFormate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/DataFormate.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Device/DeviceData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Device/DeviceData.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Device/DeviceDevelop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Device/DeviceDevelop.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Device/DeviceProxyBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Device/DeviceProxyBase.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Device/DeviceRuner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Device/DeviceRuner.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Device/NetworkDeviceProxyBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Device/NetworkDeviceProxyBase.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Device/SerialDeviceProxyBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Device/SerialDeviceProxyBase.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Device/TagCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Device/TagCollection.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/DeviceAddressDataBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/DeviceAddressDataBase.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Driver/DriverData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Driver/DriverData.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Driver/DriverDevelop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Driver/DriverDevelop.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Driver/DriverFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Driver/DriverFactory.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Driver/DriverRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Driver/DriverRunner.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Driver/TimerDriverRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Driver/TimerDriverRunner.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Helper/AddressBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Helper/AddressBlock.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Helper/AddressManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Helper/AddressManager.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Helper/ByteTransformBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Helper/ByteTransformBase.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Helper/ByteTransformHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Helper/ByteTransformHelper.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Helper/DataExtend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Helper/DataExtend.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Helper/File.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Helper/File.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Helper/RegularByteTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Helper/RegularByteTransform.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Helper/ReverseBytesTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Helper/ReverseBytesTransform.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Helper/ReverseWordTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Helper/ReverseWordTransform.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Interface/IApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Interface/IApi.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Interface/IApiDevelop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Interface/IApiDevelop.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Interface/IApiFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Interface/IApiFactory.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Interface/IByteTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Interface/IByteTransform.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Interface/ICommChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Interface/ICommChannel.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Interface/ICommChannel2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Interface/ICommChannel2.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Interface/ICommChannelDevelop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Interface/ICommChannelDevelop.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Interface/ICommChannelFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Interface/ICommChannelFactory.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Interface/IDeviceDevelop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Interface/IDeviceDevelop.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Interface/IDeviceRuntime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Interface/IDeviceRuntime.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Interface/IDriverDevelop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Interface/IDriverDevelop.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Interface/IDriverFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Interface/IDriverFactory.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Interface/IDriverRuntime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Interface/IDriverRuntime.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Interface/ILink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Interface/ILink.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Interface/ILinkDevelop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Interface/ILinkDevelop.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Interface/ILinkFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Interface/ILinkFactory.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Interface/INetMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Interface/INetMessage.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Interface/INumberTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Interface/INumberTag.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Interface/IRealDataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Interface/IRealDataService.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Interface/IScriptService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Interface/IScriptService.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Interface/IValueConvert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Interface/IValueConvert.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Link/LinkData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Link/LinkData.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Link/LinkDevelopBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Link/LinkDevelopBase.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Link/LinkFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Link/LinkFactory.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Link/LinkRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Link/LinkRunner.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Logger/ConsoleLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Logger/ConsoleLogger.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Logger/ILog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Logger/ILog.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Logger/LoggerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Logger/LoggerService.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Logo/Author.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Logo/Author.txt -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Logo/Logo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Logo/Logo.txt -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Logo/LogoHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Logo/LogoHelper.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Md5Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Md5Helper.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/ServiceLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/ServiceLocator.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Tags/BoolTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Tags/BoolTag.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Tags/ByteTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Tags/ByteTag.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Tags/DateTimeTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Tags/DateTimeTag.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Tags/DoubleTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Tags/DoubleTag.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Tags/FloatTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Tags/FloatTag.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Tags/HisDataMemory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Tags/HisDataMemory.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Tags/Int3PointTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Tags/Int3PointTag.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Tags/IntPointTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Tags/IntPointTag.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Tags/IntTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Tags/IntTag.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Tags/LongPoint3Tag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Tags/LongPoint3Tag.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Tags/LongPointTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Tags/LongPointTag.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Tags/LongTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Tags/LongTag.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Tags/MemoryHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Tags/MemoryHelper.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Tags/ShortTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Tags/ShortTag.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Tags/StringTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Tags/StringTag.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Tags/TagHisValueBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Tags/TagHisValueBuffer.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Tags/Tagbae.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Tags/Tagbae.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Tags/UIntPoint3Tag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Tags/UIntPoint3Tag.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Tags/UIntPointTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Tags/UIntPointTag.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Tags/UIntTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Tags/UIntTag.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Tags/ULongPointTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Tags/ULongPointTag.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Tags/ULongPointTag3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Tags/ULongPointTag3.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Tags/ULongTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Tags/ULongTag.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/Tags/UShortTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/Tags/UShortTag.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/ValueConvert/AdvanceConvert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/ValueConvert/AdvanceConvert.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/ValueConvert/BitInvertConvert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/ValueConvert/BitInvertConvert.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/ValueConvert/LinerConvert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/ValueConvert/LinerConvert.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.Common/WindowConsolHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.Common/WindowConsolHelper.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.DevelopCommon/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.DevelopCommon/AssemblyInfo.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.DevelopCommon/BoolInvert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.DevelopCommon/BoolInvert.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.DevelopCommon/Common/DialogHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.DevelopCommon/Common/DialogHelper.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.DevelopCommon/Common/PasswordControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.DevelopCommon/Common/PasswordControl.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.DevelopCommon/Common/RelayCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.DevelopCommon/Common/RelayCommand.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.DevelopCommon/Common/Res.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.DevelopCommon/Common/Res.cs -------------------------------------------------------------------------------- /Common/Cdy.Spider.DevelopCommon/Image/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.DevelopCommon/Image/cancel.png -------------------------------------------------------------------------------- /Common/Cdy.Spider.DevelopCommon/Image/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.DevelopCommon/Image/close.png -------------------------------------------------------------------------------- /Common/Cdy.Spider.DevelopCommon/Image/hidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.DevelopCommon/Image/hidden.png -------------------------------------------------------------------------------- /Common/Cdy.Spider.DevelopCommon/Image/max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.DevelopCommon/Image/max.png -------------------------------------------------------------------------------- /Common/Cdy.Spider.DevelopCommon/Image/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.DevelopCommon/Image/minus.png -------------------------------------------------------------------------------- /Common/Cdy.Spider.DevelopCommon/Image/ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.DevelopCommon/Image/ok.png -------------------------------------------------------------------------------- /Common/Cdy.Spider.DevelopCommon/Image/show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.DevelopCommon/Image/show.png -------------------------------------------------------------------------------- /Common/Cdy.Spider.DevelopCommon/Image/spider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.DevelopCommon/Image/spider.png -------------------------------------------------------------------------------- /Common/Cdy.Spider.DevelopCommon/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.DevelopCommon/Properties/Resources.resx -------------------------------------------------------------------------------- /Common/Cdy.Spider.DevelopCommon/Themes/ControlStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.DevelopCommon/Themes/ControlStyle.xaml -------------------------------------------------------------------------------- /Common/Cdy.Spider.DevelopCommon/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Common/Cdy.Spider.DevelopCommon/Themes/Generic.xaml -------------------------------------------------------------------------------- /Deploy/SpiderDeployService/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Deploy/SpiderDeployService/Program.cs -------------------------------------------------------------------------------- /Deploy/SpiderDeployService/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Deploy/SpiderDeployService/Properties/launchSettings.json -------------------------------------------------------------------------------- /Deploy/SpiderDeployService/SpiderDeployService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Deploy/SpiderDeployService/SpiderDeployService.csproj -------------------------------------------------------------------------------- /Deploy/SpiderDeployService/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Deploy/SpiderDeployService/appsettings.Development.json -------------------------------------------------------------------------------- /Deploy/SpiderDeployService/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Deploy/SpiderDeployService/appsettings.json -------------------------------------------------------------------------------- /Develop/Api/Cdy.Api.Mars.Develop/ApiConfigView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Api/Cdy.Api.Mars.Develop/ApiConfigView.xaml -------------------------------------------------------------------------------- /Develop/Api/Cdy.Api.Mars.Develop/ApiConfigView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Api/Cdy.Api.Mars.Develop/ApiConfigView.xaml.cs -------------------------------------------------------------------------------- /Develop/Api/Cdy.Api.Mars.Develop/ApiConfigViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Api/Cdy.Api.Mars.Develop/ApiConfigViewModel.cs -------------------------------------------------------------------------------- /Develop/Api/Cdy.Api.Mars.Develop/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Api/Cdy.Api.Mars.Develop/AssemblyInfo.cs -------------------------------------------------------------------------------- /Develop/Api/Cdy.Api.Mars.Develop/Common/Res.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Api/Cdy.Api.Mars.Develop/Common/Res.cs -------------------------------------------------------------------------------- /Develop/Api/Cdy.Api.Mars.Develop/Image/文件夹.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Api/Cdy.Api.Mars.Develop/Image/文件夹.png -------------------------------------------------------------------------------- /Develop/Api/Cdy.Api.Mars.Develop/IndexConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Api/Cdy.Api.Mars.Develop/IndexConverter.cs -------------------------------------------------------------------------------- /Develop/Api/Cdy.Api.Mars.Develop/MarsApiDevelop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Api/Cdy.Api.Mars.Develop/MarsApiDevelop.cs -------------------------------------------------------------------------------- /Develop/Api/Cdy.Api.Mars.Develop/MarsApiDevelopPush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Api/Cdy.Api.Mars.Develop/MarsApiDevelopPush.cs -------------------------------------------------------------------------------- /Develop/Api/Cdy.Api.Mars.Develop/TagBrowserView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Api/Cdy.Api.Mars.Develop/TagBrowserView.xaml -------------------------------------------------------------------------------- /Develop/Api/Cdy.Api.Mars.Develop/TagBrowserView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Api/Cdy.Api.Mars.Develop/TagBrowserView.xaml.cs -------------------------------------------------------------------------------- /Develop/Api/Cdy.Api.Mars.Develop/TagBrowserViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Api/Cdy.Api.Mars.Develop/TagBrowserViewModel.cs -------------------------------------------------------------------------------- /Develop/Api/Cdy.Api.Mars.Develop/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Api/Cdy.Api.Mars.Develop/Themes/Generic.xaml -------------------------------------------------------------------------------- /Develop/Api/Cdy.Api.OpcUAServer.Develop/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Api/Cdy.Api.OpcUAServer.Develop/AssemblyInfo.cs -------------------------------------------------------------------------------- /Develop/Api/Cdy.Api.OpcUAServer.Develop/Common/Res.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Api/Cdy.Api.OpcUAServer.Develop/Common/Res.cs -------------------------------------------------------------------------------- /Develop/Api/Cdy.Api.SpiderMqtt.Develop/ApiConfigView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Api/Cdy.Api.SpiderMqtt.Develop/ApiConfigView.xaml -------------------------------------------------------------------------------- /Develop/Api/Cdy.Api.SpiderMqtt.Develop/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Api/Cdy.Api.SpiderMqtt.Develop/AssemblyInfo.cs -------------------------------------------------------------------------------- /Develop/Api/Cdy.Api.SpiderMqtt.Develop/Common/Res.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Api/Cdy.Api.SpiderMqtt.Develop/Common/Res.cs -------------------------------------------------------------------------------- /Develop/Api/Cdy.Api.SpiderTcp.Develop/ApiConfigView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Api/Cdy.Api.SpiderTcp.Develop/ApiConfigView.xaml -------------------------------------------------------------------------------- /Develop/Api/Cdy.Api.SpiderTcp.Develop/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Api/Cdy.Api.SpiderTcp.Develop/AssemblyInfo.cs -------------------------------------------------------------------------------- /Develop/Api/Cdy.Api.SpiderTcp.Develop/Common/Res.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Api/Cdy.Api.SpiderTcp.Develop/Common/Res.cs -------------------------------------------------------------------------------- /Develop/Api/Cdy.Api.SpiderTcp.Develop/SpiderTcpDevelop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Api/Cdy.Api.SpiderTcp.Develop/SpiderTcpDevelop.cs -------------------------------------------------------------------------------- /Develop/Api/Cdy.Api.SpiderTcp.Develop/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Api/Cdy.Api.SpiderTcp.Develop/Themes/Generic.xaml -------------------------------------------------------------------------------- /Develop/Drivers/Cdy.Spider. Siemens.Develop/Common/Res.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Drivers/Cdy.Spider. Siemens.Develop/Common/Res.cs -------------------------------------------------------------------------------- /Develop/Drivers/Cdy.Spider.CalculateDriver.Develop/Tag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Drivers/Cdy.Spider.CalculateDriver.Develop/Tag.cs -------------------------------------------------------------------------------- /Develop/Drivers/Cdy.Spider.Fatek.Develop/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Drivers/Cdy.Spider.Fatek.Develop/AssemblyInfo.cs -------------------------------------------------------------------------------- /Develop/Drivers/Cdy.Spider.Fuji.Develop/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Drivers/Cdy.Spider.Fuji.Develop/AssemblyInfo.cs -------------------------------------------------------------------------------- /Develop/Drivers/Cdy.Spider.Fuji.Develop/Common/Res.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Drivers/Cdy.Spider.Fuji.Develop/Common/Res.cs -------------------------------------------------------------------------------- /Develop/Drivers/Cdy.Spider.Fuji.Develop/CustomControl1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Drivers/Cdy.Spider.Fuji.Develop/CustomControl1.cs -------------------------------------------------------------------------------- /Develop/Drivers/Cdy.Spider.GEDriver.Develop/Common/Res.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Drivers/Cdy.Spider.GEDriver.Develop/Common/Res.cs -------------------------------------------------------------------------------- /Develop/Drivers/Cdy.Spider.LSIS.Develop/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Drivers/Cdy.Spider.LSIS.Develop/AssemblyInfo.cs -------------------------------------------------------------------------------- /Develop/Drivers/Cdy.Spider.LSIS.Develop/CustomControl1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Drivers/Cdy.Spider.LSIS.Develop/CustomControl1.cs -------------------------------------------------------------------------------- /Develop/Drivers/Cdy.Spider.Melsec.Develop/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Drivers/Cdy.Spider.Melsec.Develop/AssemblyInfo.cs -------------------------------------------------------------------------------- /Develop/Drivers/Cdy.Spider.Melsec.Develop/Common/Res.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Drivers/Cdy.Spider.Melsec.Develop/Common/Res.cs -------------------------------------------------------------------------------- /Develop/Drivers/Cdy.Spider.OpcDA.Develop/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Drivers/Cdy.Spider.OpcDA.Develop/AssemblyInfo.cs -------------------------------------------------------------------------------- /Develop/Drivers/Cdy.Spider.OpcDA.Develop/Common/Res.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Drivers/Cdy.Spider.OpcDA.Develop/Common/Res.cs -------------------------------------------------------------------------------- /Develop/Drivers/Cdy.Spider.OpcDA.Develop/reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Drivers/Cdy.Spider.OpcDA.Develop/reload.png -------------------------------------------------------------------------------- /Develop/Drivers/Cdy.Spider.OpcUA.Develop/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Drivers/Cdy.Spider.OpcUA.Develop/AssemblyInfo.cs -------------------------------------------------------------------------------- /Develop/Drivers/Cdy.Spider.OpcUA.Develop/Common/Res.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Drivers/Cdy.Spider.OpcUA.Develop/Common/Res.cs -------------------------------------------------------------------------------- /Develop/Drivers/ICSharpCode.AvalonEdit/Editing/Caret.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Drivers/ICSharpCode.AvalonEdit/Editing/Caret.cs -------------------------------------------------------------------------------- /Develop/Drivers/ICSharpCode.AvalonEdit/Rendering/Layer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Drivers/ICSharpCode.AvalonEdit/Rendering/Layer.cs -------------------------------------------------------------------------------- /Develop/Drivers/ICSharpCode.AvalonEdit/Search/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Drivers/ICSharpCode.AvalonEdit/Search/next.png -------------------------------------------------------------------------------- /Develop/Drivers/ICSharpCode.AvalonEdit/Search/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Drivers/ICSharpCode.AvalonEdit/Search/prev.png -------------------------------------------------------------------------------- /Develop/Drivers/ICSharpCode.AvalonEdit/TextEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Drivers/ICSharpCode.AvalonEdit/TextEditor.cs -------------------------------------------------------------------------------- /Develop/Drivers/ICSharpCode.AvalonEdit/TextEditor.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Drivers/ICSharpCode.AvalonEdit/TextEditor.xaml -------------------------------------------------------------------------------- /Develop/Drivers/ICSharpCode.AvalonEdit/Utils/Boxes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Drivers/ICSharpCode.AvalonEdit/Utils/Boxes.cs -------------------------------------------------------------------------------- /Develop/Drivers/ICSharpCode.AvalonEdit/Utils/CharRope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Drivers/ICSharpCode.AvalonEdit/Utils/CharRope.cs -------------------------------------------------------------------------------- /Develop/Drivers/ICSharpCode.AvalonEdit/Utils/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Drivers/ICSharpCode.AvalonEdit/Utils/Constants.cs -------------------------------------------------------------------------------- /Develop/Drivers/ICSharpCode.AvalonEdit/Utils/Deque.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Drivers/ICSharpCode.AvalonEdit/Utils/Deque.cs -------------------------------------------------------------------------------- /Develop/Drivers/ICSharpCode.AvalonEdit/Utils/Empty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Drivers/ICSharpCode.AvalonEdit/Utils/Empty.cs -------------------------------------------------------------------------------- /Develop/Drivers/ICSharpCode.AvalonEdit/Utils/Rope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Drivers/ICSharpCode.AvalonEdit/Utils/Rope.cs -------------------------------------------------------------------------------- /Develop/Drivers/ICSharpCode.AvalonEdit/Utils/RopeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Drivers/ICSharpCode.AvalonEdit/Utils/RopeNode.cs -------------------------------------------------------------------------------- /Develop/Drivers/ICSharpCode.AvalonEdit/Utils/ThrowUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Drivers/ICSharpCode.AvalonEdit/Utils/ThrowUtil.cs -------------------------------------------------------------------------------- /Develop/Drivers/ICSharpCode.AvalonEdit/Utils/Win32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Drivers/ICSharpCode.AvalonEdit/Utils/Win32.cs -------------------------------------------------------------------------------- /Develop/Drivers/RoslynPad.Roslyn/AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Drivers/RoslynPad.Roslyn/AssemblyAttributes.cs -------------------------------------------------------------------------------- /Develop/Drivers/RoslynPad.Roslyn/CodeFixes/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Drivers/RoslynPad.Roslyn/CodeFixes/CodeFix.cs -------------------------------------------------------------------------------- /Develop/Drivers/RoslynPad.Roslyn/Completion/Glyph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Drivers/RoslynPad.Roslyn/Completion/Glyph.cs -------------------------------------------------------------------------------- /Develop/Drivers/RoslynPad.Roslyn/DiagnosticOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Drivers/RoslynPad.Roslyn/DiagnosticOptions.cs -------------------------------------------------------------------------------- /Develop/Drivers/RoslynPad.Roslyn/DocumentCreationArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Drivers/RoslynPad.Roslyn/DocumentCreationArgs.cs -------------------------------------------------------------------------------- /Develop/Drivers/RoslynPad.Roslyn/DocumentExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Drivers/RoslynPad.Roslyn/DocumentExtensions.cs -------------------------------------------------------------------------------- /Develop/Drivers/RoslynPad.Roslyn/IEditorCaretProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Drivers/RoslynPad.Roslyn/IEditorCaretProvider.cs -------------------------------------------------------------------------------- /Develop/Drivers/RoslynPad.Roslyn/IRoslynHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Drivers/RoslynPad.Roslyn/IRoslynHost.cs -------------------------------------------------------------------------------- /Develop/Drivers/RoslynPad.Roslyn/ISymbolExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Drivers/RoslynPad.Roslyn/ISymbolExtensions.cs -------------------------------------------------------------------------------- /Develop/Drivers/RoslynPad.Roslyn/NotificationObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Drivers/RoslynPad.Roslyn/NotificationObject.cs -------------------------------------------------------------------------------- /Develop/Drivers/RoslynPad.Roslyn/Rename/RenameHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Drivers/RoslynPad.Roslyn/Rename/RenameHelper.cs -------------------------------------------------------------------------------- /Develop/Drivers/RoslynPad.Roslyn/RoslynHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Drivers/RoslynPad.Roslyn/RoslynHost.cs -------------------------------------------------------------------------------- /Develop/Drivers/RoslynPad.Roslyn/RoslynHostReferences.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Drivers/RoslynPad.Roslyn/RoslynHostReferences.cs -------------------------------------------------------------------------------- /Develop/Drivers/RoslynPad.Roslyn/RoslynPad.Roslyn.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Drivers/RoslynPad.Roslyn/RoslynPad.Roslyn.csproj -------------------------------------------------------------------------------- /Develop/Drivers/RoslynPad.Roslyn/RoslynWorkspace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Drivers/RoslynPad.Roslyn/RoslynWorkspace.cs -------------------------------------------------------------------------------- /Develop/Drivers/RoslynPad.Roslyn/Snippets/SnippetInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Drivers/RoslynPad.Roslyn/Snippets/SnippetInfo.cs -------------------------------------------------------------------------------- /Develop/Drivers/RoslynPad.Roslyn/WorkspaceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Drivers/RoslynPad.Roslyn/WorkspaceExtensions.cs -------------------------------------------------------------------------------- /Develop/InSpiderDevelop/Api/APIDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelop/Api/APIDocument.cs -------------------------------------------------------------------------------- /Develop/InSpiderDevelop/Channel/ChannelDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelop/Channel/ChannelDocument.cs -------------------------------------------------------------------------------- /Develop/InSpiderDevelop/DevelopManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelop/DevelopManager.cs -------------------------------------------------------------------------------- /Develop/InSpiderDevelop/Device/DeviceDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelop/Device/DeviceDocument.cs -------------------------------------------------------------------------------- /Develop/InSpiderDevelop/Device/DeviceGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelop/Device/DeviceGroup.cs -------------------------------------------------------------------------------- /Develop/InSpiderDevelop/Driver/DriverDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelop/Driver/DriverDocument.cs -------------------------------------------------------------------------------- /Develop/InSpiderDevelop/InSpiderDevelop.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelop/InSpiderDevelop.csproj -------------------------------------------------------------------------------- /Develop/InSpiderDevelop/Link/LinkDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelop/Link/LinkDocument.cs -------------------------------------------------------------------------------- /Develop/InSpiderDevelop/MachineDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelop/MachineDocument.cs -------------------------------------------------------------------------------- /Develop/InSpiderDevelopServer/GrpcDBService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopServer/GrpcDBService.cs -------------------------------------------------------------------------------- /Develop/InSpiderDevelopServer/IMachineManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopServer/IMachineManager.cs -------------------------------------------------------------------------------- /Develop/InSpiderDevelopServer/Protos/DevelopServer.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopServer/Protos/DevelopServer.proto -------------------------------------------------------------------------------- /Develop/InSpiderDevelopServer/Security/Security.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopServer/Security/Security.cs -------------------------------------------------------------------------------- /Develop/InSpiderDevelopServer/Security/SecurityManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopServer/Security/SecurityManager.cs -------------------------------------------------------------------------------- /Develop/InSpiderDevelopServer/Security/SecuritySerise.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopServer/Security/SecuritySerise.cs -------------------------------------------------------------------------------- /Develop/InSpiderDevelopServer/Security/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopServer/Security/User.cs -------------------------------------------------------------------------------- /Develop/InSpiderDevelopServer/Security/UserDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopServer/Security/UserDocument.cs -------------------------------------------------------------------------------- /Develop/InSpiderDevelopServer/Service.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopServer/Service.cs -------------------------------------------------------------------------------- /Develop/InSpiderDevelopServer/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopServer/Startup.cs -------------------------------------------------------------------------------- /Develop/InSpiderDevelopServer/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopServer/appsettings.json -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/App.xaml -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/App.xaml.cs -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/AssemblyInfo.cs -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/Common/CustomWindowBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/Common/CustomWindowBase.cs -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/Common/DialogHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/Common/DialogHelper.cs -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/Common/PasswordControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/Common/PasswordControl.cs -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/Common/RelayCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/Common/RelayCommand.cs -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/Common/Res.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/Common/Res.cs -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/Config/ApiDevelop.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/Config/ApiDevelop.cfg -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/Config/Calculate.cfg: -------------------------------------------------------------------------------- 1 | // 字符//是注释的起始字符 2 | //IF97.dll -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/Config/ChannelDevelop.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/Config/ChannelDevelop.cfg -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/Config/DriverDevelop.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/Config/DriverDevelop.cfg -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/Config/LinkDevelop.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/Config/LinkDevelop.cfg -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/Image/API.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/Image/API.png -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/Image/AllSelect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/Image/AllSelect.png -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/Image/PROJECT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/Image/PROJECT.png -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/Image/PublishAll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/Image/PublishAll.png -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/Image/Spider.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/Image/Spider.jpg -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/Image/UserSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/Image/UserSettings.png -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/Image/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/Image/add.png -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/Image/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/Image/cancel.png -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/Image/cellselect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/Image/cellselect.png -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/Image/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/Image/close.png -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/Image/computer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/Image/computer.png -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/Image/devices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/Image/devices.png -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/Image/idevices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/Image/idevices.png -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/Image/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/Image/link.png -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/Image/log-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/Image/log-out.png -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/Image/max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/Image/max.png -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/Image/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/Image/minus.png -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/Image/monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/Image/monitor.png -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/Image/ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/Image/ok.png -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/Image/publish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/Image/publish.png -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/Image/reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/Image/reload.png -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/Image/remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/Image/remove.png -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/Image/rowselect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/Image/rowselect.png -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/Image/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/Image/save.png -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/Image/server-security.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/Image/server-security.png -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/Image/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/Image/settings.png -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/Image/spider.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/Image/spider.ico -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/Image/spider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/Image/spider.png -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/Image/spider2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/Image/spider2.ico -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/Image/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/Image/start.png -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/Image/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/Image/stop.png -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/Image/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/Image/user.png -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/Image/文件夹.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/Image/文件夹.png -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/Image/登录.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/Image/登录.png -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/MainWindow.xaml -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/Properties/Resources.resx -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/Themes/ControlStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/Themes/ControlStyle.xaml -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/Themes/Generic.xaml -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/View/APIDetailView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/View/APIDetailView.xaml -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/View/APIDetailView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/View/APIDetailView.xaml.cs -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/View/ConvertEditView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/View/ConvertEditView.xaml -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/View/DeviceDetailView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/View/DeviceDetailView.xaml -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/View/LinearConvertView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/View/LinearConvertView.xaml -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/View/LinkDetailView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/View/LinkDetailView.xaml -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/View/LinkDetailView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/View/LinkDetailView.xaml.cs -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/View/LoginView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/View/LoginView.xaml -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/View/LoginView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/View/LoginView.xaml.cs -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/View/SpiderInfoView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/View/SpiderInfoView.xaml -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/View/SpiderInfoView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/View/SpiderInfoView.xaml.cs -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/ViewModel/IModeSwitch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/ViewModel/IModeSwitch.cs -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/ViewModel/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/ViewModel/LoginViewModel.cs -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/ViewModel/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/ViewModel/MainViewModel.cs -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/ViewModel/ServerHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/ViewModel/ServerHelper.cs -------------------------------------------------------------------------------- /Develop/InSpiderDevelopWindow/ViewModel/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderDevelopWindow/ViewModel/ViewModelBase.cs -------------------------------------------------------------------------------- /Develop/InSpiderStudioServer/InSpiderStudioServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderStudioServer/InSpiderStudioServer.csproj -------------------------------------------------------------------------------- /Develop/InSpiderStudioServer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderStudioServer/Program.cs -------------------------------------------------------------------------------- /Develop/InSpiderStudioServer/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderStudioServer/Properties/Resources.resx -------------------------------------------------------------------------------- /Develop/InSpiderStudioServer/Res.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderStudioServer/Res.cs -------------------------------------------------------------------------------- /Develop/InSpiderStudioServer/spiderServer.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/InSpiderStudioServer/spiderServer.ico -------------------------------------------------------------------------------- /Develop/Link/Cdy.Link.Mqtt.Develop/ApiConfigView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Link/Cdy.Link.Mqtt.Develop/ApiConfigView.xaml -------------------------------------------------------------------------------- /Develop/Link/Cdy.Link.Mqtt.Develop/ApiConfigView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Link/Cdy.Link.Mqtt.Develop/ApiConfigView.xaml.cs -------------------------------------------------------------------------------- /Develop/Link/Cdy.Link.Mqtt.Develop/ApiConfigViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Link/Cdy.Link.Mqtt.Develop/ApiConfigViewModel.cs -------------------------------------------------------------------------------- /Develop/Link/Cdy.Link.Mqtt.Develop/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Link/Cdy.Link.Mqtt.Develop/AssemblyInfo.cs -------------------------------------------------------------------------------- /Develop/Link/Cdy.Link.Mqtt.Develop/Common/Res.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Link/Cdy.Link.Mqtt.Develop/Common/Res.cs -------------------------------------------------------------------------------- /Develop/Link/Cdy.Link.Mqtt.Develop/MqttLinkDevelop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Link/Cdy.Link.Mqtt.Develop/MqttLinkDevelop.cs -------------------------------------------------------------------------------- /Develop/Link/Cdy.Link.Mqtt.Develop/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Link/Cdy.Link.Mqtt.Develop/Themes/Generic.xaml -------------------------------------------------------------------------------- /Develop/Link/Cdy.Link.Tcp.Develop/ApiConfigView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Link/Cdy.Link.Tcp.Develop/ApiConfigView.xaml -------------------------------------------------------------------------------- /Develop/Link/Cdy.Link.Tcp.Develop/ApiConfigView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Link/Cdy.Link.Tcp.Develop/ApiConfigView.xaml.cs -------------------------------------------------------------------------------- /Develop/Link/Cdy.Link.Tcp.Develop/ApiConfigViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Link/Cdy.Link.Tcp.Develop/ApiConfigViewModel.cs -------------------------------------------------------------------------------- /Develop/Link/Cdy.Link.Tcp.Develop/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Link/Cdy.Link.Tcp.Develop/AssemblyInfo.cs -------------------------------------------------------------------------------- /Develop/Link/Cdy.Link.Tcp.Develop/Common/Res.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Link/Cdy.Link.Tcp.Develop/Common/Res.cs -------------------------------------------------------------------------------- /Develop/Link/Cdy.Link.Tcp.Develop/TcpLinkDevelop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Link/Cdy.Link.Tcp.Develop/TcpLinkDevelop.cs -------------------------------------------------------------------------------- /Develop/Link/Cdy.Link.Tcp.Develop/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Develop/Link/Cdy.Link.Tcp.Develop/Themes/Generic.xaml -------------------------------------------------------------------------------- /Doc/Images/spider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Doc/Images/spider.png -------------------------------------------------------------------------------- /Doc/Spider 做网关实现协议转化.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Doc/Spider 做网关实现协议转化.docx -------------------------------------------------------------------------------- /Doc/Spider 快速入门.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Doc/Spider 快速入门.docx -------------------------------------------------------------------------------- /Doc/Spider级联功能.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Doc/Spider级联功能.docx -------------------------------------------------------------------------------- /Doc/自定义驱动帮助文档.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Doc/自定义驱动帮助文档.docx -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/README.md -------------------------------------------------------------------------------- /README.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/README.zh-CN.md -------------------------------------------------------------------------------- /Run/API/Cdy.Api.Mars/Cdy.Api.Mars.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/API/Cdy.Api.Mars/Cdy.Api.Mars.csproj -------------------------------------------------------------------------------- /Run/API/Cdy.Api.Mars/MarsApiPushRuntime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/API/Cdy.Api.Mars/MarsApiPushRuntime.cs -------------------------------------------------------------------------------- /Run/API/Cdy.Api.Mars/MarsApiRuntime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/API/Cdy.Api.Mars/MarsApiRuntime.cs -------------------------------------------------------------------------------- /Run/API/Cdy.Api.OpcUAServer/Cdy.Api.OpcUAServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/API/Cdy.Api.OpcUAServer/Cdy.Api.OpcUAServer.csproj -------------------------------------------------------------------------------- /Run/API/Cdy.Api.OpcUAServer/OPCServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/API/Cdy.Api.OpcUAServer/OPCServer.cs -------------------------------------------------------------------------------- /Run/API/Cdy.Api.OpcUAServer/OPCUAApiData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/API/Cdy.Api.OpcUAServer/OPCUAApiData.cs -------------------------------------------------------------------------------- /Run/API/Cdy.Api.OpcUAServer/OPCUAApiRuntime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/API/Cdy.Api.OpcUAServer/OPCUAApiRuntime.cs -------------------------------------------------------------------------------- /Run/API/Cdy.Api.OpcUAServer/SpiderNodeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/API/Cdy.Api.OpcUAServer/SpiderNodeManager.cs -------------------------------------------------------------------------------- /Run/API/Cdy.Api.OpcUAServer/SpiderOpcuaServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/API/Cdy.Api.OpcUAServer/SpiderOpcuaServer.cs -------------------------------------------------------------------------------- /Run/API/Cdy.Api.OpcUAServer/SpiderTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/API/Cdy.Api.OpcUAServer/SpiderTag.cs -------------------------------------------------------------------------------- /Run/API/Cdy.Api.SpiderMqtt/Cdy.Api.SpiderMqtt.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/API/Cdy.Api.SpiderMqtt/Cdy.Api.SpiderMqtt.csproj -------------------------------------------------------------------------------- /Run/API/Cdy.Api.SpiderMqtt/MqttApiData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/API/Cdy.Api.SpiderMqtt/MqttApiData.cs -------------------------------------------------------------------------------- /Run/API/Cdy.Api.SpiderMqtt/SpiderMqttApiRuntime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/API/Cdy.Api.SpiderMqtt/SpiderMqttApiRuntime.cs -------------------------------------------------------------------------------- /Run/API/Cdy.Api.SpiderTcp/Cdy.Api.SpiderTcp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/API/Cdy.Api.SpiderTcp/Cdy.Api.SpiderTcp.csproj -------------------------------------------------------------------------------- /Run/API/Cdy.Api.SpiderTcp/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/API/Cdy.Api.SpiderTcp/Properties/launchSettings.json -------------------------------------------------------------------------------- /Run/API/Cdy.Api.SpiderTcp/SpiderTcpApiRuntime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/API/Cdy.Api.SpiderTcp/SpiderTcpApiRuntime.cs -------------------------------------------------------------------------------- /Run/API/Cdy.Api.SpiderTcp/TcpApiData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/API/Cdy.Api.SpiderTcp/TcpApiData.cs -------------------------------------------------------------------------------- /Run/API/Cdy.Api.SpiderTcp/TcpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/API/Cdy.Api.SpiderTcp/TcpClient.cs -------------------------------------------------------------------------------- /Run/Driver/Cdy.Spider.CalculateDriver/CalculateDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/Cdy.Spider.CalculateDriver/CalculateDriver.cs -------------------------------------------------------------------------------- /Run/Driver/Cdy.Spider.CoapClient/CoapClientChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/Cdy.Spider.CoapClient/CoapClientChannel.cs -------------------------------------------------------------------------------- /Run/Driver/Cdy.Spider.CoapClient/CoapClientChannelData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/Cdy.Spider.CoapClient/CoapClientChannelData.cs -------------------------------------------------------------------------------- /Run/Driver/Cdy.Spider.CoapServer/CoapServerChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/Cdy.Spider.CoapServer/CoapServerChannel.cs -------------------------------------------------------------------------------- /Run/Driver/Cdy.Spider.CoapServer/CoapServerChannelData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/Cdy.Spider.CoapServer/CoapServerChannelData.cs -------------------------------------------------------------------------------- /Run/Driver/Cdy.Spider.CustomDriver/CustomDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/Cdy.Spider.CustomDriver/CustomDriver.cs -------------------------------------------------------------------------------- /Run/Driver/Cdy.Spider.CustomDriver/CustomDriverData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/Cdy.Spider.CustomDriver/CustomDriverData.cs -------------------------------------------------------------------------------- /Run/Driver/Cdy.Spider.IEC60870Driver/Lib/BufferFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/Cdy.Spider.IEC60870Driver/Lib/BufferFrame.cs -------------------------------------------------------------------------------- /Run/Driver/Cdy.Spider.IEC60870Driver/Lib/CP16Time2a.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/Cdy.Spider.IEC60870Driver/Lib/CP16Time2a.cs -------------------------------------------------------------------------------- /Run/Driver/Cdy.Spider.IEC60870Driver/Lib/CP24Time2a.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/Cdy.Spider.IEC60870Driver/Lib/CP24Time2a.cs -------------------------------------------------------------------------------- /Run/Driver/Cdy.Spider.IEC60870Driver/Lib/CP32Time2a.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/Cdy.Spider.IEC60870Driver/Lib/CP32Time2a.cs -------------------------------------------------------------------------------- /Run/Driver/Cdy.Spider.IEC60870Driver/Lib/CP56Time2a.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/Cdy.Spider.IEC60870Driver/Lib/CP56Time2a.cs -------------------------------------------------------------------------------- /Run/Driver/Cdy.Spider.IEC60870Driver/Lib/CS101/ASDU.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/Cdy.Spider.IEC60870Driver/Lib/CS101/ASDU.cs -------------------------------------------------------------------------------- /Run/Driver/Cdy.Spider.IEC60870Driver/Lib/CS101/Master.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/Cdy.Spider.IEC60870Driver/Lib/CS101/Master.cs -------------------------------------------------------------------------------- /Run/Driver/Cdy.Spider.IEC60870Driver/Lib/CS101/Slave.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/Cdy.Spider.IEC60870Driver/Lib/CS101/Slave.cs -------------------------------------------------------------------------------- /Run/Driver/Cdy.Spider.IEC60870Driver/Lib/CS101/TypeID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/Cdy.Spider.IEC60870Driver/Lib/CS101/TypeID.cs -------------------------------------------------------------------------------- /Run/Driver/Cdy.Spider.IEC60870Driver/Lib/Frame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/Cdy.Spider.IEC60870Driver/Lib/Frame.cs -------------------------------------------------------------------------------- /Run/Driver/Cdy.Spider.IEC60870Driver/Lib/LibraryCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/Cdy.Spider.IEC60870Driver/Lib/LibraryCommon.cs -------------------------------------------------------------------------------- /Run/Driver/Cdy.Spider.IEC60870Driver/Lib/SystemUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/Cdy.Spider.IEC60870Driver/Lib/SystemUtils.cs -------------------------------------------------------------------------------- /Run/Driver/Cdy.Spider.LinkDriver/LinkDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/Cdy.Spider.LinkDriver/LinkDriver.cs -------------------------------------------------------------------------------- /Run/Driver/Cdy.Spider.LinkDriver/LinkDriverData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/Cdy.Spider.LinkDriver/LinkDriverData.cs -------------------------------------------------------------------------------- /Run/Driver/Cdy.Spider.MQTTClient/MQTTChannelData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/Cdy.Spider.MQTTClient/MQTTChannelData.cs -------------------------------------------------------------------------------- /Run/Driver/Cdy.Spider.MQTTClient/MQTTClientChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/Cdy.Spider.MQTTClient/MQTTClientChannel.cs -------------------------------------------------------------------------------- /Run/Driver/Cdy.Spider.MQTTServer/JsonServerStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/Cdy.Spider.MQTTServer/JsonServerStorage.cs -------------------------------------------------------------------------------- /Run/Driver/Cdy.Spider.MQTTServer/MQTTChannelData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/Cdy.Spider.MQTTServer/MQTTChannelData.cs -------------------------------------------------------------------------------- /Run/Driver/Cdy.Spider.MQTTServer/MQTTServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/Cdy.Spider.MQTTServer/MQTTServer.cs -------------------------------------------------------------------------------- /Run/Driver/Cdy.Spider.MQTTServer/MQTTServerChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/Cdy.Spider.MQTTServer/MQTTServerChannel.cs -------------------------------------------------------------------------------- /Run/Driver/Cdy.Spider.MQTTServer/MQTTServerManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/Cdy.Spider.MQTTServer/MQTTServerManager.cs -------------------------------------------------------------------------------- /Run/Driver/Cdy.Spider.ModbusDriver/Modbus/IModbus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/Cdy.Spider.ModbusDriver/Modbus/IModbus.cs -------------------------------------------------------------------------------- /Run/Driver/Cdy.Spider.ModbusDriver/Modbus/ModbusHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/Cdy.Spider.ModbusDriver/Modbus/ModbusHelper.cs -------------------------------------------------------------------------------- /Run/Driver/Cdy.Spider.ModbusDriver/Modbus/ModbusInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/Cdy.Spider.ModbusDriver/Modbus/ModbusInfo.cs -------------------------------------------------------------------------------- /Run/Driver/Cdy.Spider.ModbusDriver/ModbusIpDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/Cdy.Spider.ModbusDriver/ModbusIpDriver.cs -------------------------------------------------------------------------------- /Run/Driver/Cdy.Spider.ModbusDriver/ModbusIpDriverData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/Cdy.Spider.ModbusDriver/ModbusIpDriverData.cs -------------------------------------------------------------------------------- /Run/Driver/Cdy.Spider.ModbusDriver/ModbusSeriseDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/Cdy.Spider.ModbusDriver/ModbusSeriseDriver.cs -------------------------------------------------------------------------------- /Run/Driver/Cdy.Spider.ModbusDriver/NModbus4/Modbus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/Cdy.Spider.ModbusDriver/NModbus4/Modbus.cs -------------------------------------------------------------------------------- /Run/Driver/Cdy.Spider.ModbusDriver/NModbus4/Resources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/Cdy.Spider.ModbusDriver/NModbus4/Resources.cs -------------------------------------------------------------------------------- /Run/Driver/Cdy.Spider.OpcClient/OpcUAChannelData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/Cdy.Spider.OpcClient/OpcUAChannelData.cs -------------------------------------------------------------------------------- /Run/Driver/Cdy.Spider.OpcClient/OpcUaChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/Cdy.Spider.OpcClient/OpcUaChannel.cs -------------------------------------------------------------------------------- /Run/Driver/Cdy.Spider.OpcClient/OpcUaClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/Cdy.Spider.OpcClient/OpcUaClient.cs -------------------------------------------------------------------------------- /Run/Driver/Cdy.Spider.OpcDaClient/OpcDAChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/Cdy.Spider.OpcDaClient/OpcDAChannel.cs -------------------------------------------------------------------------------- /Run/Driver/Cdy.Spider.OpcDaClient/OpcDAChannelData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/Cdy.Spider.OpcDaClient/OpcDAChannelData.cs -------------------------------------------------------------------------------- /Run/Driver/Cdy.Spider.OpcDriver/OpcDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/Cdy.Spider.OpcDriver/OpcDriver.cs -------------------------------------------------------------------------------- /Run/Driver/Cdy.Spider.OpcDriver/OpcDriverData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/Cdy.Spider.OpcDriver/OpcDriverData.cs -------------------------------------------------------------------------------- /Run/Driver/Cdy.Spider.SystemDriver/SystemDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/Cdy.Spider.SystemDriver/SystemDriver.cs -------------------------------------------------------------------------------- /Run/Driver/Cdy.Spider.SystemDriver/SystemDriverData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/Cdy.Spider.SystemDriver/SystemDriverData.cs -------------------------------------------------------------------------------- /Run/Driver/Cdy.Spider.TcpClient/TcpClientChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/Cdy.Spider.TcpClient/TcpClientChannel.cs -------------------------------------------------------------------------------- /Run/Driver/Cdy.Spider.TcpClient/TcpClientChannelData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/Cdy.Spider.TcpClient/TcpClientChannelData.cs -------------------------------------------------------------------------------- /Run/Driver/Cdy.Spider.UdpClient/UdpClientChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/Cdy.Spider.UdpClient/UdpClientChannel.cs -------------------------------------------------------------------------------- /Run/Driver/Cdy.Spider.UdpClient/UdpClientChannelData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/Cdy.Spider.UdpClient/UdpClientChannelData.cs -------------------------------------------------------------------------------- /Run/Driver/Cdy.Spider.WebApiClient/WebApiClientChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/Cdy.Spider.WebApiClient/WebApiClientChannel.cs -------------------------------------------------------------------------------- /Run/Driver/Cdy.Spider.WebApiServer/ServiceMapManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/Cdy.Spider.WebApiServer/ServiceMapManager.cs -------------------------------------------------------------------------------- /Run/Driver/Cdy.Spider.WebApiServer/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/Cdy.Spider.WebApiServer/Startup.cs -------------------------------------------------------------------------------- /Run/Driver/Cdy.Spider.WebApiServer/WebApiServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/Cdy.Spider.WebApiServer/WebApiServer.cs -------------------------------------------------------------------------------- /Run/Driver/Cdy.Spider.WebApiServer/WebApiServerChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/Cdy.Spider.WebApiServer/WebApiServerChannel.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OPCDALib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OPCDALib.csproj -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Ae/CATID_OPCAEServer10.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Ae/CATID_OPCAEServer10.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Ae/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Ae/Constants.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Ae/FILETIME.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Ae/FILETIME.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Ae/IOPCEventAreaBrowser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Ae/IOPCEventAreaBrowser.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Ae/IOPCEventServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Ae/IOPCEventServer.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Ae/IOPCEventServer2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Ae/IOPCEventServer2.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Ae/IOPCEventSink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Ae/IOPCEventSink.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Ae/ONEVENTSTRUCT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Ae/ONEVENTSTRUCT.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Ae/OPCAEBROWSEDIRECTION.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Ae/OPCAEBROWSEDIRECTION.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Ae/OPCAEBROWSETYPE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Ae/OPCAEBROWSETYPE.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Ae/OPCCONDITIONSTATE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Ae/OPCCONDITIONSTATE.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Ae/OPCEVENTSERVERSTATE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Ae/OPCEVENTSERVERSTATE.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Ae/OPCEVENTSERVERSTATUS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Ae/OPCEVENTSERVERSTATUS.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/AssemblyVersionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/AssemblyVersionInfo.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Batch/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Batch/Constants.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Batch/EnumSets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Batch/EnumSets.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Batch/IOPCBatchServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Batch/IOPCBatchServer.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Batch/IOPCBatchServer2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Batch/IOPCBatchServer2.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Batch/OPCBATCHSUMMARY.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Batch/OPCBATCHSUMMARY.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Batch/Properties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Batch/Properties.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Cmd/CATID_OPCCMDServer10.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Cmd/CATID_OPCCMDServer10.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Cmd/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Cmd/Constants.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Cmd/ControlCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Cmd/ControlCommand.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Cmd/EventName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Cmd/EventName.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Cmd/IOPCComandCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Cmd/IOPCComandCallback.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Cmd/IOPCCommandExecution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Cmd/IOPCCommandExecution.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Cmd/OpcCmdArgument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Cmd/OpcCmdArgument.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Cmd/OpcCmdBrowseFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Cmd/OpcCmdBrowseFilter.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Cmd/OpcCmdTargetElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Cmd/OpcCmdTargetElement.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Cmd/StateName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Cmd/StateName.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Comn/CONNECTDATA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Comn/CONNECTDATA.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Comn/IConnectionPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Comn/IConnectionPoint.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Comn/IEnumConnections.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Comn/IEnumConnections.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Comn/IEnumGUID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Comn/IEnumGUID.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Comn/IEnumString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Comn/IEnumString.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Comn/IEnumUnknown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Comn/IEnumUnknown.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Comn/IOPCCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Comn/IOPCCommon.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Comn/IOPCEnumGUID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Comn/IOPCEnumGUID.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Comn/IOPCServerList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Comn/IOPCServerList.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Comn/IOPCServerList2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Comn/IOPCServerList2.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Comn/IOPCShutdown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Comn/IOPCShutdown.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Da/CATID_OPCDAServer10.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Da/CATID_OPCDAServer10.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Da/CATID_OPCDAServer20.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Da/CATID_OPCDAServer20.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Da/CATID_OPCDAServer30.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Da/CATID_OPCDAServer30.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Da/CATID_XMLDAServer10.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Da/CATID_XMLDAServer10.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Da/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Da/Constants.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Da/FILETIME.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Da/FILETIME.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Da/IOPCAsyncIO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Da/IOPCAsyncIO.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Da/IOPCAsyncIO2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Da/IOPCAsyncIO2.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Da/IOPCAsyncIO3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Da/IOPCAsyncIO3.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Da/IOPCBrowse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Da/IOPCBrowse.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Da/IOPCDataCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Da/IOPCDataCallback.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Da/IOPCGroupStateMgt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Da/IOPCGroupStateMgt.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Da/IOPCGroupStateMgt2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Da/IOPCGroupStateMgt2.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Da/IOPCItemDeadbandMgt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Da/IOPCItemDeadbandMgt.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Da/IOPCItemIO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Da/IOPCItemIO.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Da/IOPCItemMgt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Da/IOPCItemMgt.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Da/IOPCItemProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Da/IOPCItemProperties.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Da/IOPCItemSamplingMgt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Da/IOPCItemSamplingMgt.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Da/IOPCServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Da/IOPCServer.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Da/IOPCSyncIO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Da/IOPCSyncIO.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Da/IOPCSyncIO2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Da/IOPCSyncIO2.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Da/OPCBROWSEDIRECTION.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Da/OPCBROWSEDIRECTION.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Da/OPCBROWSEELEMENT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Da/OPCBROWSEELEMENT.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Da/OPCBROWSEFILTER.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Da/OPCBROWSEFILTER.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Da/OPCBROWSETYPE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Da/OPCBROWSETYPE.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Da/OPCDATASOURCE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Da/OPCDATASOURCE.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Da/OPCENUMSCOPE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Da/OPCENUMSCOPE.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Da/OPCEUTYPE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Da/OPCEUTYPE.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Da/OPCGROUPHEADER.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Da/OPCGROUPHEADER.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Da/OPCGROUPHEADERWRITE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Da/OPCGROUPHEADERWRITE.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Da/OPCITEMATTRIBUTES.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Da/OPCITEMATTRIBUTES.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Da/OPCITEMDEF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Da/OPCITEMDEF.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Da/OPCITEMHEADER1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Da/OPCITEMHEADER1.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Da/OPCITEMHEADER2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Da/OPCITEMHEADER2.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Da/OPCITEMHEADERWRITE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Da/OPCITEMHEADERWRITE.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Da/OPCITEMPROPERTIES.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Da/OPCITEMPROPERTIES.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Da/OPCITEMPROPERTY.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Da/OPCITEMPROPERTY.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Da/OPCITEMRESULT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Da/OPCITEMRESULT.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Da/OPCITEMSTATE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Da/OPCITEMSTATE.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Da/OPCITEMVQT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Da/OPCITEMVQT.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Da/OPCNAMESPACETYPE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Da/OPCNAMESPACETYPE.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Da/OPCSERVERSTATE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Da/OPCSERVERSTATE.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Da/OPCSERVERSTATUS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Da/OPCSERVERSTATUS.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Da/Properties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Da/Properties.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Da/Qualities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Da/Qualities.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Dx/CATID_OPCDXServer10.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Dx/CATID_OPCDXServer10.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Dx/ConnectStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Dx/ConnectStatus.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Dx/ConnectStatusName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Dx/ConnectStatusName.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Dx/ConnectionState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Dx/ConnectionState.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Dx/ConnectionStateName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Dx/ConnectionStateName.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Dx/DXConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Dx/DXConnection.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Dx/DXGeneralResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Dx/DXGeneralResponse.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Dx/IOPCConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Dx/IOPCConfiguration.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Dx/IdentifiedResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Dx/IdentifiedResult.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Dx/ItemIdentifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Dx/ItemIdentifier.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Dx/LimitStatusName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Dx/LimitStatusName.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Dx/Mask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Dx/Mask.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Dx/Names.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Dx/Names.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Dx/QualityStatusName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Dx/QualityStatusName.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Dx/ServerState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Dx/ServerState.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Dx/ServerStateName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Dx/ServerStateName.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Dx/ServerType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Dx/ServerType.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Dx/ServerTypeName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Dx/ServerTypeName.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Dx/SourceServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Dx/SourceServer.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Hda/CATID_OPCHDAServer10.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Hda/CATID_OPCHDAServer10.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Hda/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Hda/Constants.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Hda/IOPCHDA_AsyncRead.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Hda/IOPCHDA_AsyncRead.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Hda/IOPCHDA_AsyncUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Hda/IOPCHDA_AsyncUpdate.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Hda/IOPCHDA_Browser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Hda/IOPCHDA_Browser.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Hda/IOPCHDA_DataCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Hda/IOPCHDA_DataCallback.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Hda/IOPCHDA_Playback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Hda/IOPCHDA_Playback.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Hda/IOPCHDA_Server.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Hda/IOPCHDA_Server.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Hda/IOPCHDA_SyncRead.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Hda/IOPCHDA_SyncRead.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Hda/IOPCHDA_SyncUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Hda/IOPCHDA_SyncUpdate.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Hda/OPCHDA_AGGREGATE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Hda/OPCHDA_AGGREGATE.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Hda/OPCHDA_ANNOTATION.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Hda/OPCHDA_ANNOTATION.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Hda/OPCHDA_ATTRIBUTE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Hda/OPCHDA_ATTRIBUTE.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Hda/OPCHDA_BROWSETYPE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Hda/OPCHDA_BROWSETYPE.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Hda/OPCHDA_EDITTYPE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Hda/OPCHDA_EDITTYPE.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Hda/OPCHDA_FILETIME.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Hda/OPCHDA_FILETIME.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Hda/OPCHDA_ITEM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Hda/OPCHDA_ITEM.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Hda/OPCHDA_MODIFIEDITEM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Hda/OPCHDA_MODIFIEDITEM.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Hda/OPCHDA_OPERATORCODES.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Hda/OPCHDA_OPERATORCODES.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Hda/OPCHDA_SERVERSTATUS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Hda/OPCHDA_SERVERSTATUS.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Hda/OPCHDA_TIME.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Hda/OPCHDA_TIME.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/ResultIds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/ResultIds.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Security/IOPCSecurityNT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Security/IOPCSecurityNT.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/ServerDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/ServerDescription.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/ServerEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/ServerEnumerator.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcComRcw/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcComRcw/Utils.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi.Com/Ae/BrowsePosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi.Com/Ae/BrowsePosition.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi.Com/Ae/Interop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi.Com/Ae/Interop.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi.Com/Ae/ResultIDs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi.Com/Ae/ResultIDs.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi.Com/Ae/Server.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi.Com/Ae/Server.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi.Com/Ae/Subscription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi.Com/Ae/Subscription.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi.Com/ConnectionPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi.Com/ConnectionPoint.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi.Com/Cpx/ResultIDs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi.Com/Cpx/ResultIDs.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi.Com/Da/BrowsePosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi.Com/Da/BrowsePosition.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi.Com/Da/Interop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi.Com/Da/Interop.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi.Com/Da/Request.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi.Com/Da/Request.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi.Com/Da/ResultIDs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi.Com/Da/ResultIDs.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi.Com/Da/Server.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi.Com/Da/Server.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi.Com/Da/Subscription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi.Com/Da/Subscription.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi.Com/Da/Wrapper/Group.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi.Com/Da/Wrapper/Group.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi.Com/Da/Wrapper/Server.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi.Com/Da/Wrapper/Server.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi.Com/Da20/BrowsePosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi.Com/Da20/BrowsePosition.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi.Com/Da20/Server.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi.Com/Da20/Server.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi.Com/Da20/Subscription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi.Com/Da20/Subscription.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi.Com/Dx/Interop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi.Com/Dx/Interop.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi.Com/Dx/ResultIDs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi.Com/Dx/ResultIDs.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi.Com/Dx/Server.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi.Com/Dx/Server.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi.Com/EnumGuid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi.Com/EnumGuid.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi.Com/EnumString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi.Com/EnumString.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi.Com/Factory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi.Com/Factory.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi.Com/Hda/BrowsePosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi.Com/Hda/BrowsePosition.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi.Com/Hda/Browser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi.Com/Hda/Browser.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi.Com/Hda/DataCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi.Com/Hda/DataCallback.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi.Com/Hda/Interop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi.Com/Hda/Interop.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi.Com/Hda/Request.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi.Com/Hda/Request.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi.Com/Hda/ResultIDs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi.Com/Hda/ResultIDs.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi.Com/Hda/Server.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi.Com/Hda/Server.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi.Com/IOPCWrappedServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi.Com/IOPCWrappedServer.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi.Com/Interop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi.Com/Interop.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi.Com/Server.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi.Com/Server.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi.Com/ServerEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi.Com/ServerEnumerator.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/AccessDeniedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/AccessDeniedException.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Ae/Attribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Ae/Attribute.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Ae/AttributeCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Ae/AttributeCollection.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Ae/AttributeDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Ae/AttributeDictionary.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Ae/AttributeValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Ae/AttributeValue.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Ae/BrowseElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Ae/BrowseElement.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Ae/BrowsePosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Ae/BrowsePosition.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Ae/BrowseType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Ae/BrowseType.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Ae/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Ae/Category.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Ae/ChangeMask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Ae/ChangeMask.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Ae/Condition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Ae/Condition.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Ae/ConditionState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Ae/ConditionState.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Ae/EnabledStateResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Ae/EnabledStateResult.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Ae/EventAcknowledgement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Ae/EventAcknowledgement.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Ae/EventNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Ae/EventNotification.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Ae/EventType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Ae/EventType.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Ae/FilterType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Ae/FilterType.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Ae/IServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Ae/IServer.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Ae/ISubscription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Ae/ISubscription.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Ae/ItemUrl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Ae/ItemUrl.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Ae/ItemUrlCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Ae/ItemUrlCollection.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Ae/Server.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Ae/Server.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Ae/ServerState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Ae/ServerState.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Ae/ServerStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Ae/ServerStatus.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Ae/StateMask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Ae/StateMask.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Ae/SubCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Ae/SubCondition.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Ae/Subscription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Ae/Subscription.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Ae/SubscriptionFilters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Ae/SubscriptionFilters.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Ae/SubscriptionState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Ae/SubscriptionState.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/ConnectAsyncDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/ConnectAsyncDelegate.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/ConnectData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/ConnectData.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/ConnectFailedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/ConnectFailedException.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Convert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Convert.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Cpx/Ascii.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Cpx/Ascii.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Cpx/BinaryReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Cpx/BinaryReader.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Cpx/BinaryStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Cpx/BinaryStream.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Cpx/BinaryWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Cpx/BinaryWriter.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Cpx/BitString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Cpx/BitString.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Cpx/CharString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Cpx/CharString.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Cpx/ComplexItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Cpx/ComplexItem.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Cpx/ComplexTypeCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Cpx/ComplexTypeCache.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Cpx/ComplexValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Cpx/ComplexValue.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Cpx/Context.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Cpx/Context.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Cpx/Double.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Cpx/Double.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Cpx/FieldType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Cpx/FieldType.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Cpx/FloatingPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Cpx/FloatingPoint.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Cpx/Int16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Cpx/Int16.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Cpx/Int32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Cpx/Int32.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Cpx/Int64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Cpx/Int64.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Cpx/Int8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Cpx/Int8.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Cpx/Integer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Cpx/Integer.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Cpx/Single.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Cpx/Single.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Cpx/TypeDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Cpx/TypeDescription.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Cpx/TypeDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Cpx/TypeDictionary.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Cpx/TypeReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Cpx/TypeReference.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Cpx/UInt16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Cpx/UInt16.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Cpx/UInt32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Cpx/UInt32.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Cpx/UInt64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Cpx/UInt64.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Cpx/UInt8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Cpx/UInt8.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Cpx/Unicode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Cpx/Unicode.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Da/BrowseAsyncDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Da/BrowseAsyncDelegate.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Da/BrowseElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Da/BrowseElement.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Da/BrowseFilters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Da/BrowseFilters.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Da/BrowsePosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Da/BrowsePosition.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Da/IServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Da/IServer.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Da/ISubscription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Da/ISubscription.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Da/Item.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Da/Item.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Da/ItemCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Da/ItemCollection.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Da/ItemProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Da/ItemProperty.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Da/ItemResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Da/ItemResult.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Da/ItemValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Da/ItemValue.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Da/ItemValueResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Da/ItemValueResult.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Da/Property.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Da/Property.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Da/PropertyDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Da/PropertyDescription.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Da/PropertyID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Da/PropertyID.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Da/Quality.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Da/Quality.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Da/ReadAsyncDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Da/ReadAsyncDelegate.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Da/Request.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Da/Request.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Da/ResultFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Da/ResultFilter.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Da/Server.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Da/Server.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Da/ServerStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Da/ServerStatus.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Da/StateMask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Da/StateMask.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Da/Subscription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Da/Subscription.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Da/SubscriptionState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Da/SubscriptionState.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Da/WriteAsyncDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Da/WriteAsyncDelegate.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Da/accessRights.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Da/accessRights.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Da/browseFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Da/browseFilter.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Da/euType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Da/euType.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Da/limitBits.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Da/limitBits.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Da/qualityBits.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Da/qualityBits.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Da/qualityMasks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Da/qualityMasks.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Da/serverState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Da/serverState.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/DisconnectAsyncDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/DisconnectAsyncDelegate.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Dx/BrowsePathCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Dx/BrowsePathCollection.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Dx/DXConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Dx/DXConnection.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Dx/DXConnectionQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Dx/DXConnectionQuery.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Dx/GeneralResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Dx/GeneralResponse.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Dx/IServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Dx/IServer.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Dx/IdentifiedResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Dx/IdentifiedResult.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Dx/ItemIdentifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Dx/ItemIdentifier.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Dx/Server.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Dx/Server.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Dx/ServerType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Dx/ServerType.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Dx/SourceServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Dx/SourceServer.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Factory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Factory.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/GetLocaleAsyncDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/GetLocaleAsyncDelegate.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Hda/Aggregate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Hda/Aggregate.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Hda/AggregateCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Hda/AggregateCollection.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Hda/AggregateID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Hda/AggregateID.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Hda/AnnotationValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Hda/AnnotationValue.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Hda/Attribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Hda/Attribute.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Hda/AttributeCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Hda/AttributeCollection.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Hda/AttributeID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Hda/AttributeID.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Hda/AttributeValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Hda/AttributeValue.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Hda/BrowseElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Hda/BrowseElement.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Hda/BrowseFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Hda/BrowseFilter.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Hda/BrowsePosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Hda/BrowsePosition.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Hda/EditType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Hda/EditType.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Hda/GetStatusDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Hda/GetStatusDelegate.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Hda/IActualTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Hda/IActualTime.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Hda/IBrowser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Hda/IBrowser.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Hda/IServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Hda/IServer.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Hda/Item.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Hda/Item.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Hda/ItemCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Hda/ItemCollection.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Hda/ItemResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Hda/ItemResult.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Hda/ItemTimeCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Hda/ItemTimeCollection.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Hda/ItemValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Hda/ItemValue.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Hda/ItemValueCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Hda/ItemValueCollection.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Hda/ModifiedValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Hda/ModifiedValue.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Hda/Operator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Hda/Operator.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Hda/Quality.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Hda/Quality.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Hda/RelativeTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Hda/RelativeTime.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Hda/Result.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Hda/Result.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Hda/ResultCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Hda/ResultCollection.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Hda/Server.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Hda/Server.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Hda/ServerState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Hda/ServerState.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Hda/ServerStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Hda/ServerStatus.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Hda/Time.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Hda/Time.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Hda/TimeOffset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Hda/TimeOffset.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Hda/TimeOffsetCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Hda/TimeOffsetCollection.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Hda/Trend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Hda/Trend.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Hda/TrendCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Hda/TrendCollection.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/IBrowsePosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/IBrowsePosition.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/IDiscovery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/IDiscovery.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/IFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/IFactory.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/IRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/IRequest.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/IResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/IResult.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/IServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/IServer.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/IdentifiedResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/IdentifiedResult.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/InvalidResponseException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/InvalidResponseException.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/ItemIdentifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/ItemIdentifier.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/ItemIdentifierCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/ItemIdentifierCollection.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Namespace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Namespace.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/NotConnectedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/NotConnectedException.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/ReadOnlyCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/ReadOnlyCollection.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/ReadOnlyDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/ReadOnlyDictionary.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Resources/Strings.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Resources/Strings.resources -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/ResultID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/ResultID.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/ResultIDException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/ResultIDException.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Server.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Server.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/ServerTimeoutException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/ServerTimeoutException.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/SetLocaleAsyncDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/SetLocaleAsyncDelegate.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Specification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Specification.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/Type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/Type.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/URL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/URL.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/UrlScheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/UrlScheme.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/WriteableCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/WriteableCollection.cs -------------------------------------------------------------------------------- /Run/Driver/OPCDALib/OpcNetApi/WriteableDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/OPCDALib/OpcNetApi/WriteableDictionary.cs -------------------------------------------------------------------------------- /Run/Driver/PLC/Cdy.Spider.BeckhoffDriver/AdsData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/PLC/Cdy.Spider.BeckhoffDriver/AdsData.cs -------------------------------------------------------------------------------- /Run/Driver/PLC/Cdy.Spider.BeckhoffDriver/AdsDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/PLC/Cdy.Spider.BeckhoffDriver/AdsDriver.cs -------------------------------------------------------------------------------- /Run/Driver/PLC/Cdy.Spider.BeckhoffDriver/AdsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/PLC/Cdy.Spider.BeckhoffDriver/AdsHelper.cs -------------------------------------------------------------------------------- /Run/Driver/PLC/Cdy.Spider.DeltaDriver/DeltaASHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/PLC/Cdy.Spider.DeltaDriver/DeltaASHelper.cs -------------------------------------------------------------------------------- /Run/Driver/PLC/Cdy.Spider.DeltaDriver/DeltaDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/PLC/Cdy.Spider.DeltaDriver/DeltaDriver.cs -------------------------------------------------------------------------------- /Run/Driver/PLC/Cdy.Spider.DeltaDriver/DeltaHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/PLC/Cdy.Spider.DeltaDriver/DeltaHelper.cs -------------------------------------------------------------------------------- /Run/Driver/PLC/Cdy.Spider.FujiDriver/FujiSPBAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/PLC/Cdy.Spider.FujiDriver/FujiSPBAddress.cs -------------------------------------------------------------------------------- /Run/Driver/PLC/Cdy.Spider.FujiDriver/FujiSPBDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/PLC/Cdy.Spider.FujiDriver/FujiSPBDriver.cs -------------------------------------------------------------------------------- /Run/Driver/PLC/Cdy.Spider.FujiDriver/FujiSPBHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/PLC/Cdy.Spider.FujiDriver/FujiSPBHelper.cs -------------------------------------------------------------------------------- /Run/Driver/PLC/Cdy.Spider.FujiDriver/FujiSPBMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/PLC/Cdy.Spider.FujiDriver/FujiSPBMessage.cs -------------------------------------------------------------------------------- /Run/Driver/PLC/Cdy.Spider.FujiDriver/FujiSPBProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/PLC/Cdy.Spider.FujiDriver/FujiSPBProxy.cs -------------------------------------------------------------------------------- /Run/Driver/PLC/Cdy.Spider.FujiDriver/FujiSPHAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/PLC/Cdy.Spider.FujiDriver/FujiSPHAddress.cs -------------------------------------------------------------------------------- /Run/Driver/PLC/Cdy.Spider.FujiDriver/FujiSPHDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/PLC/Cdy.Spider.FujiDriver/FujiSPHDriver.cs -------------------------------------------------------------------------------- /Run/Driver/PLC/Cdy.Spider.FujiDriver/FujiSPHMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/PLC/Cdy.Spider.FujiDriver/FujiSPHMessage.cs -------------------------------------------------------------------------------- /Run/Driver/PLC/Cdy.Spider.GEDriver/GeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/PLC/Cdy.Spider.GEDriver/GeHelper.cs -------------------------------------------------------------------------------- /Run/Driver/PLC/Cdy.Spider.GEDriver/GeSRTPAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/PLC/Cdy.Spider.GEDriver/GeSRTPAddress.cs -------------------------------------------------------------------------------- /Run/Driver/PLC/Cdy.Spider.GEDriver/GeSRTPDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/PLC/Cdy.Spider.GEDriver/GeSRTPDriver.cs -------------------------------------------------------------------------------- /Run/Driver/PLC/Cdy.Spider.GEDriver/GeSRTPDriverData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/PLC/Cdy.Spider.GEDriver/GeSRTPDriverData.cs -------------------------------------------------------------------------------- /Run/Driver/PLC/Cdy.Spider.GEDriver/GeSRTPMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/PLC/Cdy.Spider.GEDriver/GeSRTPMessage.cs -------------------------------------------------------------------------------- /Run/Driver/PLC/Cdy.Spider.GEDriver/GeSRTPNet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/PLC/Cdy.Spider.GEDriver/GeSRTPNet.cs -------------------------------------------------------------------------------- /Run/Driver/PLC/Cdy.Spider.MelsecDriver/Mc/McHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/PLC/Cdy.Spider.MelsecDriver/Mc/McHelper.cs -------------------------------------------------------------------------------- /Run/Driver/PLC/Cdy.Spider.MelsecDriver/MelsecHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/PLC/Cdy.Spider.MelsecDriver/MelsecHelper.cs -------------------------------------------------------------------------------- /Run/Driver/PLC/Cdy.Spider.OmronDriver/FinsMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/PLC/Cdy.Spider.OmronDriver/FinsMessage.cs -------------------------------------------------------------------------------- /Run/Driver/PLC/Cdy.Spider.OmronDriver/IHostLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/PLC/Cdy.Spider.OmronDriver/IHostLink.cs -------------------------------------------------------------------------------- /Run/Driver/PLC/Cdy.Spider.SiemensDriver/S7Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/PLC/Cdy.Spider.SiemensDriver/S7Message.cs -------------------------------------------------------------------------------- /Run/Driver/PLC/Cdy.Spider.SiemensDriver/SiemensPLCS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Driver/PLC/Cdy.Spider.SiemensDriver/SiemensPLCS.cs -------------------------------------------------------------------------------- /Run/InSpiderRun/Config/ApiRuntime.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/InSpiderRun/Config/ApiRuntime.cfg -------------------------------------------------------------------------------- /Run/InSpiderRun/Config/ChannelRuntime.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/InSpiderRun/Config/ChannelRuntime.cfg -------------------------------------------------------------------------------- /Run/InSpiderRun/Config/DriverRuntime.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/InSpiderRun/Config/DriverRuntime.cfg -------------------------------------------------------------------------------- /Run/InSpiderRun/Config/LinkRuntime.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/InSpiderRun/Config/LinkRuntime.cfg -------------------------------------------------------------------------------- /Run/InSpiderRun/Image/spider.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/InSpiderRun/Image/spider.ico -------------------------------------------------------------------------------- /Run/InSpiderRun/InSpiderRun.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/InSpiderRun/InSpiderRun.csproj -------------------------------------------------------------------------------- /Run/InSpiderRun/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/InSpiderRun/Program.cs -------------------------------------------------------------------------------- /Run/InSpiderRun/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/InSpiderRun/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Run/InSpiderRun/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/InSpiderRun/Properties/Resources.resx -------------------------------------------------------------------------------- /Run/InSpiderRun/Properties/Resources.zh-CN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/InSpiderRun/Properties/Resources.zh-CN.resx -------------------------------------------------------------------------------- /Run/InSpiderRun/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/InSpiderRun/Properties/launchSettings.json -------------------------------------------------------------------------------- /Run/InSpiderRun/Res.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/InSpiderRun/Res.cs -------------------------------------------------------------------------------- /Run/Link/Cdy.Link.Mqtt/Cdy.Link.Mqtt.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Link/Cdy.Link.Mqtt/Cdy.Link.Mqtt.csproj -------------------------------------------------------------------------------- /Run/Link/Cdy.Link.Mqtt/MqttLinkData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Link/Cdy.Link.Mqtt/MqttLinkData.cs -------------------------------------------------------------------------------- /Run/Link/Cdy.Link.Mqtt/MqttRuntime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Link/Cdy.Link.Mqtt/MqttRuntime.cs -------------------------------------------------------------------------------- /Run/Link/Cdy.Link.Tcp/Cdy.Link.Tcp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Link/Cdy.Link.Tcp/Cdy.Link.Tcp.csproj -------------------------------------------------------------------------------- /Run/Link/Cdy.Link.Tcp/NetworkService/APIConst.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Link/Cdy.Link.Tcp/NetworkService/APIConst.cs -------------------------------------------------------------------------------- /Run/Link/Cdy.Link.Tcp/NetworkService/DataServerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Link/Cdy.Link.Tcp/NetworkService/DataServerBase.cs -------------------------------------------------------------------------------- /Run/Link/Cdy.Link.Tcp/NetworkService/TcpServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Link/Cdy.Link.Tcp/NetworkService/TcpServer.cs -------------------------------------------------------------------------------- /Run/Link/Cdy.Link.Tcp/TcpLinkData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Link/Cdy.Link.Tcp/TcpLinkData.cs -------------------------------------------------------------------------------- /Run/Link/Cdy.Link.Tcp/TcpRuntime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Link/Cdy.Link.Tcp/TcpRuntime.cs -------------------------------------------------------------------------------- /Run/Monitor/RealDataService/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Monitor/RealDataService/Program.cs -------------------------------------------------------------------------------- /Run/Monitor/RealDataService/RealDataService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Monitor/RealDataService/RealDataService.csproj -------------------------------------------------------------------------------- /Run/Monitor/RealDataService/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Monitor/RealDataService/Startup.cs -------------------------------------------------------------------------------- /Run/Monitor/RealDataService/UserConfigDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Monitor/RealDataService/UserConfigDocument.cs -------------------------------------------------------------------------------- /Run/Monitor/RealDataService/WebApiServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Monitor/RealDataService/WebApiServer.cs -------------------------------------------------------------------------------- /Run/Monitor/RealDataService/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Run/Monitor/RealDataService/appsettings.json -------------------------------------------------------------------------------- /Spider.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/Spider.sln -------------------------------------------------------------------------------- /SpiderRuntime/Api/APIManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/SpiderRuntime/Api/APIManager.cs -------------------------------------------------------------------------------- /SpiderRuntime/ChannelManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/SpiderRuntime/ChannelManager.cs -------------------------------------------------------------------------------- /SpiderRuntime/Data/Api.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/SpiderRuntime/Data/Api.cfg -------------------------------------------------------------------------------- /SpiderRuntime/Data/Channel.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/SpiderRuntime/Data/Channel.cfg -------------------------------------------------------------------------------- /SpiderRuntime/Data/Driver.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/SpiderRuntime/Data/Driver.cfg -------------------------------------------------------------------------------- /SpiderRuntime/DeviceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/SpiderRuntime/DeviceManager.cs -------------------------------------------------------------------------------- /SpiderRuntime/DriverManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/SpiderRuntime/DriverManager.cs -------------------------------------------------------------------------------- /SpiderRuntime/Link/LinkManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/SpiderRuntime/Link/LinkManager.cs -------------------------------------------------------------------------------- /SpiderRuntime/Runer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/SpiderRuntime/Runer.cs -------------------------------------------------------------------------------- /SpiderRuntime/Script/ScriptService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/SpiderRuntime/Script/ScriptService.cs -------------------------------------------------------------------------------- /SpiderRuntime/SpiderRuntime.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/Spider/HEAD/SpiderRuntime/SpiderRuntime.csproj --------------------------------------------------------------------------------