X509ImageLogo.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 / X509ImageLogo.cs / 1 / X509ImageLogo.cs

                            //------------------------------------------------------------------------------ 
// Copyright (c) Microsoft Corporation.  All rights reserved.
//-----------------------------------------------------------------------------
namespace Microsoft.InfoCards
{ 
    using System;
    using System.Collections.Generic; 
    using System.Security.Cryptography; 
    using System.Security.Cryptography.X509Certificates;
    // 
    // Summary:
    // Concrete class for image logos.
    //
    // Remarks: 
    // Contains the optional extra information supported by the RFC.
    // 
    sealed class X509ImageLogo : X509Logo 
    {
 
//        bool            m_isColor;
//        int             m_fileSize;         // in octets
//        int             m_width;            // in pixels
//        int             m_height;           // in pixels 
//        int             m_imageResolution;  // [1] numBits [2] tableSize (colors or grey tones)
 
        // 
        // Summary:
        // Constructs a new X509ImageLogo 
        //
        // 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 X509ImageLogo( 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