X509AudioLogo.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / infocard / Service / managed / Microsoft / InfoCards / X509AudioLogo.cs / 1 / X509AudioLogo.cs

                            namespace Microsoft.InfoCards 
{
    using System;
    using System.Collections.Generic;
    using System.Security.Cryptography; 
    using System.Security.Cryptography.X509Certificates;
    // 
    // Summary: 
    // Constructs a new X509AudioLogo
    // 
    // Parameters:
    // logoType        - The pid of the calling client process.
    // mediaType       - Format of logo file
    // hashes          - Map of hash algorithm oid to the bytes of the hash. 
    // fileLocations   - List of the file locations where the logo can be found.
    // 
    sealed class X509AudioLogo : X509Logo 
    {
        // 
        //


 

 
 

        // 
        // Summary:
        // Constructs a new X509AudioLogo
        //
        // Parameters: 
        // logoType        - The pid of the calling client process.
        // mediaType       - Format of logo file 
        // hashes          - Map of hash algorithm oid to the bytes of the hash. 
        // fileLocations   - List of the file locations where the logo can be found.
        // 
        public X509AudioLogo( X509LogoType logoType, string mediaType, Dictionary hashes, List fileLocations )
            : base( logoType, mediaType, hashes, fileLocations )
        {
        } 
    }
} 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.


                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK