电气前端提交
This commit is contained in:
parent
5f9f05885d
commit
d03629aab0
@ -0,0 +1 @@
|
||||
{"RootPath":"E:\\Di-Electrical\\c#前端\\SWS.CAD.Base","ProjectFileName":"SWS.CAD.Base.csproj","Configuration":"Debug|AnyCPU","FrameworkPath":"","Sources":[{"SourceFile":"BlockDragJig.cs"},{"SourceFile":"General.cs"},{"SourceFile":"Properties\\AssemblyInfo.cs"},{"SourceFile":"obj\\Debug\\.NETFramework,Version=v4.8.AssemblyAttributes.cs"}],"References":[{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\Microsoft.CSharp.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\mscorlib.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\Di-Electrical\\c#前端\\SWS.Commons\\bin\\Debug\\SWS.Commons.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":"E:\\Di-Electrical\\c#前端\\SWS.Commons\\bin\\Debug\\SWS.Commons.dll"},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Core.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Data.DataSetExtensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Data.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Drawing.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Net.Http.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Xml.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Xml.Linq.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""}],"Analyzers":[],"Outputs":[{"OutputItemFullPath":"E:\\Di-Electrical\\c#前端\\SWS.CAD.Base\\bin\\Debug\\SWS.CAD.Base.dll","OutputItemRelativePath":"SWS.CAD.Base.dll"},{"OutputItemFullPath":"","OutputItemRelativePath":""}],"CopyToOutputEntries":[]}
|
53
newFront/c#前端/SWS.CAD.Base/BlockDragJig.cs
Normal file
53
newFront/c#前端/SWS.CAD.Base/BlockDragJig.cs
Normal file
@ -0,0 +1,53 @@
|
||||
using Bricscad.EditorInput;
|
||||
using Teigha.DatabaseServices;
|
||||
using Teigha.Geometry;
|
||||
using Teigha.GraphicsInterface;
|
||||
|
||||
namespace SWS.CAD.Base
|
||||
{
|
||||
// 自定义Jig类
|
||||
public class BlockDragJig : DrawJig
|
||||
{
|
||||
private BlockReference _br;
|
||||
private Bricscad.EditorInput.Editor _ed;
|
||||
private Point3d _insertPoint;
|
||||
|
||||
public BlockDragJig(BlockReference br, Bricscad.EditorInput.Editor ed)
|
||||
{
|
||||
_br = br;
|
||||
_ed = ed;
|
||||
}
|
||||
|
||||
// 实时更新位置
|
||||
protected override bool WorldDraw(WorldDraw draw)
|
||||
{
|
||||
draw.Geometry.Draw(_br);
|
||||
return true;
|
||||
}
|
||||
|
||||
// 处理鼠标移动
|
||||
protected override SamplerStatus Sampler(JigPrompts prompts)
|
||||
{
|
||||
JigPromptPointOptions ppo = new JigPromptPointOptions("\n指定图元位置: ");
|
||||
ppo.UserInputControls = UserInputControls.Accept3dCoordinates |
|
||||
UserInputControls.NoZeroResponseAccepted |
|
||||
UserInputControls.NoNegativeResponseAccepted;
|
||||
|
||||
PromptPointResult ppr = prompts.AcquirePoint(ppo);
|
||||
|
||||
if (ppr.Value != _insertPoint)
|
||||
{
|
||||
_insertPoint = ppr.Value;
|
||||
_br.Position = _insertPoint;
|
||||
return SamplerStatus.OK;
|
||||
}
|
||||
else
|
||||
{
|
||||
return SamplerStatus.NoChange;
|
||||
}
|
||||
}
|
||||
|
||||
// 获取最终插入点
|
||||
public Point3d InsertPoint => _insertPoint;
|
||||
}
|
||||
}
|
1471
newFront/c#前端/SWS.CAD.Base/General.cs
Normal file
1471
newFront/c#前端/SWS.CAD.Base/General.cs
Normal file
File diff suppressed because it is too large
Load Diff
33
newFront/c#前端/SWS.CAD.Base/Properties/AssemblyInfo.cs
Normal file
33
newFront/c#前端/SWS.CAD.Base/Properties/AssemblyInfo.cs
Normal file
@ -0,0 +1,33 @@
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
// 有关程序集的一般信息由以下
|
||||
// 控制。更改这些特性值可修改
|
||||
// 与程序集关联的信息。
|
||||
[assembly: AssemblyTitle("SWS.CAD.Base")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("SWS.CAD.Base")]
|
||||
[assembly: AssemblyCopyright("Copyright © 2025")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
// 将 ComVisible 设置为 false 会使此程序集中的类型
|
||||
//对 COM 组件不可见。如果需要从 COM 访问此程序集中的类型
|
||||
//请将此类型的 ComVisible 特性设置为 true。
|
||||
[assembly: ComVisible(false)]
|
||||
|
||||
// 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID
|
||||
[assembly: Guid("d4a15774-1469-45a0-9eff-771271764a00")]
|
||||
|
||||
// 程序集的版本信息由下列四个值组成:
|
||||
//
|
||||
// 主版本
|
||||
// 次版本
|
||||
// 生成号
|
||||
// 修订号
|
||||
//
|
||||
[assembly: AssemblyVersion("1.0.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
66
newFront/c#前端/SWS.CAD.Base/SWS.CAD.Base.csproj
Normal file
66
newFront/c#前端/SWS.CAD.Base/SWS.CAD.Base.csproj
Normal file
@ -0,0 +1,66 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{D4A15774-1469-45A0-9EFF-771271764A00}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||
<RootNamespace>SWS.CAD.Base</RootNamespace>
|
||||
<AssemblyName>SWS.CAD.Base</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<Deterministic>true</Deterministic>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<PlatformTarget>x64</PlatformTarget>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="BrxMgd">
|
||||
<HintPath>D:\Program Files\KunHeng\KunHengCAD V21 zh_CN\BrxMgd.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Drawing" />
|
||||
<Reference Include="System.Xml.Linq" />
|
||||
<Reference Include="System.Data.DataSetExtensions" />
|
||||
<Reference Include="Microsoft.CSharp" />
|
||||
<Reference Include="System.Data" />
|
||||
<Reference Include="System.Net.Http" />
|
||||
<Reference Include="System.Xml" />
|
||||
<Reference Include="TD_Mgd">
|
||||
<HintPath>D:\Program Files\KunHeng\KunHengCAD V21 zh_CN\TD_Mgd.dll</HintPath>
|
||||
</Reference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="BlockDragJig.cs" />
|
||||
<Compile Include="General.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\SWS.Commons\SWS.Commons.csproj">
|
||||
<Project>{9ac724f6-883d-4357-9422-602748f25b69}</Project>
|
||||
<Name>SWS.Commons</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="app.config" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
</Project>
|
11
newFront/c#前端/SWS.CAD.Base/app.config
Normal file
11
newFront/c#前端/SWS.CAD.Base/app.config
Normal file
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<configuration>
|
||||
<runtime>
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Threading.Tasks.Extensions" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.2.0.1" newVersion="4.2.0.1" />
|
||||
</dependentAssembly>
|
||||
</assemblyBinding>
|
||||
</runtime>
|
||||
</configuration>
|
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/ACCAMERA_21.4_15.tx
Normal file
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/ACCAMERA_21.4_15.tx
Normal file
Binary file not shown.
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/ATEXT_21.4_15.tx
Normal file
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/ATEXT_21.4_15.tx
Normal file
Binary file not shown.
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/AcMPolygonObj15_21.4_15.tx
Normal file
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/AcMPolygonObj15_21.4_15.tx
Normal file
Binary file not shown.
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/BrxMgd.dll
Normal file
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/BrxMgd.dll
Normal file
Binary file not shown.
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/DbConstraints_21.4_15.tx
Normal file
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/DbConstraints_21.4_15.tx
Normal file
Binary file not shown.
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/INIFileParser.dll
Normal file
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/INIFileParser.dll
Normal file
Binary file not shown.
1181
newFront/c#前端/SWS.CAD.Base/bin/Debug/INIFileParser.xml
Normal file
1181
newFront/c#前端/SWS.CAD.Base/bin/Debug/INIFileParser.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/ISM_21.4_15.tx
Normal file
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/ISM_21.4_15.tx
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
2400
newFront/c#前端/SWS.CAD.Base/bin/Debug/Microsoft.Xaml.Behaviors.xml
Normal file
2400
newFront/c#前端/SWS.CAD.Base/bin/Debug/Microsoft.Xaml.Behaviors.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/Newtonsoft.Json.dll
Normal file
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/Newtonsoft.Json.dll
Normal file
Binary file not shown.
11363
newFront/c#前端/SWS.CAD.Base/bin/Debug/Newtonsoft.Json.xml
Normal file
11363
newFront/c#前端/SWS.CAD.Base/bin/Debug/Newtonsoft.Json.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/Prism.Wpf.dll
Normal file
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/Prism.Wpf.dll
Normal file
Binary file not shown.
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/Prism.Wpf.pdb
Normal file
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/Prism.Wpf.pdb
Normal file
Binary file not shown.
5209
newFront/c#前端/SWS.CAD.Base/bin/Debug/Prism.Wpf.xml
Normal file
5209
newFront/c#前端/SWS.CAD.Base/bin/Debug/Prism.Wpf.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/Prism.dll
Normal file
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/Prism.dll
Normal file
Binary file not shown.
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/Prism.pdb
Normal file
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/Prism.pdb
Normal file
Binary file not shown.
3445
newFront/c#前端/SWS.CAD.Base/bin/Debug/Prism.xml
Normal file
3445
newFront/c#前端/SWS.CAD.Base/bin/Debug/Prism.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/RText_21.4_15.tx
Normal file
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/RText_21.4_15.tx
Normal file
Binary file not shown.
Binary file not shown.
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/SCENEOE_21.4_15.tx
Normal file
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/SCENEOE_21.4_15.tx
Normal file
Binary file not shown.
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/SWS.CAD.Base.dll
Normal file
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/SWS.CAD.Base.dll
Normal file
Binary file not shown.
11
newFront/c#前端/SWS.CAD.Base/bin/Debug/SWS.CAD.Base.dll.config
Normal file
11
newFront/c#前端/SWS.CAD.Base/bin/Debug/SWS.CAD.Base.dll.config
Normal file
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<configuration>
|
||||
<runtime>
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Threading.Tasks.Extensions" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.2.0.1" newVersion="4.2.0.1" />
|
||||
</dependentAssembly>
|
||||
</assemblyBinding>
|
||||
</runtime>
|
||||
</configuration>
|
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/SWS.CAD.Base.pdb
Normal file
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/SWS.CAD.Base.pdb
Normal file
Binary file not shown.
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/SWS.Commons.dll
Normal file
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/SWS.Commons.dll
Normal file
Binary file not shown.
31
newFront/c#前端/SWS.CAD.Base/bin/Debug/SWS.Commons.dll.config
Normal file
31
newFront/c#前端/SWS.CAD.Base/bin/Debug/SWS.Commons.dll.config
Normal file
@ -0,0 +1,31 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<configuration>
|
||||
<runtime>
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Threading.Tasks.Extensions" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.2.0.1" newVersion="4.2.0.1" />
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="Prism.Wpf" publicKeyToken="40ee6c3a2184dc59" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-9.0.537.60525" newVersion="9.0.537.60525" />
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="Prism" publicKeyToken="40ee6c3a2184dc59" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-9.0.537.60525" newVersion="9.0.537.60525" />
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="DryIoc" publicKeyToken="dfbf2bd50fcf7768" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-5.4.3.0" newVersion="5.4.3.0" />
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="Prism.Container.Abstractions" publicKeyToken="40ee6c3a2184dc59" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-9.0.106.9543" newVersion="9.0.106.9543" />
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="Microsoft.Extensions.DependencyInjection.Abstractions" publicKeyToken="adb9793829ddae60" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-8.0.0.1" newVersion="8.0.0.1" />
|
||||
</dependentAssembly>
|
||||
</assemblyBinding>
|
||||
</runtime>
|
||||
</configuration>
|
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/SWS.Commons.pdb
Normal file
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/SWS.Commons.pdb
Normal file
Binary file not shown.
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/SWS.Model.dll
Normal file
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/SWS.Model.dll
Normal file
Binary file not shown.
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/SWS.Model.pdb
Normal file
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/SWS.Model.pdb
Normal file
Binary file not shown.
Binary file not shown.
@ -0,0 +1,200 @@
|
||||
<?xml version="1.0" encoding="utf-8"?><doc>
|
||||
<assembly>
|
||||
<name>System.Runtime.CompilerServices.Unsafe</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:System.Runtime.CompilerServices.Unsafe">
|
||||
<summary>Contains generic, low-level functionality for manipulating pointers.</summary>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.Add``1(``0@,System.Int32)">
|
||||
<summary>Adds an element offset to the given reference.</summary>
|
||||
<param name="source">The reference to add the offset to.</param>
|
||||
<param name="elementOffset">The offset to add.</param>
|
||||
<typeparam name="T">The type of reference.</typeparam>
|
||||
<returns>A new reference that reflects the addition of offset to pointer.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.Add``1(``0@,System.IntPtr)">
|
||||
<summary>Adds an element offset to the given reference.</summary>
|
||||
<param name="source">The reference to add the offset to.</param>
|
||||
<param name="elementOffset">The offset to add.</param>
|
||||
<typeparam name="T">The type of reference.</typeparam>
|
||||
<returns>A new reference that reflects the addition of offset to pointer.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.AddByteOffset``1(``0@,System.IntPtr)">
|
||||
<summary>Adds a byte offset to the given reference.</summary>
|
||||
<param name="source">The reference to add the offset to.</param>
|
||||
<param name="byteOffset">The offset to add.</param>
|
||||
<typeparam name="T">The type of reference.</typeparam>
|
||||
<returns>A new reference that reflects the addition of byte offset to pointer.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.AreSame``1(``0@,``0@)">
|
||||
<summary>Determines whether the specified references point to the same location.</summary>
|
||||
<param name="left">The first reference to compare.</param>
|
||||
<param name="right">The second reference to compare.</param>
|
||||
<typeparam name="T">The type of reference.</typeparam>
|
||||
<returns>true if <paramref name="left">left</paramref> and <paramref name="right">right</paramref> point to the same location; otherwise, false.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.As``1(System.Object)">
|
||||
<summary>Casts the given object to the specified type.</summary>
|
||||
<param name="o">The object to cast.</param>
|
||||
<typeparam name="T">The type which the object will be cast to.</typeparam>
|
||||
<returns>The original object, casted to the given type.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.As``2(``0@)">
|
||||
<summary>Reinterprets the given reference as a reference to a value of type <typeparamref name="TTo">TTo</typeparamref>.</summary>
|
||||
<param name="source">The reference to reinterpret.</param>
|
||||
<typeparam name="TFrom">The type of reference to reinterpret..</typeparam>
|
||||
<typeparam name="TTo">The desired type of the reference.</typeparam>
|
||||
<returns>A reference to a value of type <typeparamref name="TTo">TTo</typeparamref>.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.AsPointer``1(``0@)">
|
||||
<summary>Returns a pointer to the given by-ref parameter.</summary>
|
||||
<param name="value">The object whose pointer is obtained.</param>
|
||||
<typeparam name="T">The type of object.</typeparam>
|
||||
<returns>A pointer to the given value.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.AsRef``1(System.Void*)">
|
||||
<summary>Reinterprets the given location as a reference to a value of type <typeparamref name="T">T</typeparamref>.</summary>
|
||||
<param name="source">The location of the value to reference.</param>
|
||||
<typeparam name="T">The type of the interpreted location.</typeparam>
|
||||
<returns>A reference to a value of type <typeparamref name="T">T</typeparamref>.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.ByteOffset``1(``0@,``0@)">
|
||||
<summary>Determines the byte offset from origin to target from the given references.</summary>
|
||||
<param name="origin">The reference to origin.</param>
|
||||
<param name="target">The reference to target.</param>
|
||||
<typeparam name="T">The type of reference.</typeparam>
|
||||
<returns>Byte offset from origin to target i.e. <paramref name="target">target</paramref> - <paramref name="origin">origin</paramref>.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.Copy``1(System.Void*,``0@)">
|
||||
<summary>Copies a value of type <typeparamref name="T">T</typeparamref> to the given location.</summary>
|
||||
<param name="destination">The location to copy to.</param>
|
||||
<param name="source">A reference to the value to copy.</param>
|
||||
<typeparam name="T">The type of value to copy.</typeparam>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.Copy``1(``0@,System.Void*)">
|
||||
<summary>Copies a value of type <typeparamref name="T">T</typeparamref> to the given location.</summary>
|
||||
<param name="destination">The location to copy to.</param>
|
||||
<param name="source">A pointer to the value to copy.</param>
|
||||
<typeparam name="T">The type of value to copy.</typeparam>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.CopyBlock(System.Byte@,System.Byte@,System.UInt32)">
|
||||
<summary>Copies bytes from the source address to the destination address.</summary>
|
||||
<param name="destination">The destination address to copy to.</param>
|
||||
<param name="source">The source address to copy from.</param>
|
||||
<param name="byteCount">The number of bytes to copy.</param>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.CopyBlock(System.Void*,System.Void*,System.UInt32)">
|
||||
<summary>Copies bytes from the source address to the destination address.</summary>
|
||||
<param name="destination">The destination address to copy to.</param>
|
||||
<param name="source">The source address to copy from.</param>
|
||||
<param name="byteCount">The number of bytes to copy.</param>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.CopyBlockUnaligned(System.Void*,System.Void*,System.UInt32)">
|
||||
<summary>Copies bytes from the source address to the destination address
|
||||
without assuming architecture dependent alignment of the addresses.</summary>
|
||||
<param name="destination">The destination address to copy to.</param>
|
||||
<param name="source">The source address to copy from.</param>
|
||||
<param name="byteCount">The number of bytes to copy.</param>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.CopyBlockUnaligned(System.Byte@,System.Byte@,System.UInt32)">
|
||||
<summary>Copies bytes from the source address to the destination address
|
||||
without assuming architecture dependent alignment of the addresses.</summary>
|
||||
<param name="destination">The destination address to copy to.</param>
|
||||
<param name="source">The source address to copy from.</param>
|
||||
<param name="byteCount">The number of bytes to copy.</param>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.InitBlock(System.Byte@,System.Byte,System.UInt32)">
|
||||
<summary>Initializes a block of memory at the given location with a given initial value.</summary>
|
||||
<param name="startAddress">The address of the start of the memory block to initialize.</param>
|
||||
<param name="value">The value to initialize the block to.</param>
|
||||
<param name="byteCount">The number of bytes to initialize.</param>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.InitBlock(System.Void*,System.Byte,System.UInt32)">
|
||||
<summary>Initializes a block of memory at the given location with a given initial value.</summary>
|
||||
<param name="startAddress">The address of the start of the memory block to initialize.</param>
|
||||
<param name="value">The value to initialize the block to.</param>
|
||||
<param name="byteCount">The number of bytes to initialize.</param>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.InitBlockUnaligned(System.Byte@,System.Byte,System.UInt32)">
|
||||
<summary>Initializes a block of memory at the given location with a given initial value
|
||||
without assuming architecture dependent alignment of the address.</summary>
|
||||
<param name="startAddress">The address of the start of the memory block to initialize.</param>
|
||||
<param name="value">The value to initialize the block to.</param>
|
||||
<param name="byteCount">The number of bytes to initialize.</param>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.InitBlockUnaligned(System.Void*,System.Byte,System.UInt32)">
|
||||
<summary>Initializes a block of memory at the given location with a given initial value
|
||||
without assuming architecture dependent alignment of the address.</summary>
|
||||
<param name="startAddress">The address of the start of the memory block to initialize.</param>
|
||||
<param name="value">The value to initialize the block to.</param>
|
||||
<param name="byteCount">The number of bytes to initialize.</param>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.Read``1(System.Void*)">
|
||||
<summary>Reads a value of type <typeparamref name="T">T</typeparamref> from the given location.</summary>
|
||||
<param name="source">The location to read from.</param>
|
||||
<typeparam name="T">The type to read.</typeparam>
|
||||
<returns>An object of type <typeparamref name="T">T</typeparamref> read from the given location.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.ReadUnaligned``1(System.Byte@)">
|
||||
<summary>Reads a value of type <typeparamref name="T">T</typeparamref> from the given location
|
||||
without assuming architecture dependent alignment of the addresses.</summary>
|
||||
<param name="source">The location to read from.</param>
|
||||
<typeparam name="T">The type to read.</typeparam>
|
||||
<returns>An object of type <typeparamref name="T">T</typeparamref> read from the given location.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.ReadUnaligned``1(System.Void*)">
|
||||
<summary>Reads a value of type <typeparamref name="T">T</typeparamref> from the given location
|
||||
without assuming architecture dependent alignment of the addresses.</summary>
|
||||
<param name="source">The location to read from.</param>
|
||||
<typeparam name="T">The type to read.</typeparam>
|
||||
<returns>An object of type <typeparamref name="T">T</typeparamref> read from the given location.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.SizeOf``1">
|
||||
<summary>Returns the size of an object of the given type parameter.</summary>
|
||||
<typeparam name="T">The type of object whose size is retrieved.</typeparam>
|
||||
<returns>The size of an object of type <typeparamref name="T">T</typeparamref>.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.Subtract``1(``0@,System.Int32)">
|
||||
<summary>Subtracts an element offset from the given reference.</summary>
|
||||
<param name="source">The reference to subtract the offset from.</param>
|
||||
<param name="elementOffset">The offset to subtract.</param>
|
||||
<typeparam name="T">The type of reference.</typeparam>
|
||||
<returns>A new reference that reflects the subraction of offset from pointer.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.Subtract``1(``0@,System.IntPtr)">
|
||||
<summary>Subtracts an element offset from the given reference.</summary>
|
||||
<param name="source">The reference to subtract the offset from.</param>
|
||||
<param name="elementOffset">The offset to subtract.</param>
|
||||
<typeparam name="T">The type of reference.</typeparam>
|
||||
<returns>A new reference that reflects the subraction of offset from pointer.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.SubtractByteOffset``1(``0@,System.IntPtr)">
|
||||
<summary>Subtracts a byte offset from the given reference.</summary>
|
||||
<param name="source">The reference to subtract the offset from.</param>
|
||||
<param name="byteOffset"></param>
|
||||
<typeparam name="T">The type of reference.</typeparam>
|
||||
<returns>A new reference that reflects the subraction of byte offset from pointer.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.Write``1(System.Void*,``0)">
|
||||
<summary>Writes a value of type <typeparamref name="T">T</typeparamref> to the given location.</summary>
|
||||
<param name="destination">The location to write to.</param>
|
||||
<param name="value">The value to write.</param>
|
||||
<typeparam name="T">The type of value to write.</typeparam>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.WriteUnaligned``1(System.Byte@,``0)">
|
||||
<summary>Writes a value of type <typeparamref name="T">T</typeparamref> to the given location
|
||||
without assuming architecture dependent alignment of the addresses.</summary>
|
||||
<param name="destination">The location to write to.</param>
|
||||
<param name="value">The value to write.</param>
|
||||
<typeparam name="T">The type of value to write.</typeparam>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.WriteUnaligned``1(System.Void*,``0)">
|
||||
<summary>Writes a value of type <typeparamref name="T">T</typeparamref> to the given location
|
||||
without assuming architecture dependent alignment of the addresses.</summary>
|
||||
<param name="destination">The location to write to.</param>
|
||||
<param name="value">The value to write.</param>
|
||||
<typeparam name="T">The type of value to write.</typeparam>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
Binary file not shown.
@ -0,0 +1,166 @@
|
||||
<?xml version="1.0" encoding="utf-8"?><doc>
|
||||
<assembly>
|
||||
<name>System.Threading.Tasks.Extensions</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:System.Runtime.CompilerServices.ValueTaskAwaiter`1">
|
||||
<typeparam name="TResult"></typeparam>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.ValueTaskAwaiter`1.GetResult">
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="P:System.Runtime.CompilerServices.ValueTaskAwaiter`1.IsCompleted">
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.ValueTaskAwaiter`1.OnCompleted(System.Action)">
|
||||
<param name="continuation"></param>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.ValueTaskAwaiter`1.UnsafeOnCompleted(System.Action)">
|
||||
<param name="continuation"></param>
|
||||
</member>
|
||||
<member name="T:System.Threading.Tasks.ValueTask`1">
|
||||
<summary>Provides a value type that wraps a <see cref="Task{TResult}"></see> and a <typeparamref name="TResult">TResult</typeparamref>, only one of which is used.</summary>
|
||||
<typeparam name="TResult">The result.</typeparam>
|
||||
</member>
|
||||
<member name="M:System.Threading.Tasks.ValueTask`1.#ctor(System.Threading.Tasks.Task{`0})">
|
||||
<summary>Initializes a new instance of the <see cref="ValueTask{TResult}"></see> class using the supplied task that represents the operation.</summary>
|
||||
<param name="task">The task.</param>
|
||||
<exception cref="T:System.ArgumentNullException">The <paramref name="task">task</paramref> argument is null.</exception>
|
||||
</member>
|
||||
<member name="M:System.Threading.Tasks.ValueTask`1.#ctor(`0)">
|
||||
<summary>Initializes a new instance of the <see cref="ValueTask{TResult}"></see> class using the supplied result of a successful operation.</summary>
|
||||
<param name="result">The result.</param>
|
||||
</member>
|
||||
<member name="M:System.Threading.Tasks.ValueTask`1.AsTask">
|
||||
<summary>Retrieves a <see cref="Task{TResult}"></see> object that represents this <see cref="ValueTask{TResult}"></see>.</summary>
|
||||
<returns>The <see cref="Task{TResult}"></see> object that is wrapped in this <see cref="ValueTask{TResult}"></see> if one exists, or a new <see cref="Task{TResult}"></see> object that represents the result.</returns>
|
||||
</member>
|
||||
<member name="M:System.Threading.Tasks.ValueTask`1.ConfigureAwait(System.Boolean)">
|
||||
<summary>Configures an awaiter for this value.</summary>
|
||||
<param name="continueOnCapturedContext">true to attempt to marshal the continuation back to the captured context; otherwise, false.</param>
|
||||
<returns>The configured awaiter.</returns>
|
||||
</member>
|
||||
<member name="M:System.Threading.Tasks.ValueTask`1.CreateAsyncMethodBuilder">
|
||||
<summary>Creates a method builder for use with an async method.</summary>
|
||||
<returns>The created builder.</returns>
|
||||
</member>
|
||||
<member name="M:System.Threading.Tasks.ValueTask`1.Equals(System.Object)">
|
||||
<summary>Determines whether the specified object is equal to the current object.</summary>
|
||||
<param name="obj">The object to compare with the current object.</param>
|
||||
<returns>true if the specified object is equal to the current object; otherwise, false.</returns>
|
||||
</member>
|
||||
<member name="M:System.Threading.Tasks.ValueTask`1.Equals(System.Threading.Tasks.ValueTask{`0})">
|
||||
<summary>Determines whether the specified <see cref="ValueTask{TResult}"></see> object is equal to the current <see cref="ValueTask{TResult}"></see> object.</summary>
|
||||
<param name="other">The object to compare with the current object.</param>
|
||||
<returns>true if the specified object is equal to the current object; otherwise, false.</returns>
|
||||
</member>
|
||||
<member name="M:System.Threading.Tasks.ValueTask`1.GetAwaiter">
|
||||
<summary>Creates an awaiter for this value.</summary>
|
||||
<returns>The awaiter.</returns>
|
||||
</member>
|
||||
<member name="M:System.Threading.Tasks.ValueTask`1.GetHashCode">
|
||||
<summary>Returns the hash code for this instance.</summary>
|
||||
<returns>The hash code for the current object.</returns>
|
||||
</member>
|
||||
<member name="P:System.Threading.Tasks.ValueTask`1.IsCanceled">
|
||||
<summary>Gets a value that indicates whether this object represents a canceled operation.</summary>
|
||||
<returns>true if this object represents a canceled operation; otherwise, false.</returns>
|
||||
</member>
|
||||
<member name="P:System.Threading.Tasks.ValueTask`1.IsCompleted">
|
||||
<summary>Gets a value that indicates whether this object represents a completed operation.</summary>
|
||||
<returns>true if this object represents a completed operation; otherwise, false.</returns>
|
||||
</member>
|
||||
<member name="P:System.Threading.Tasks.ValueTask`1.IsCompletedSuccessfully">
|
||||
<summary>Gets a value that indicates whether this object represents a successfully completed operation.</summary>
|
||||
<returns>true if this object represents a successfully completed operation; otherwise, false.</returns>
|
||||
</member>
|
||||
<member name="P:System.Threading.Tasks.ValueTask`1.IsFaulted">
|
||||
<summary>Gets a value that indicates whether this object represents a failed operation.</summary>
|
||||
<returns>true if this object represents a failed operation; otherwise, false.</returns>
|
||||
</member>
|
||||
<member name="M:System.Threading.Tasks.ValueTask`1.op_Equality(System.Threading.Tasks.ValueTask{`0},System.Threading.Tasks.ValueTask{`0})">
|
||||
<summary>Compares two values for equality.</summary>
|
||||
<param name="left">The first value to compare.</param>
|
||||
<param name="right">The second value to compare.</param>
|
||||
<returns>true if the two <see cref="ValueTask{TResult}"></see> values are equal; otherwise, false.</returns>
|
||||
</member>
|
||||
<member name="M:System.Threading.Tasks.ValueTask`1.op_Inequality(System.Threading.Tasks.ValueTask{`0},System.Threading.Tasks.ValueTask{`0})">
|
||||
<summary>Determines whether two <see cref="ValueTask{TResult}"></see> values are unequal.</summary>
|
||||
<param name="left">The first value to compare.</param>
|
||||
<param name="right">The seconed value to compare.</param>
|
||||
<returns>true if the two <see cref="ValueTask{TResult}"></see> values are not equal; otherwise, false.</returns>
|
||||
</member>
|
||||
<member name="P:System.Threading.Tasks.ValueTask`1.Result">
|
||||
<summary>Gets the result.</summary>
|
||||
<returns>The result.</returns>
|
||||
</member>
|
||||
<member name="M:System.Threading.Tasks.ValueTask`1.ToString">
|
||||
<summary>Returns a string that represents the current object.</summary>
|
||||
<returns>A string that represents the current object.</returns>
|
||||
</member>
|
||||
<member name="T:System.Runtime.CompilerServices.AsyncMethodBuilderAttribute">
|
||||
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.AsyncMethodBuilderAttribute.#ctor(System.Type)">
|
||||
<param name="builderType"></param>
|
||||
</member>
|
||||
<member name="P:System.Runtime.CompilerServices.AsyncMethodBuilderAttribute.BuilderType">
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="T:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1">
|
||||
<typeparam name="TResult"></typeparam>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1.AwaitOnCompleted``2(``0@,``1@)">
|
||||
<param name="awaiter"></param>
|
||||
<param name="stateMachine"></param>
|
||||
<typeparam name="TAwaiter"></typeparam>
|
||||
<typeparam name="TStateMachine"></typeparam>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1.AwaitUnsafeOnCompleted``2(``0@,``1@)">
|
||||
<param name="awaiter"></param>
|
||||
<param name="stateMachine"></param>
|
||||
<typeparam name="TAwaiter"></typeparam>
|
||||
<typeparam name="TStateMachine"></typeparam>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1.Create">
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1.SetException(System.Exception)">
|
||||
<param name="exception"></param>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1.SetResult(`0)">
|
||||
<param name="result"></param>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1.SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)">
|
||||
<param name="stateMachine"></param>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1.Start``1(``0@)">
|
||||
<param name="stateMachine"></param>
|
||||
<typeparam name="TStateMachine"></typeparam>
|
||||
</member>
|
||||
<member name="P:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1.Task">
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="T:System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1.ConfiguredValueTaskAwaiter">
|
||||
<typeparam name="TResult"></typeparam>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1.ConfiguredValueTaskAwaiter.GetResult">
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="P:System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1.ConfiguredValueTaskAwaiter.IsCompleted">
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1.ConfiguredValueTaskAwaiter.OnCompleted(System.Action)">
|
||||
<param name="continuation"></param>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1.ConfiguredValueTaskAwaiter.UnsafeOnCompleted(System.Action)">
|
||||
<param name="continuation"></param>
|
||||
</member>
|
||||
<member name="T:System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1">
|
||||
<typeparam name="TResult"></typeparam>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1.GetAwaiter">
|
||||
<returns></returns>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/TD_Alloc_21.4_15.dll
Normal file
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/TD_Alloc_21.4_15.dll
Normal file
Binary file not shown.
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/TD_Ave_21.4_15.tx
Normal file
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/TD_Ave_21.4_15.tx
Normal file
Binary file not shown.
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/TD_DbCore_21.4_15.dll
Normal file
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/TD_DbCore_21.4_15.dll
Normal file
Binary file not shown.
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/TD_DbEntities_21.4_15.tx
Normal file
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/TD_DbEntities_21.4_15.tx
Normal file
Binary file not shown.
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/TD_DbIO_21.4_15.tx
Normal file
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/TD_DbIO_21.4_15.tx
Normal file
Binary file not shown.
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/TD_DbRoot_21.4_15.dll
Normal file
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/TD_DbRoot_21.4_15.dll
Normal file
Binary file not shown.
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/TD_Db_21.4_15.dll
Normal file
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/TD_Db_21.4_15.dll
Normal file
Binary file not shown.
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/TD_DynBlocks_21.4_15.tx
Normal file
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/TD_DynBlocks_21.4_15.tx
Normal file
Binary file not shown.
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/TD_Ge_21.4_15.dll
Normal file
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/TD_Ge_21.4_15.dll
Normal file
Binary file not shown.
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/TD_Gi_21.4_15.dll
Normal file
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/TD_Gi_21.4_15.dll
Normal file
Binary file not shown.
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/TD_Gs_21.4_15.dll
Normal file
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/TD_Gs_21.4_15.dll
Normal file
Binary file not shown.
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/TD_Mgd.dll
Normal file
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/TD_Mgd.dll
Normal file
Binary file not shown.
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/TD_Root_21.4_15.dll
Normal file
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/TD_Root_21.4_15.dll
Normal file
Binary file not shown.
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/TD_Sm_21.4_15.tx
Normal file
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/TD_Sm_21.4_15.tx
Normal file
Binary file not shown.
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/TD_SpatialIndex_21.4_15.dll
Normal file
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/TD_SpatialIndex_21.4_15.dll
Normal file
Binary file not shown.
Binary file not shown.
64656
newFront/c#前端/SWS.CAD.Base/bin/Debug/Telerik.Windows.Controls.xml
Normal file
64656
newFront/c#前端/SWS.CAD.Base/bin/Debug/Telerik.Windows.Controls.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/Unity.Abstractions.dll
Normal file
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/Unity.Abstractions.dll
Normal file
Binary file not shown.
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/Unity.Abstractions.pdb
Normal file
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/Unity.Abstractions.pdb
Normal file
Binary file not shown.
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/WipeOut_21.4_15.tx
Normal file
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/WipeOut_21.4_15.tx
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
93
newFront/c#前端/SWS.CAD.Base/bin/Debug/log4net.config
Normal file
93
newFront/c#前端/SWS.CAD.Base/bin/Debug/log4net.config
Normal file
@ -0,0 +1,93 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<log4net >
|
||||
<root>
|
||||
<!-- 控制级别,由低到高:ALL|DEBUG|INFO|WARN|ERROR|FATAL|OFF -->
|
||||
<level value="ALL"/>
|
||||
<appender-ref ref="ErrorRollingFileAppender"/>
|
||||
<appender-ref ref="WarnRollingFileAppender"/>
|
||||
<appender-ref ref="InfoRollingFileAppender"/>
|
||||
<appender-ref ref="DebugRollingFileAppender"/>
|
||||
</root>
|
||||
|
||||
<!--一般错误日志定义,用于记录已知需处理的与未捕获的异常-->
|
||||
<!--日志输出格式:[时间]:类名 线程号 消息-->
|
||||
<appender name="ErrorRollingFileAppender" type="log4net.Appender.RollingFileAppender">
|
||||
<filter type="log4net.Filter.LevelRangeFilter">
|
||||
<levelMin value="ERROR"/>
|
||||
<levelMax value="FATAL"/>
|
||||
</filter>
|
||||
<filter type="log4net.Filter.DenyAllFilter"/>
|
||||
<file value="Logs/"/>
|
||||
<appendToFile value="true"/>
|
||||
<maxSizeRollBackups value="100" />
|
||||
<maxFileSize value="10240" />
|
||||
<rollingStyle value="Date"/>
|
||||
<datePattern value="yyyy-MM-dd//"Error.log""/>
|
||||
<staticLogFileName value="false"/>
|
||||
<lockingModel type="log4net.Appender.FileAppender+MinimalLock"/>
|
||||
<layout type="log4net.Layout.PatternLayout">
|
||||
<conversionPattern value="【%d{HH:mm:ss.fff}】 %c T%t %n%m%n"/>
|
||||
</layout>
|
||||
</appender>
|
||||
|
||||
<!--警告日志定义,用于记录已知不需处理的异常,系统警告信息-->
|
||||
<!--日志输出格式:[时间]:类名 线程号 消息-->
|
||||
<appender name="WarnRollingFileAppender" type="log4net.Appender.RollingFileAppender">
|
||||
<filter type="log4net.Filter.LevelMatchFilter">
|
||||
<levelToMatch value="WARN"/>
|
||||
</filter>
|
||||
<filter type="log4net.Filter.DenyAllFilter"/>
|
||||
<file value="Logs/"/>
|
||||
<appendToFile value="true"/>
|
||||
<maxSizeRollBackups value="100" />
|
||||
<maxFileSize value="10240" />
|
||||
<rollingStyle value="Date"/>
|
||||
<datePattern value="yyyy-MM-dd//"Warn.log""/>
|
||||
<staticLogFileName value="false"/>
|
||||
<lockingModel type="log4net.Appender.FileAppender+MinimalLock"/>
|
||||
<layout type="log4net.Layout.PatternLayout">
|
||||
<conversionPattern value="[%d{HH:mm:ss.fff}] %c T%t %m%n"/>
|
||||
</layout>
|
||||
</appender>
|
||||
|
||||
<!--信息日志定义,用于记录用户相关信息-->
|
||||
<!--日志输出格式:[时间]:消息-->
|
||||
<appender name="InfoRollingFileAppender" type="log4net.Appender.RollingFileAppender">
|
||||
<filter type="log4net.Filter.LevelMatchFilter">
|
||||
<levelToMatch value="INFO"/>
|
||||
</filter>
|
||||
<filter type="log4net.Filter.DenyAllFilter"/>
|
||||
<file value="Logs/"/>
|
||||
<appendToFile value="true"/>
|
||||
<maxSizeRollBackups value="100" />
|
||||
<maxFileSize value="10240" />
|
||||
<rollingStyle value="Date"/>
|
||||
<datePattern value="yyyy-MM-dd//"Info.log""/>
|
||||
<staticLogFileName value="false"/>
|
||||
<lockingModel type="log4net.Appender.FileAppender+MinimalLock"/>
|
||||
<layout type="log4net.Layout.PatternLayout">
|
||||
<conversionPattern value="[%d{HH:mm:ss}] (%c) %m%n"/>
|
||||
</layout>
|
||||
</appender>
|
||||
|
||||
<!--信息日志定义,用于收集开发调试信息-->
|
||||
<!--日志输出格式:[时间]:类名 线程号 消息-->
|
||||
<appender name="DebugRollingFileAppender" type="log4net.Appender.RollingFileAppender">
|
||||
<filter type="log4net.Filter.LevelMatchFilter">
|
||||
<levelToMatch value="DEBUG"/>
|
||||
</filter>
|
||||
<filter type="log4net.Filter.DenyAllFilter"/>
|
||||
<file value="Logs/"/>
|
||||
<appendToFile value="true"/>
|
||||
<maxSizeRollBackups value="100" />
|
||||
<maxFileSize value="10240" />
|
||||
<rollingStyle value="Date"/>
|
||||
<datePattern value="yyyy-MM-dd//"Debug.log""/>
|
||||
<staticLogFileName value="false"/>
|
||||
<lockingModel type="log4net.Appender.FileAppender+MinimalLock"/>
|
||||
<layout type="log4net.Layout.PatternLayout">
|
||||
<conversionPattern value="[%d{HH:mm:ss.fff}] %c T%t: %m%n"/>
|
||||
</layout>
|
||||
</appender>
|
||||
|
||||
</log4net>
|
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/log4net.dll
Normal file
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/log4net.dll
Normal file
Binary file not shown.
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/log4net.pdb
Normal file
BIN
newFront/c#前端/SWS.CAD.Base/bin/Debug/log4net.pdb
Normal file
Binary file not shown.
28302
newFront/c#前端/SWS.CAD.Base/bin/Debug/log4net.xml
Normal file
28302
newFront/c#前端/SWS.CAD.Base/bin/Debug/log4net.xml
Normal file
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.8", FrameworkDisplayName = ".NET Framework 4.8")]
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1 @@
|
||||
b4d04f33495ff78c4fd01ee28337d330ba4fdf1a2232857f79360cc12fc87c73
|
@ -0,0 +1,69 @@
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\obj\Debug\SWS.CAD.Base.csproj.AssemblyReference.cache
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\obj\Debug\SWS.CAD.Base.csproj.CoreCompileInputs.cache
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\log4net.config
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\SWS.CAD.Base.dll.config
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\SWS.CAD.Base.dll
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\SWS.CAD.Base.pdb
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\BrxMgd.dll
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\SWS.Commons.dll
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\TD_Mgd.dll
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\SWS.Model.dll
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\Prism.dll
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\Unity.Abstractions.dll
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\INIFileParser.dll
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\log4net.dll
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\Newtonsoft.Json.dll
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\Telerik.Windows.Controls.dll
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\Prism.Wpf.dll
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\System.Threading.Tasks.Extensions.dll
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\Microsoft.Xaml.Behaviors.dll
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\System.Runtime.CompilerServices.Unsafe.dll
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\SWS.Commons.pdb
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\SWS.Commons.dll.config
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\SWS.Model.pdb
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\Prism.pdb
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\Prism.xml
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\Unity.Abstractions.pdb
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\INIFileParser.xml
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\log4net.pdb
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\log4net.xml
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\Newtonsoft.Json.xml
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\Telerik.Windows.Controls.xml
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\Prism.Wpf.pdb
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\Prism.Wpf.xml
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\System.Threading.Tasks.Extensions.xml
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\Microsoft.Xaml.Behaviors.pdb
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\Microsoft.Xaml.Behaviors.xml
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\System.Runtime.CompilerServices.Unsafe.xml
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\de\Telerik.Windows.Controls.resources.dll
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\es\Telerik.Windows.Controls.resources.dll
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\fr\Telerik.Windows.Controls.resources.dll
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\it\Telerik.Windows.Controls.resources.dll
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\nl\Telerik.Windows.Controls.resources.dll
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\tr\Telerik.Windows.Controls.resources.dll
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\TD_Alloc_21.4_15.dll
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\TD_Db_21.4_15.dll
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\TD_DbRoot_21.4_15.dll
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\TD_Gi_21.4_15.dll
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\TD_Ge_21.4_15.dll
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\TD_Gs_21.4_15.dll
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\TD_Root_21.4_15.dll
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\TD_DynBlocks_21.4_15.tx
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\TD_SpatialIndex_21.4_15.dll
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\TD_DbEntities_21.4_15.tx
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\TD_DbCore_21.4_15.dll
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\TD_DbIO_21.4_15.tx
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\DbConstraints_21.4_15.tx
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\TD_Sm_21.4_15.tx
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\TD_Ave_21.4_15.tx
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\SCENEOE_21.4_15.tx
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\ACCAMERA_21.4_15.tx
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\ISM_21.4_15.tx
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\WipeOut_21.4_15.tx
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\AcMPolygonObj15_21.4_15.tx
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\ATEXT_21.4_15.tx
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\RText_21.4_15.tx
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\bin\Debug\RecomputeDimBlock_21.4_15.tx
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\obj\Debug\SWS.CAD..F8766F21.Up2Date
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\obj\Debug\SWS.CAD.Base.dll
|
||||
E:\Di-Electrical\c#前端\SWS.CAD.Base\obj\Debug\SWS.CAD.Base.pdb
|
BIN
newFront/c#前端/SWS.CAD.Base/obj/Debug/SWS.CAD.Base.dll
Normal file
BIN
newFront/c#前端/SWS.CAD.Base/obj/Debug/SWS.CAD.Base.dll
Normal file
Binary file not shown.
BIN
newFront/c#前端/SWS.CAD.Base/obj/Debug/SWS.CAD.Base.pdb
Normal file
BIN
newFront/c#前端/SWS.CAD.Base/obj/Debug/SWS.CAD.Base.pdb
Normal file
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user