VSC01 Securing WPF Client Applications About Brian

Total Page:16

File Type:pdf, Size:1020Kb

VSC01 Securing WPF Client Applications About Brian Visual Studio Connections November 1-4, 2010 Las Vegas, NV VSC01 Securing WPF Client Applications Brian Noyes IDesign Inc (www.idesign.net) [email protected] @briannoyes About Brian Publishing Developing Applications with Windows Workflow Foundation, Chief Architect LiveLessons training DVD, June 2007 IDesign Inc. (www.idesign.net) Smart Client Deployment with ClickOnce, Addison Wesley, Microsoft Regional Director January 2007 (www.theregion.com) Data Binding in Windows Forms 2.0, Addison Wesley, January 2006 MSDN Magazine, MSDN Online, Microsoft MVP CoDe Magazine, The SilverlightShow, Connected Systems The Server Side .NET, asp.netPRO, Visual Studio Magazine Speaking E-mail: [email protected] Blog: http://briannoyes.net Microsoft TechEd US, Europe, Malaysia, Visual Studio Connections, DevTeach, Twitter: @briannoyes INETA Speakers Bureau, MSDN Webcasts Copyright © 2010 Brian Noyes 1 Visual Studio Connections November 1-4, 2010 Las Vegas, NV Agenda • .NET Security Overview • Membership and Role Providers • Client Application Services • Code Access Security • ClickOnce Security • WCF Client Security Security Concerns • Authentication ● Client and services • Authorization ● Client and services • Application protection ● Restrict what the application can do on the machine ● CAS-based ● Affects ClickOnce and WPF Browser apps • Service message protection • Intellectual property protection ● Obfuscation Copyright © 2010 Brian Noyes 2 Visual Studio Connections November 1-4, 2010 Las Vegas, NV Security • WPF has no separate security mechanisms of its own • Leverage existing security mechanisms of .NET Framework ● Code Access Security (CAS) ● Role-based security ● ASP.NET Security providers • Membership • Roles ● Client Application Services ● ClickOnce partial trust • May need to call a remote web service to authenticate ● WCF has built-in authentication mechanisms that can work against many different kinds of credential stores • May need to disable portions of the UI based on roles ● Thread.CurrentPrincipal.IsUserInRole() Principal • Principal implements IPrincipal ● System.Security.Principal public interface IPrincipal { IIdentity Identity {get;} bool IsInRole(string role); } • An object representing identity and role(s) information ● Everything you need to know to make authorization decision • Every thread has a principal • Available implementation ● GenericPrincipal ● WindowsPrincipal Copyright © 2010 Brian Noyes 3 Visual Studio Connections November 1-4, 2010 Las Vegas, NV Principal • Every thread has a principal public class Thread { public static IPrincipal CurrentPrincipal{get;set;} //More members } • Can discover user name and authentication ● Without authentication, role-based security is meaningless IPrincipal principal = Thread.CurrentPrincipal; string userName = principal.Identity.Name; bool isAuthenticated = principal.Identity.IsAuthenticated; Principal • IPrincipal provides access to user identity via IIdentity public interface IIdentity { string AuthenticationType{get;} bool IsAuthenticated{get;} string Name{get;} } • Available implementation ● GenericIdentity ● WindowsIdentity Copyright © 2010 Brian Noyes 4 Visual Studio Connections November 1-4, 2010 Las Vegas, NV Agenda • .NET Security Overview • Membership and Role Providers • Client Application Services • Code Access Security • ClickOnce Security • WCF Client Security ASP.NET Security Provider Model Provider Base Role Provider Membership Provider Sql Server Authorization Store Windows Token Sql Server Active Directory Copyright © 2010 Brian Noyes 5 Visual Studio Connections November 1-4, 2010 Las Vegas, NV Membership provider • Can obtain configured provider from Membership public static class Membership { public static string ApplicationName{get;set;} public static MembershipProvider Provider{get;} public static bool ValidateUser(string userName,string password); //Additional members } • Can use Membership directly as shorthand Role provider • Can obtain configured provider from Roles public static class Roles { public static string ApplicationName{get;set;} public static string[] GetRolesForUser(string username); public static bool IsUserInRole(string username,string roleName); public static RoleProvider Provider{get;} //Additional members } • Can use Roles directly as shorthand Copyright © 2010 Brian Noyes 6 Visual Studio Connections November 1-4, 2010 Las Vegas, NV Membership and Role configuration • system.web section of config file • membership element ● Specify app default provider ● Provide collection of named providers • roleManager element ● Enable to turn on roles ● Specify app default provider ● Provide collection of named providers Leveraging Membership and Roles • Can use directly in the client against a store reachable from the client • WCF service calls can be authenticated and authorized via ASP.NET providers • Client Application Services provides client implementations of the providers that use service calls to authenticate against remote service/store Copyright © 2010 Brian Noyes 7 Visual Studio Connections November 1-4, 2010 Las Vegas, NV Agenda • .NET Security Overview • Membership and Role Providers • Client Application Services • Code Access Security • ClickOnce Security • WCF Client Security Client Application Services • Declarative / configuration based approach • Uses client implementations of membership / role providers ● They make ASP.NET Web Service calls to IIS hosted service ● Service does the actual authentication and role lookup and returns results to client • Establishes role principal on client for authorization checks • Also supports profiles (user prefs) Copyright © 2010 Brian Noyes 8 Visual Studio Connections November 1-4, 2010 Las Vegas, NV Client Application Services • Create an ASP.NET site that will be called to authenticate user ● Configure to answer Client Application Services calls • Enable Client Application Services in the client app ● Configure addresses for the services • Login the user • User Membership and Role providers in client code as needed • Or use Principal on the thread Agenda • .NET Security Overview • Membership and Role Providers • Client Application Services • Code Access Security • ClickOnce Security • WCF Client Security Copyright © 2010 Brian Noyes 9 Visual Studio Connections November 1-4, 2010 Las Vegas, NV Code Access Security • Intricate system that determines what a managed application can do based on ● Who created it ● Where it is running • Greatly simplified in .NET 4 Agenda • .NET Security Overview • Membership and Role Providers • Client Application Services • Code Access Security • ClickOnce Security • WCF Client Security Copyright © 2010 Brian Noyes 10 Visual Studio Connections November 1-4, 2010 Las Vegas, NV ClickOnce Security • Can deploy apps with ClickOnce with partial trust ● Specific set of granted permissions ● App runs in constrained AppDomain • Can specify trusted publishers based on the publisher certificate ● Avoid user prompting on install • WPF Browser Apps ● Really ClickOnce deployed ● Partial trust by default • Based on launch location ● Can run full trust Agenda • .NET Security Overview • Membership and Role Providers • Client Application Services • Code Access Security • ClickOnce Security • WCF Client Security Copyright © 2010 Brian Noyes 11 Visual Studio Connections November 1-4, 2010 Las Vegas, NV WCF Client Security • Client needs to provide credentials to service • Windows security ● If secured with Windows and inside the firewall, happens automatically • Process identity collected by WCF stack ● If outside the firewall, can pass domain-qualified username/password explicitly • ClientBase<T>.ClientCredentials.Windows • Username credentials ● Can pass username/password via proxy • ClientBase<T>.ClientCredentials.Username • Client does not automatically establish a security context Resources • Client Application Services Walkthough: ● http://msdn.microsoft.com/en-us/library/bb546195.aspx • Client Application Services, Bilal Haidar, ASP Alliance: ● Part 1: http://aspalliance.com/1595_Client_Application_Services__Part_1 ● Part 2: http://aspalliance.com/1596 • Smart Client Deployment with ClickOnce, Brian Noyes, Addison Wesley, 2007. http://www.amazon.com/Smart-Client-Deployment-ClickOnce- Applications/dp/0321197690 E-mail: [email protected] Blog: http://briannoyes.net Twitter: @briannoyes Copyright © 2010 Brian Noyes 12 Visual Studio Connections November 1-4, 2010 Las Vegas, NV Your Feedback is Important Please fill out a session evaluation form drop it off at the conference registration desk. Thank you! Copyright © 2010 Brian Noyes 13.
Recommended publications
  • The Following Documentation Is an Electronically‐ Submitted Vendor Response to an Advertised Solicitation from the West
    The following documentation is an electronically‐ submitted vendor response to an advertised solicitation from the West Virginia Purchasing Bulletin within the Vendor Self‐Service portal at wvOASIS.gov. As part of the State of West Virginia’s procurement process, and to maintain the transparency of the bid‐opening process, this documentation submitted online is publicly posted by the West Virginia Purchasing Division at WVPurchasing.gov with any other vendor responses to this solicitation submitted to the Purchasing Division in hard copy format. Purchasing Division State of West Virginia 2019 Washington Street East Solicitation Response Post Office Box 50130 Charleston, WV 25305-0130 Proc Folder : 702868 Solicitation Description : Addendum No 2 Supplemental Staffing for Microsoft Applicatio Proc Type : Central Contract - Fixed Amt Date issued Solicitation Closes Solicitation Response Version 2020-06-10 SR 1300 ESR06092000000007338 1 13:30:00 VENDOR VS0000020585 Cambay Consulting LLC Solicitation Number: CRFQ 1300 STO2000000002 Total Bid : $370,750.00 Response Date: 2020-06-09 Response Time: 09:51:40 Comments: FOR INFORMATION CONTACT THE BUYER Melissa Pettrey (304) 558-0094 [email protected] Signature on File FEIN # DATE All offers subject to all terms and conditions contained in this solicitation Page : 1 FORM ID : WV-PRC-SR-001 Line Comm Ln Desc Qty Unit Issue Unit Price Ln Total Or Contract Amount 1 Temporary information technology 2000.00000 HOUR $72.170000 $144,340.00 software developers Comm Code Manufacturer Specification
    [Show full text]
  • Dxperience V2008 Vol 1 All Devexpress ASP.NET, Winforms, WPF and Productivity Tools in One Package
    /issue 66/us edition best selling publisher awards see page 58 .upThe latest dateproducts available at www.componentsource.com Experience the DevExpress Difference • ASP.NET, WinForms & WPF Components • IDE Productivity Tools • Business Application Frameworks In one integrated package • XtraReports Suite • XtraReports for ASP.NET • XtraGrid Suite • XtraCharts for ASP.NET • XtraEditors Suite • ASPxGridView • XtraCharts Suite • ASPxEditors • XtraPivotGrid Suite • ASPxPivotGrid • XtraBars Suite • ASPxperience • XtraScheduler Suite • ASPxTreeList • XtraLayout Control • ASPxSpellChecker • XtraNavBar • ASPxHTML Editor • XtraPrinting Library • CodeRush • XtraSpellChecker • Refactor! Pro • XtraVerticalGrid • eXpressPersistent Objects • XtraTreeList • eXpressApp Framework DXperience v2008 vol 1 All DevExpress ASP.NET, WinForms, WPF and Productivity Tools in one package Learn more at: www.componentsource.com/devexpress US Headquarters European Headquarters Asia / Pacific Headquarters ComponentSource ComponentSource ComponentSource 650 Claremore Prof Way 30 Greyfriars Road 3F Kojimachi Square Bldg www.componentsource.com Suite 100 Reading 3-3 Kojimachi Chiyoda-ku Woodstock Berkshire Tokyo GA 30188-5188 RG1 1PE Japan Sales Hotline: USA United Kingdom 102-0083 Tel: (770) 250 6100 Tel: +44 118 958 1111 Tel: +81-3-3237-0281 Fax: (770) 250 6199 Fax: +44 118 958 9999 Fax: +81-3-3237-0282 (888) 850-9911 /n software /n software Red Carpet Subscription 2008 Write communications, security and e-business applications. • Includes components for FTP, IMAP, SNMP, SSL, SSH, S/MIME, Digital Certificates, Credit Card Processing and e-business (EDI) transactions • Free updates, upgrades, tech support and new releases for a year NEW RELEASE IP*Works! Internet Communications Secure Components Includes IP*Works! which is a ATOM, REST, MX, DNS, RSS, NNTP, /n software Red Carpet comprehensive framework for SMPP, POP, Rexec, Rshell, SMTP, Subscription includes secure Internet development.
    [Show full text]
  • The Following Documentation Is an Electronically‐ Submitted Vendor Response to an Advertised Solicitation from the West
    The following documentation is an electronically‐ submitted vendor response to an advertised solicitation from the West Virginia Purchasing Bulletin within the Vendor Self‐Service portal at wvOASIS.gov. As part of the State of West Virginia’s procurement process, and to maintain the transparency of the bid‐opening process, this documentation submitted online is publicly posted by the West Virginia Purchasing Division at WVPurchasing.gov with any other vendor responses to this solicitation submitted to the Purchasing Division in hard copy format. Purchasing Division State of West Virginia 2019 Washington Street East Solicitation Response Post Office Box 50130 Charleston, WV 25305-0130 Proc Folder : 702868 Solicitation Description : Addendum No 2 Supplemental Staffing for Microsoft Applicatio Proc Type : Central Contract - Fixed Amt Date issued Solicitation Closes Solicitation Response Version 2020-06-10 SR 1300 ESR05182000000006750 1 13:30:00 VENDOR VS0000022233 Global Information Technology Resources, Inc. Global Health IT Solicitation Number: CRFQ 1300 STO2000000002 Total Bid : $490,000.00 Response Date: 2020-06-09 Response Time: 11:06:33 Comments: FOR INFORMATION CONTACT THE BUYER Melissa Pettrey (304) 558-0094 [email protected] Signature on File FEIN # DATE All offers subject to all terms and conditions contained in this solicitation Page : 1 FORM ID : WV-PRC-SR-001 Line Comm Ln Desc Qty Unit Issue Unit Price Ln Total Or Contract Amount 1 Temporary information technology 2000.00000 HOUR $98.000000 $196,000.00 software developers Comm Code Manufacturer Specification Model # 80111608 Extended Description : Year 1 / Individual 1 Comments: Global IT Resources is proud to submit the required supplemental Microsoft Developer Staff required by the State of West Virginia.
    [Show full text]
  • Solution Set of AWP Solution Set November-2018 1. Attempt Any Three of the Following: A. What Is Namespace? Explain with the Help of an Example
    Solution Set of AWP solution set November-2018 1. Attempt any three of the following: a. What is namespace? Explain with the help of an example. A namespace is designed for providing a way to keep one set of names separate from another. The class names declared in one namespace does not conflict with the same class names declared in another. Defining a Namespace A namespace definition begins with the keyword namespace followed by the namespace name as follows − namespace namespace_name { // code declarations } To call the namespace-enabled version of either function or variable, prepend the namespace name as follows − namespace_name.item_name; (2 marks) Any example demo (3 marks) b. Explain jagged array with example. A Jagged array is an array of arrays. You can declare a jagged array named scores of type int as int [][] scores; Declaring an array, does not create the array in memory. To create the above array − int[][] scores = new int[5][]; for (int i = 0; i < scores.Length; i++) { scores[i] = new int[4]; } You can initialize a jagged array as − int[][] scores = new int[2][]{new int[]{92,93,94},new int[]{85,66,87,88}}; Where, scores is an array of two arrays of integers - scores[0] is an array of 3 integers and scores[1] is an array of 4 integers. (2marks) Any example (3 marks) c. What is .NET Framework? Explain its architecture in brief. The .NET Framework is a new and revolutionary platform created by Microsoft for developing applications • It is a platform for application developers • It is a Framework that supports Multiple Language and Cross languageintegration.
    [Show full text]
  • Pro ASP.NET 3.5 in C# 2008: Includes Silverlight 2, Third Edition Copyright © 2009 by Matthew Macdonald and Mario Szpuszta All Rights Reserved
    Macdonald_1567-7front.fm Page ii Wednesday, November 19, 2008 3:21 PM Pro ASP.NET 3.5 in C# 2008: Includes Silverlight 2, Third Edition Copyright © 2009 by Matthew MacDonald and Mario Szpuszta All rights reserved. No part of this work may be reproduced or transmitted in any form or by any means, electronic or mechanical, including photocopying, recording, or by any information storage or retrieval system, without the prior written permission of the copyright owner and the publisher. ISBN-13 (paperback): 978-1-4302-1567-7 ISBN-13 (electronic): 978-1-4302-1568-4 Printed and bound in the United States of America 9 8 7 6 5 4 3 2 1 Trademarked names may appear in this book. Rather than use a trademark symbol with every occurrence of a trademarked name, we use the names only in an editorial fashion and to the benefit of the trademark owner, with no intention of infringement of the trademark. Lead Editor: Ewan Buckingham Technical Reviewer: Andy Olsen Editorial Board: Clay Andres, Steve Anglin, Mark Beckner, Ewan Buckingham, Tony Campbell, Gary Cornell, Jonathan Gennick, Michelle Lowman, Matthew Moodie, Duncan Parkes, Jeffrey Pepper, Douglas Pundick, Frank Pohlmann, Ben Renow-Clarke, Dominic Shakeshaft, Matt Wade, Tom Welsh Production Director | Project Manager: Grace Wong Copy Editors: Kim Wimpsett, Damon Larson Associate Production Director: Kari Brooks-Copony Production Editor: Laura Esterman Compositor: Susan Glinert Proofreader: Nancy Bell Indexer: Broccoli Information Management Artist: April Milne Cover Designer: Kurt Krames Manufacturing Director: Tom Debolski Distributed to the book trade worldwide by Springer-Verlag New York, Inc., 233 Spring Street, 6th Floor, New York, NY 10013.
    [Show full text]
  • Custom Cultures
    “This book is an invaluable read for anyone who wants to learn the hows, whys, and pitfalls of mobile programming and to truly understand why they’re doing what they’re doing.” —Joshua Trupin, Executive Editor, MSDN Magazine .NET Internationalization The Developer's Guide to Building Global Windows and Web Applications “This series is a great resource for developers using the .NET Framework and Web services. It covers all the bases from refer- ence to ‘how-to.’The books in this series are essential reading for developers who want to write solid managed code.” —John Montgomery Director, Developer Platform and Development Evangelism Division, Microsoft Corporation “This series is supported by the Series leaders and principal authorities of the Microsoft .NET Framework Smith-Ferrier HAPTER and its languages. It has an C author pool that combines some REE AVAILABLE of the most insightful authors in F 2006 the industry with the software B OOK architects and developers ANUARY at Microsoft.” J —Don Box Architect, Microsoft Corporation Guy Smith-Ferrier DRAFT MANUSCRIPT Books Available January 2006 This manuscript has been provided by Pearson Education at this early stage to create awareness for this upcoming book. It has not been copyedited or proofread yet; we trust that you will judge this book on technical merit, not on grammatical and punctuation errors that will be fixed at a later stage. No part of this publication may be reproduced, stored in a retrieval system, or transmitted, in any form, or by any means, electronic, mechanical, photocopying, recording, or otherwise, without the prior consent of the publisher.
    [Show full text]
  • The Following Documentation Is an Electronically‐ Submitted Vendor
    The following documentation is an electronically‐ submitted vendor response to an advertised solicitation from the West Virginia Purchasing Bulletin within the Vendor Self‐Service portal at wvOASIS.gov. As part of the State of West Virginia’s procurement process, and to maintain the transparency of the bid‐opening process, this documentation submitted online is publicly posted by the West Virginia Purchasing Division at WVPurchasing.gov with any other vendor responses to this solicitation submitted to the Purchasing Division in hard copy format. Purchasing Division State of West Virginia 2019 Washington Street East Solicitation Response Post Office Box 50130 Charleston, WV 25305-0130 Proc Folder : 702868 Solicitation Description : Addendum No 2 Supplemental Staffing for Microsoft Applicatio Proc Type : Central Contract - Fixed Amt Date issued Solicitation Closes Solicitation Response Version 2020-06-10 SR 1300 ESR06072000000007293 1 13:30:00 VENDOR VS0000022041 Genius Business Solutions, Inc. Genius Business Solutions, Inc. Solicitation Number: CRFQ 1300 STO2000000002 Total Bid : $342,000.00 Response Date: 2020-06-07 Response Time: 13:15:59 Comments: Please see RFP response word document Section 4 for Details regarding volume discount FOR INFORMATION CONTACT THE BUYER Melissa Pettrey (304) 558-0094 [email protected] Signature on File FEIN # DATE All offers subject to all terms and conditions contained in this solicitation Page : 1 FORM ID : WV-PRC-SR-001 Line Comm Ln Desc Qty Unit Issue Unit Price Ln Total Or Contract Amount 1
    [Show full text]
  • C# 6.0 in a Nutshell
    6th Edition Covers .NET 4.6 & the Roslyn Compiler C# 6.0 in a Nutshell THE DEFINITIVE REFERENCE Joseph Albahari & Ben Albahari www.it-ebooks.info C# 6.0 in a Nutshell When you have questions about C# 6.0 or the C# 6.0 in a Nutshell is .NET CLR and its core Framework assemblies, this “ bestselling guide has the answers you need. C# has one of the few books become a language of unusual flexibility and breadth I keep on my desk as since its premiere in 2000, but this continual growth a quick reference.” means there’s still much more to learn. —Scott Guthrie Organized around concepts and use cases, Microsoft this thoroughly updated sixth edition provides Novices and experts intermediate and advanced programmers with a “ concise map of C# and .NET knowledge. Dive in and alike will find the latest discover why this Nutshell guide is considered the techniques in C# definitive reference on C#. programming here.” —Eric Lippert ■ Get up to speed with all aspects of the C# MVP C# language, from the basics of syntax and variables, to advanced topics such as pointers and operator overloading ■ Dig deep into LINQ via three chapters dedicated to the topic ■ Learn about dynamic, asynchronous, and Joseph Albahari, author of C# parallel programming 5.0 in a Nutshell, C# 5.0 Pocket Reference, and LINQ Pocket ■ Work with .NET features, including XML, Reference, also wrote LINQPad, networking, serialization, reflection, the popular code scratchpad and security, application domains, and code LINQ querying utility.. contracts Ben Albahari, a former program ■ Explore the new C# 6.0 compiler-as-a- manager at Microsoft, is cofounder service, Roslyn of Auditionist, a casting website for actors in the UK.
    [Show full text]
  • WHITE PAPER Oracle Database and Microsoft Windows and .NET
    W H I T E P A P E R O r a c l e D a t a b a s e a n d M i c r osoft Windows and .NET Interoperability: Packing Much More than Meets the Eye Sponsored by: Oracle Al Hilwa April 2009 IDC OPINION Though often coming without much fanfare, the interoperability initiatives between Oracle and Microsoft technologies around Oracle database support on Windows and with .NET application development have been substantial and have seen several iterations and improvements. Today, interoperability has reached a significant level of depth and maturity such that Oracle database customers developing .NET applications can truly leverage the best that these two vendors have to offer in their respective areas of excellence. In particular, the interoperability tools enable the following specific scenarios: Oracle databases that can run on the Windows platform allowing Windows users to enjoy the full complement of differentiating features that Oracle offers, such as Real Application Clusters (RAC), Automatic Storage Management (ASM), Real Application Testing, Database Vault, and Virtual Private Database (VPD) Application developers who utilize the Visual Studio integrated development environment (IDE) to author and debug applications that access Oracle databases, running on any platform, with a significantly higher level of productivity than is possible without them High-performance .NET applications that are written to the Oracle database and that utilize its unique and differentiating capabilities (e.g., Oracle Spatial Option, SQL Analytics, User-Defined
    [Show full text]
  • The Following Documentation Is an Electronically‐ Submitted Vendor
    The following documentation is an electronically‐ submitted vendor response to an advertised solicitation from the West Virginia Purchasing Bulletin within the Vendor Self‐Service portal at wvOASIS.gov. As part of the State of West Virginia’s procurement process, and to maintain the transparency of the bid‐opening process, this documentation submitted online is publicly posted by the West Virginia Purchasing Division at WVPurchasing.gov with any other vendor responses to this solicitation submitted to the Purchasing Division in hard copy format. Purchasing Division State of West Virginia 2019 Washington Street East Solicitation Response Post Office Box 50130 Charleston, WV 25305-0130 Proc Folder : 702868 Solicitation Description : Addendum No 2 Supplemental Staffing for Microsoft Applicatio Proc Type : Central Contract - Fixed Amt Date issued Solicitation Closes Solicitation Response Version 2020-06-10 SR 1300 ESR06022000000007196 1 13:30:00 VENDOR VS0000021961 Alrek Business Solutions Inc. Solicitation Number: CRFQ 1300 STO2000000002 Total Bid : $367,500.00 Response Date: 2020-06-02 Response Time: 18:23:23 Comments: FOR INFORMATION CONTACT THE BUYER Melissa Pettrey (304) 558-0094 [email protected] Signature on File FEIN # DATE All offers subject to all terms and conditions contained in this solicitation Page : 1 FORM ID : WV-PRC-SR-001 Line Comm Ln Desc Qty Unit Issue Unit Price Ln Total Or Contract Amount 1 Temporary information technology 2000.00000 HOUR $75.000000 $150,000.00 software developers Comm Code Manufacturer Specification
    [Show full text]
  • Mysql Connector/NET Developer Guide Abstract
    MySQL Connector/NET Developer Guide Abstract This manual describes how to install and configure MySQL Connector/NET, the connector that enables .NET applications to communicate with MySQL servers, and how to use it to develop database applications. For notes detailing the changes in each release of Connector/NET, see MySQL Connector/NET Release Notes. For legal information, including licensing information, see the Preface and Legal Notices. For help with using MySQL, please visit the MySQL Forums, where you can discuss your issues with other MySQL users. Document generated on: 2021-09-24 (revision: 70892) Table of Contents Preface and Legal Notices .................................................................................................................. v 1 Introduction to MySQL Connector/NET ............................................................................................. 1 2 Connector/NET Versions ................................................................................................................. 3 3 Connector/NET Installation .............................................................................................................. 7 3.1 Installing Connector/NET on Windows ................................................................................... 7 3.1.1 Installing Connector/NET Using MySQL Installer ......................................................... 7 3.1.2 Installing Connector/NET Using the Standalone Installer .............................................. 7 3.1.3 Installing Connector/NET
    [Show full text]
  • Mysql Connector/NET Developer Guide Abstract
    MySQL Connector/NET Developer Guide Abstract This manual describes how to install and configure MySQL Connector/NET, the connector that enables .NET applications to communicate with MySQL servers, and how to use it to develop database applications. For notes detailing the changes in each release of Connector/NET, see MySQL Connector/NET Release Notes. For legal information, including licensing information, see the Preface and Legal Notices. For help with using MySQL, please visit the MySQL Forums, where you can discuss your issues with other MySQL users. Document generated on: 2021-09-24 (revision: 70892) Table of Contents Preface and Legal Notices ............................................................................................................ v 1 Introduction to MySQL Connector/NET ....................................................................................... 1 2 Connector/NET Versions ............................................................................................................ 3 3 Connector/NET Installation ......................................................................................................... 7 3.1 Installing Connector/NET on Windows ............................................................................. 7 3.1.1 Installing Connector/NET Using MySQL Installer .................................................... 7 3.1.2 Installing Connector/NET Using the Standalone Installer ........................................ 7 3.1.3 Installing Connector/NET Using NuGet .................................................................
    [Show full text]