小编Aka*_*ani的帖子

C#预定义类型'System.Object'未定义或导入

.NET核心项目中,我更改了所有项目的名称,而不是重新加载所有项目后,当时许多错误显示大约3225。而且主要所有错误都与系统名称空间有关,例如

  • System.Object 未定义或导入
  • System.Boolean 未定义或导入
  • Task 不存在
  • ArgumentNullException找不到名称空间

我该如何解决所有这些错误?

.net c# visual-studio .net-core

9
推荐指数
2
解决办法
3576
查看次数

如何自动重新加载asp.net核心项目?

我尝试使用Node或NPM 自动重新加载与Angular相同的ASP.NET Core Project。

这意味着,我更改.NET Core Project的代码并保存。这段时间会自动在浏览器中直接生效,并在浏览器中自动重新加载网页。

asp.net debugging reloading .net-core

8
推荐指数
3
解决办法
237
查看次数

"message": "无法建立 SSL 连接,请参阅内部异常。" 在 Windows Server 2012 R2 中

我将第 3 方 API 集成到我的 API 中。那次就出错了。也许这是 SSL 连接问题。

"data": {
"message": "The SSL connection could not be established, see inner exception.",
"data": {},
"innerException": {
  "ClassName": "System.Security.Authentication.AuthenticationException",
  "Message": "Authentication failed, see inner exception.",
  "Data": null,
  "InnerException": {
    "ClassName": "System.ComponentModel.Win32Exception",
    "Message": "The message received was unexpected or badly formatted",
    "Data": null,
    "InnerException": null,
    "HelpURL": null,
    "StackTraceString": null,
    "RemoteStackTraceString": null,
    "RemoteStackIndex": 0,
    "ExceptionMethod": null,
    "HResult": -2147467259,
    "Source": null,
    "WatsonBuckets": null,
    "NativeErrorCode": -2146893018
  },
  "HelpURL": null,
  "StackTraceString": "   at System.Net.Security.SslState.StartSendAuthResetSignal(ProtocolToken message, AsyncProtocolRequest …
Run Code Online (Sandbox Code Playgroud)

c# api ssl .net-core

6
推荐指数
0
解决办法
1万
查看次数

如何进行快速的 DNS 传播?

我的问题与DNS(Domain Name System) 有关

我用DNS传播了一个我的域。这不会在 48 小时后传播。在世界范围内,有些地区传播DNS,有些地区不传播DNS(请参阅下图。)。

在此处输入图片说明

我们所做的DNS传播非常快速和轻松。

谢谢

dns hosting web-hosting

1
推荐指数
1
解决办法
273
查看次数

类型 'string[]' 上不存在 Angular 5 属性 'username'

我正在尝试制作一个简单的编辑组件。从 Javascript 的角度来看,我看不出有什么问题,但我认为我没有按照 Angular 想要的方式使用范围,所以我正在寻找一些指导。ERROR in src\app\admin\customers\customer-edit\customer-edit.component.html(10,97): : Property 'username' does not exist on type 'string[]'.

客户编辑.component.ts

import { Component, OnInit } from '@angular/core';
import { FormGroup} from '@angular/forms';
import { Router } from '@angular/router';
import { ToasterService, ToasterConfig } from 'angular2-toaster';
import { AdminService } from '../../admin.service';
import { customer } from '../../../../environments/environment';

@Component({
    selector: 'app-admin/customer/edit-list',
    templateUrl: './customer-edit.component.html',
    styleUrls: ['./customer-edit.component.scss']
})

export class CustomerEditComponent implements OnInit {

    editCustomerForm: FormGroup;
    toaster: any;
    data: string[];
    toasterConfig: any;
    toasterconfig: ToasterConfig = …
Run Code Online (Sandbox Code Playgroud)

typescript angular

0
推荐指数
1
解决办法
9823
查看次数