TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
About anonymous
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Destin Joy (4)
Matthew Cochran (3)
Sourav Kayal (3)
Bhushan Gawale (3)
Mahesh Chand (2)
Amr Monjid (2)
Abhimanyu K Vatsa (2)
Guest User (2)
Arpit Jain (2)
John Charles Olamendy (2)
Sekhar Srinivas (2)
Jean Paul (2)
Scott Lysle (2)
K S Ganesh (2)
Josue Molina (1)
Sanjay Kumar (1)
Waqas Sarwar (1)
Jejji Arora (1)
Rajiv Singh (1)
Ajay Kumar (1)
Jaimin Shethiya (1)
Mariusz Postol (1)
Tural Suleymani (1)
Keyur (1)
C# Curator (1)
Gurpreet Arora (1)
Anand Kumar Rao (1)
Sardar Mudassar Ali Khan (1)
Ahmad Anas (1)
Gul Md Ershad (1)
Dipal Choksi (1)
Jignesh Trivedi (1)
Kalyan Bandarupalli (1)
Pawan Pandey (1)
Sandeep Mishra (1)
Rikam Palkar (1)
Abhishek Yadav (1)
Abhishek Dubey (1)
Rafnas T P (1)
Pradeep Yadav (1)
Rahul Bansal (1)
Manpreet Singh (1)
Prashant Kumar (1)
Priyaranjan K S (1)
Kaviya Balasubramanian (1)
Sandeep Kumar (1)
Pankaj Kumar Choudhary (1)
Harieswaran D (1)
Nitin (1)
Pranay Rana (1)
Rajeev Ranjan (1)
Gaurav Kumar Arora (1)
Jasminder Singh (1)
Aman (1)
Adalat Khan (1)
Mohit Sharma (1)
Abhishek Kumar (1)
Nilesh Mohite (1)
Ramesh Maruthi (1)
Shyju (1)
Amit Choudhary (1)
Eranda Horanagama (1)
Vijay Prativadi (1)
Matt Aghnianejad (1)
Sukesh Marla (1)
Mike Gold (1)
Dea Saddler (1)
Vineet Kumar Saini (1)
Srihari Chinna (1)
Nipun Tomar (1)
Manas Moharana (1)
Senthilkumar (1)
Pop Adrian Nicolae (1)
Satheesh Kumar (1)
Kalyan TKumar (1)
Jigar Desai (1)
Related resources for anonymous
No resource found
Action And Func Delegates In C#
9/12/2024 6:18:26 AM.
In C#, Action, and Func are generic delegates used to handle methods. Action is used for methods that don't return a value, while Func returns a value. Action<int> executes a method with an
Detailed use of Action Delegate in C#
9/11/2024 6:46:49 AM.
In C#, the Action delegate represents a method that does not return a value and can accept up to 16 parameters. It's useful for passing methods as arguments, callbacks, and event handling. It sup
SharePoint 2016 Central Admin - Security - Specify Authentication Providers
8/9/2024 12:02:44 PM.
Learn how to change authentication providers for SharePoint Web Applications. This guide covers accessing the Authentication Providers page in Central Admin, selecting the correct Web Application, and
Lambda Functions and High Order Functions in Android kotlin
7/11/2024 4:59:01 PM.
The provided Kotlin examples demonstrate basic and high-order functions. In lambda. kt, a lambda function adds two integers. In HighOrder.kt, a high-order function accepts another function as a parame
Learn Use of Lambda Operator in C#
7/1/2024 6:28:21 AM.
Explore the versatility of lambda expressions in C#, powerful tools for creating inline functions without the need for traditional method declarations. Discover their syntax, applications in LINQ quer
Learn Action and Func Delegates in C#
6/19/2024 11:51:33 AM.
Learn about Action and Func delegates in C# to master delegate usage for different scenarios. Action delegates are for methods that return void, while Func delegates handle methods with return values.
Delegates in .NET Core C#: Syntax, Usage and Examples
6/11/2024 9:17:47 AM.
A delegate is an object that points to a method; alternatively, it may be thought of as a variable of the reference type that stores references to the methods. Function pointer in C/C++, delegates are
Programming in Practice - LINQ Expression
5/6/2024 9:05:50 AM.
An impression can be made that: data is data, and it doesn't matter where it comes from provided it is reliable. The LINQ technology is presented to fetch the necessary data from any available so
.NET Delegates for Mere Mortals: Introduction
2/19/2024 7:27:20 AM.
Explore .NET delegates practically in this article. Learn to use delegates for flexible, reusable code. Follow examples, download source code, and understand delegate syntax, including anonymous metho
Action and Func Delegates in C#
1/2/2024 5:18:03 AM.
Unlock the potential of Action and Func delegates in C# programming. Dive into the world of expressive and readable code, utilizing these powerful tools for method-passing, event handling, and more. H
C# Delegate: Everything You Need To Know About Delegate In C#
12/8/2023 11:33:21 AM.
In this tutorial, learn what is a delegate in C# and how delegates are implemented in C# code.
Exploring Anonymous Functions in C#
9/18/2023 6:13:19 AM.
Exploring Anonymous Functions in C#
Language Extensions In C# 2.0
9/13/2023 4:14:47 AM.
This article intends to the C# 1.x developers and covers what-why-how the new enhancement .The philosophy behind the document is to have quick update on C# 2.0 and leverage this in your day to day dev
Securing ASP.NET Core Web API with JWT Authentication and Role-Based Authorization
9/9/2023 12:02:42 PM.
Securing APIs in an ASP.NET Core Web API involves implementing authentication and authorization mechanisms to protect your resources and ensure that only authorized users can access them. In this exam
Delegates, Anonymous Method, And Lambda Expression In C#
8/24/2023 10:58:50 AM.
Delegates, Anonymous Methods, and Lambda Expressions in C# introduces essential concepts in C# programming related to delegates, anonymous methods, and lambda expressions. These features enable develo
Object Initializer in C#
8/24/2023 4:56:28 AM.
What is the Object Initializer in C#. Object initializers is the easiest and fastest way to assign values of an object's properties and fields. An object can be initialized without explicitly call
Different Ways To Create Delegates In C#
8/21/2023 6:06:47 AM.
This article is intended to explain the idea and concept to create Delegate with different approach.
Anonymous Methods in C# 2.0
8/20/2023 2:37:07 PM.
In this article, we will explore the anonymous method feature introduced in C# 2.0.
Anonymous Types In C#
6/13/2023 9:19:31 AM.
Anonymous types allow us to create new types without defining them. In this article, you'll learn how to use Anonymous Types in C#.
Lambda Expressions in C#
11/30/2022 9:33:02 AM.
In this artivle I will explain where to use the Anonymous methods first then we see the example on lambda expressions.
Anonymous methods in C#
8/25/2022 6:16:29 AM.
This article discusses the anonymous methods as a new feature in .NET 2.0, it will show you how to associate a delegate directly to a block of code statements at the time of event registration.
Anonymous Typed Classes in C#
8/23/2022 9:36:54 AM.
In this quick article, you will take a look at basics of anonymous typed classes in C#.
C# Anonymous Methods & The Action Object
4/6/2022 11:14:21 AM.
Two interesting additions to the 2.0 C# language are the Action<> object, and anonymous methods. The Action<> object lets you specify an action to be performed on an object and the anonymo
Delegates, Anonymous Functions and Lambda Expressions in C#
2/23/2022 10:43:50 AM.
This article provides the basics of C# delegates, c# anonymous function, lambda expressions and delegate with lambda expressions.
Typescript - Default Parameter and Anonymous Functions Example
10/4/2021 10:25:44 AM.
Typescript - Default and Anonymous Function Example
Anonymous Method In C#
6/18/2020 5:53:53 AM.
With this method, there is meaning in the name itself. It is a method with no name.
Voice of a Developer: JavaScript Anonymous Functions - Part Twelve
5/25/2020 4:53:57 AM.
In this article you will learn about Anonymous Functions in JavaScript.This is part twelve of the article series.
Voice of a Developer: JavaScript Functions Invocations - Part 11
4/30/2020 2:41:37 PM.
Functions are first class citizens in JavaScript. There are many ways to declare functions in JavaScript.
Manipulate JavaScript Object Like Dictionary
4/20/2020 1:01:38 PM.
This article explains how to use JavaScript objects like a C# Dictionary.
Advanced JavaScript: Callback Design Pattern and Callback Function
4/16/2020 7:23:30 PM.
This article explains callback functions in JavaScript.
Advanced Features In C#
2/13/2020 7:56:00 AM.
In this article, you will learn about advanced features in C#.
Python Basics: Understanding The Functions
1/28/2020 2:31:36 PM.
In this article we will learn about functions in Python, how to create and call functions and how to create a program that uses functions.
WCF Application Implementing the Anonymous Client over Certificate WS-Security scenario
9/26/2019 1:28:50 AM.
This article explains the techniques, architecture and design strategies in order to address one of the most common scenarios of secure communication in Internet, the Anonymous client over Certificate
Working With Nested Class in Java
9/13/2019 4:56:13 AM.
In this article we are going to describe the concept of a Nested class.
Anonymous Methods And Lambda Expressions In C#
2/21/2019 3:10:04 AM.
In this article, you will learn about anonymous methods and lambda expressions in C#.NET. Anonymous method is a block of code, which is used as a parameter for the delegate.
Anonymous Methods In C#
2/21/2019 3:05:06 AM.
An c# anonymous method is method which is inline method and it does not have name i.e it has only body. Anonymous methods takes lesser time than a named method. For better performance, then you should
Remove the Anonymous Authentication Exception in WCF
6/26/2017 6:50:10 AM.
This article explains how to remove the Anonymous Authentication exception that occurs at the time of a WCF service (3.5 Framework) hosting on IIS.
Setting Anonymous User Policy On Applications In SharePoint 2013 Central Admin
1/19/2017 11:29:14 AM.
In this article, you will learn how to set anonymous policies on web applications in SharePoint 2013 Central Administration.
How To Grant Anonymous Access To Site Collection Or Site Page At SharePoint Online
12/13/2016 10:55:50 AM.
In this article, you will learn how to grant anonymous access to site collection or site page at SharePoint online.
Enable Anonymous Access, SharePoint Server 2016
10/11/2016 11:05:49 AM.
In this article, you will learn how to enable anonymous access in SharePoint Server 2016.
Enable/Disable the Anonymous Authentication For SharePoint Web Application in IIS
9/1/2016 11:03:58 PM.
In this article, I would like to share the procedure for enabling/disabling the authentication for a SharePoint web application in IIS.
Anonymous Data Type In MVC
1/22/2016 11:36:19 AM.
In this article I am writing about Anonymous Data Type and implementation of Anonymous Data type.
Anonymous Type In C#
1/13/2016 2:37:25 PM.
In this article you will learn about Anonymous Type in C#.
Tuples and Anonymous Types in C#
7/10/2015 12:35:14 AM.
This article explains tuples and anonymous types in C#.
Func Delegate in C# with Examples
4/25/2015 1:05:19 AM.
This video provides a complete explanation about the Generic Func Delegate and also explains about how to use Func Delegate with Named Method , Using Func Delegate with Anonymous Methods and using Func Delegate with Lambda Expressions with example. Hope this video will help out in using the Func Delegate Properly.
Anonymous Method and Lambda Expression in C#
4/17/2015 1:49:22 AM.
This Video Provides a Complete Introduction about how to convert the Named Method Programming model to Anonymous Method and then Converting the Anonymous Method Programming Model to Lambda Expression in C# so that the every one can understand the migrations between the Named Method Programming to Lambda Expression
Anonymous Methods in C#
3/31/2015 3:03:39 AM.
In this article we will learn about anonymous methods in C#.
Return Anonymous Type in C#
2/6/2015 4:54:53 PM.
This article explains returning an anonymous type and how to handle it in code.
New C# Features That Support LINQ
1/9/2015 4:47:13 PM.
In this article we will learn some basic concepts of LINQ and apart from that we can see the C# features that support LINQ.
Anonymous Types In LINQ
12/14/2014 9:21:37 AM.
In this article you will learn about Anonymous Types in LINQ.
Delegates, Anonymous Methods & Lamda Expressions
9/30/2014 6:30:12 PM.
This article explains the basic concept of delegates, anonymous methods and lamda expressions.
Anonymous Types in C#
9/11/2014 2:17:04 AM.
In this article you will learn about Anonymous Types in C#.
Anonymous Authentication in SharePoint 2013
9/1/2014 6:17:38 PM.
This article describes anonymous authentication of SharePoint 2013 that allows users to access SharePoint content without credentials.
The Anonymous Methods and Lambda Expressions in .NET
7/31/2014 12:24:54 PM.
The purpose of this article is to provide the basic idea of Anonymous methods and Lambda expressions in C#.
A Journey to Lambda Expression: Part 2
7/29/2014 6:11:02 PM.
This article relates a journey to Lambda.
Enabling Anonymous Access SharePoint 2013
7/7/2014 6:35:25 PM.
Anonymous access, as the name suggests, allows anonymous users to view pages. Most public facing Internet websites use this type of access.
Anonymous Methods and Lambda Features in C#
5/21/2014 7:43:22 PM.
I have tried to explain the concept of Anonymous methods and Lambda expression features in a very simple manner.
Anonymous Methods in C#
4/24/2014 3:49:27 PM.
In this article we will learn how to implement anonymous functions in C#.
Progress Bar in WPF With Anonymous Delegates
3/8/2014 11:51:52 AM.
Here I created a WPF Progress Bar that will demonstrate many things.
How to Enable Anonymous Access For Existing Web Application
2/25/2014 4:18:41 PM.
Here, we will see how to enable anonymous access for an existing web application.
Timers in JQuery: Delay Method
1/31/2014 12:08:04 PM.
This article illustrates the use of a delay method with custom queues and duration.
Anonymous Types in C#
12/4/2013 4:39:57 PM.
Anonymous types were introduced in C# 3.0 with a special purpose to provide the easiest way to define objects with a few read-only properties.
How to Enable Anonymous Access to a Site
11/6/2013 11:29:09 AM.
In this article you will learn how to enable anonymous access to a site.
Some Important Keywords in C#
9/4/2013 1:09:36 PM.
In this article we will go through some important uses of C# keywords.
Anonymous Access in SharePoint 2013
5/23/2013 12:56:51 PM.
In this article I explain the procedure for setting up anonymous access in SharePoint 2013.
Foreach Behavior With Anonymous Methods and Captured Value
1/30/2013 5:18:52 PM.
Recently I’ve been researching about the behavior of foreach loop for C# in 5.0 and earlier versions. Here’s a snippet that I was trying and getting different output in different versions of C#.
Downcasting in Visual Basic.NET
11/9/2012 6:32:54 AM.
This article describes a simple approach to downcasting in Visual Basic; downcasting merely refers to the process of casting an object of a base class type to a derived class type.
Using Lambda expression
10/20/2012 1:54:44 AM.
This article gives you brief description about lambda expression and how to use it
New features in C# 2.0
10/13/2012 5:19:59 AM.
In this article, I will learn about and use the new features in C# 2.0 added by the Microsoft designers, such as generics, anonymous methods, partial types, static classes, nullable types, and limiting access to properties.
Anonymous Types in C#
10/11/2012 1:29:47 PM.
Today, in this article let’s play around with one of the interesting and most useful concepts in C#.
How to define conditional fields in anonymous types
9/29/2012 9:53:55 AM.
In this article I would like to show how to define conditional fields in anonymous types I think it is very interesting and useful.
Introduction to Functional Programming in C#
9/29/2012 8:43:02 AM.
With the release of the 3.5 framework, we have a completely different coding style available (functional programming). We could actually do functional programming in the 2.0 framework, but the resulting code was ugly and hard to understand at a glance and thus hard to maintain. Now, with lambda method syntax and extension methods, we can produce very human-readable code written in a functional style.
C# 3.0 - Object Initializers, Collection Intializers, Anonymous Classes
9/2/2012 5:38:55 PM.
In this article we will discuss some of the very useful features introduced in C# 3.0
Writing Equivalent LINQ Expressions in F#
5/15/2012 1:23:50 PM.
In this article we will compare LINQ expressions to the equivalent F# expressions for an F# List and show how to use projection, filtering, and other LINQ goodies in F#.
Understanding Recursion in F#
5/13/2012 5:23:46 AM.
This article is a demonstration regarding Recursion and its types like Tail Recursion, Anonymous and Mutual Recursion. Take a quick review to learn.
Anonymous Method in C#
1/9/2012 5:05:46 PM.
In this article you will see how to implement Anonymous Methods in C#.
How to secure external anonymous access to SharePoint 2010 sites
2/19/2011 3:13:09 PM.
In this article I am explaining about securing anonymous access in SharePoint 2010 sites. This is a pain for most of organizations when dealing with public facing anonymous access sites. In this article I also cover how to secure _layout folders.
C# Language Enhancements
10/26/2010 2:51:39 PM.
This article talks about some C# language enhancements.
How to enable Anonymous access in SharePoint 2010
10/26/2010 1:47:41 AM.
In this article I am showing you how to enable anonymous access in SharePoint 2010.
Steps to make public site in Share point
9/6/2010 1:54:30 AM.
In Share point when dealing with internet site we should have some situations where we need to give access to some people who were not in our Active directory or Databases(In case of Forms Authentication).
Exploring ViewFormPagesLockDown Feature and Anonymous site security
8/9/2010 4:31:03 AM.
In this article you will learn how to Explore ViewFormPagesLockDown Feature and Anonymous site security.
Configuring MOSS 2007 Anonymous site to use ASP.NET Membership Provider
8/6/2010 1:25:33 AM.
In my previous post I explained steps about how to create anonymous web site using SharePoint existing site. So in this post I am going to make use of out of the box ASP.NET Membership Provider and it to anonymous site which we created.
Creating Anonymous Site using SharePoint Existing Web Application
6/30/2010 1:27:34 AM.
From long time I was looking after this as curiosity, and now after some google I have understood how this can be done, I will be summarizing points and procedure which is used to create anonymous site by using existing SharePoint web application.
Preventing Anonymous Access to Web Sites in ASP.Net
6/14/2010 12:49:56 AM.
This article will explain you how to prevent the Anonymous Access in web applications deeply.
SharePoint Site Dual Authentication - Window and Form Based (Using SqlMembershipProvider) with Anonymous Access
6/4/2010 1:14:59 AM.
In this article you will learn how to use SharePoint Site Dual Authentication - Window and Form Based (Using SqlMembershipProvider) with Anonymous Access.
Deny anonymous access to library, lists and settings in Share Point 2007
4/15/2010 6:19:22 AM.
In this article we will see how to deny anonymous access to library, lists and settings in SharePoint 2007.
C# 3.0 New Features: Part I
11/26/2009 3:55:56 AM.
This article explains about the new features introduced in C# 3.0 with sample codes.
Checking a HTTP proxy status and type
10/18/2009 9:48:33 PM.
This article demonstrates how to check if a HTTP Proxy is working and if its anonymous or transparent using C#.
Downcasting in C#
3/2/2009 12:13:35 AM.
This article describes a simple approach to downcasting in C#; downcasting merely refers to the process of casting an object of a base class type to a derived class type. Upcasting is legal in C# as the process there is to convert an object of a derived class type into an object of its base class type. In spite of the general illegality of downcasting you may find that when working with generics it is sometimes handy to do it anyway.
Methods, Delegates, Anonymous Delegates, and Lambda Expressions... Oh My!
3/21/2008 8:11:03 PM.
This article covers different syntax we can use for declaring and executing methods.
Using LINQ in Visual Studio 2005
6/20/2007 8:44:52 AM.
LINQ (.Net Language Integrated Query) is the general-purpose standard query operators that allow traversal, filter and projection operations to be expressed in a direct yet declarative way in any .Net programming language.
New Features in C# version 2.0 - Partial Types
8/31/2006 1:57:33 AM.
Partial types are new addition to C# language version 2.0, which is available with the .NET Framework 2.0 or Visual Studio 2005. This article discusses the partial classes and how to create and use them in your applications.
New Features in C# 2.0 : Part 1
12/19/2005 5:11:40 AM.
In a two part series I will explain new features introduces in C# language version 2.0. In this article I will talk about generics.
New Features in C# 2.0 : Part 2
12/19/2005 4:58:59 AM.
In this article I will talk about iterators, anonymous methods, and partial classes.
Anonymous Method to Retrieve Data Reader Passed from DAL
12/13/2005 5:46:11 PM.
Anonymous method is a new feature in C# 2.0 that allows you to define an anonymous method called by a delegate.