Skip to content
#

asp

Here are 560 public repositories matching this topic...

KirillOsenkov
KirillOsenkov commented Apr 17, 2020

Right now when I need to create a new website what should I choose? The templates look similar but with some differences. I think this should be documented with some good guidance for beginners.


Document Details

Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.

  • ID: 0b952f8a-18e1-4843-0741-6ca877fb303a
  • Version Independent ID: d80dfb96-bc86-a
SOAPEngine
felipeferri
felipeferri commented Feb 4, 2017

Hi!

First of all, congratulations on this extremely useful library.

I would like to ask you to improve your documentation regarding custom attributes.

I spent some hours trying to do something that I didn't know if was really possible to do with SoapEngine and with some liberal interpretation of some messages exchanges I ended up finding out how to do it, but it would be SOOOO much easier

spshenychnyy-mechanicadvisor
spshenychnyy-mechanicadvisor commented Oct 23, 2019

Redirect() call ignores the name with which "old" rout is being registered in passed Func. Instead it takes just the result Route and calls routes.Add((RouteBase) redirectRoute); (without name argument).

This leads to situation that if some page contains @Url.RouteUrl("name"...) link, it fails to render due to absense of named route.

PS: I need many routes to be redirected to home page, so I

atkretsch
atkretsch commented Aug 16, 2017

Similar to #131, but for deserialization.

Given the following class structure:

public class Person : ApiResource
    {
        public Person()
        {
            Attribute("Name");
        }

        public Name Name { get; set; }
    }

    public class Name
    {
        public string FirstName { get; set; }
        public string LastName { get; set; }
    }

.

Improve this page

Add a description, image, and links to the asp topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the asp topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.