프로젝트

일반

사용자정보

개정판 6c6baf40

ID6c6baf40c31c6f0b2318d9dd7b4450480325629d
상위 b2fd9579
하위 e9a6fa5a

임예철이(가) 10달 전에 추가함

FinalProcess 수정

Change-Id: I65e7baa76fe9c46674a80c7a0c2f2d4b4ee113ce

차이점 보기:

FileUploadWevService/FileUploadWevService.csproj
73 73
      <SubType>Component</SubType>
74 74
    </Compile>
75 75
    <Compile Include="Properties\AssemblyInfo.cs" />
76
    <Compile Include="Properties\Settings.Designer.cs">
77
      <AutoGen>True</AutoGen>
78
      <DesignTimeSharedInput>True</DesignTimeSharedInput>
79
      <DependentUpon>Settings.settings</DependentUpon>
80
    </Compile>
81 76
  </ItemGroup>
82 77
  <ItemGroup>
83 78
    <None Include="Properties\PublishProfiles\FolderProfile.pubxml" />
84
    <None Include="Properties\Settings.settings">
85
      <Generator>SettingsSingleFileGenerator</Generator>
86
      <LastGenOutput>Settings.Designer.cs</LastGenOutput>
87
    </None>
88 79
    <None Include="Web.Debug.config">
89 80
      <DependentUpon>Web.config</DependentUpon>
90 81
    </None>
FinalService/KCOM_FinalService_DL/FinalPDFAgent/FinalPDFAgent.csproj
35 35
  <ItemGroup>
36 36
    <Reference Include="System" />
37 37
    <Reference Include="System.Core" />
38
    <Reference Include="System.Data.Entity" />
39
    <Reference Include="System.Drawing" />
40
    <Reference Include="System.Web" />
41
    <Reference Include="System.Windows" />
38 42
    <Reference Include="System.Xml.Linq" />
39 43
    <Reference Include="System.Data.DataSetExtensions" />
40 44
    <Reference Include="Microsoft.CSharp" />
FinalService/KCOM_FinalService_DL/FinalProcess/FinalProcess.csproj
65 65
    <PackageReference Include="EntityFramework.ko">
66 66
      <Version>5.0.0</Version>
67 67
    </PackageReference>
68
    <PackageReference Include="iTextSharp">
69
      <Version>5.5.13.2</Version>
70
    </PackageReference>
71 68
    <PackageReference Include="log4net">
72 69
      <Version>2.0.12</Version>
73 70
    </PackageReference>
......
81 78
      <Project>{629dc8cd-d458-47ef-8f02-cd12c7001c3e}</Project>
82 79
      <Name>KCOMDataModel</Name>
83 80
    </ProjectReference>
81
    <ProjectReference Include="..\MarkupToPDF\MarkupToPDF.csproj">
82
      <Project>{a714bd67-8aac-4ed8-8ecf-7853c3549a68}</Project>
83
      <Name>MarkupToPDF</Name>
84
    </ProjectReference>
84 85
  </ItemGroup>
85 86
  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
86 87
</Project>
FinalService/KCOM_FinalService_DL/FinalProcess/Program.cs
26 26
      
27 27
                if (args.Length == 2)
28 28
                {
29
                    string finalID = args[0];
30
                    RemoteAddress = args[1];
29
                    string sFinalID = args[1];
30
                    string sProjectNo = args[0];
31
                    //RemoteAddress = args[1];
31 32
               
32 33
                    logger.Info($"FinalProcess Final ID :{args[0]}");
33 34

  
......
37 38
                    _markuptoPDF.EndFinal += _markuptoPDF_EndFinal;
38 39
                    using (KCOMDataModel.DataModel.KCOMEntities _entity = new KCOMDataModel.DataModel.KCOMEntities(KCOMDataModel.Common.ConnectStringBuilder.KCOMConnectionString().ToString()))
39 40
                    {
40
                        var items = _entity.FINAL_PDF.Where(x => x.ID == finalID);
41
                        var items = _entity.FINAL_PDF.Where(x => x.ID == sFinalID && x.PROJECT_NO == sProjectNo);
41 42

  
42 43
                        if(items.Count() > 0)
43 44
                        {
FinalService/KCOM_FinalService_DL/KCOM_FinalService/FinalService.cs
151 151
                {
152 152
                    if (kv.Value.Id == -1)
153 153
                    {
154
                        _Timer.Elapsed -= _Timer_Elapsed;
154 155
                        var tokens = kv.Value.Document.Split('-');
155 156
                        LaunchFindPDFAgent(kv.Key, tokens[0], tokens[1]);
157
                        _Timer.Elapsed += _Timer_Elapsed;
156 158
                    }
157 159
                    else
158 160
                    {
FinalService/KCOM_FinalService_DL/MarkupToPDF/MarkupToPDF.cs
1528 1528

  
1529 1529
        }
1530 1530

  
1531
        private void DrawLine(S_LineControl control, PdfContentByte contentByte, string[] delimiterChars, string[] delimiterChars2, System.Drawing.Color setColor)
1531
        public void DrawLine(S_LineControl control, PdfContentByte contentByte, string[] delimiterChars, string[] delimiterChars2, System.Drawing.Color setColor)
1532 1532
        {
1533 1533
            string[] InnerData = control.SizeSet.Split(delimiterChars2, StringSplitOptions.RemoveEmptyEntries);
1534 1534
            Point StartPoint = GetPdfPointSystem(control.StartPoint);
FinalService/KCOM_FinalService_DL/ProcessPublish/itextsharp.xml
35611 35611
            <returns> Returns a byte array containg the decoded string. </returns>
35612 35612
            <exception cref="T:iTextSharp.xmp.XmpException"> Thrown if the given string is not property base64 encoded </exception>
35613 35613
        </member>
35614
        <member name="M:System.util.collections.OrderedTree.Add(System.IComparable,System.Object)">
35615
            <summary>
35616
             Add
35617
             args: ByVal key As IComparable, ByVal data As Object
35618
             key is object that implements IComparable interface
35619
             performance tip: change to use use int type (such as the hashcode)
35620
            </summary>
35614
        <member name="M:Org.BouncyCastle.Asn1.Asn1Encodable.GetDerEncoded">
35615
             Return the DER encoding of the object, null if the DER encoding can not be made.
35616
            
35617
             @return a DER byte array, null otherwise.
35618
        </member>
35619
        <member name="T:Org.BouncyCastle.Asn1.Asn1InputStream">
35620
            a general purpose ASN.1 decoder - note: this class differs from the
35621
            others in that it returns null after it has read the last object in
35622
            the stream. If an ASN.1 Null is encountered a Der/BER Null object is
35623
            returned.
35624
        </member>
35625
        <member name="M:Org.BouncyCastle.Asn1.Asn1InputStream.#ctor(System.IO.Stream,System.Int32)">
35626
             Create an ASN1InputStream where no DER object will be longer than limit.
35627
            
35628
             @param input stream containing ASN.1 encoded data.
35629
             @param limit maximum size of a DER encoded object.
35630
        </member>
35631
        <member name="M:Org.BouncyCastle.Asn1.Asn1InputStream.#ctor(System.Byte[])">
35632
             Create an ASN1InputStream based on the input byte array. The length of DER objects in
35633
             the stream is automatically limited to the length of the input array.
35634
            
35635
             @param input array containing ASN.1 encoded data.
35621 35636
        </member>
35622
        <member name="M:System.util.collections.OrderedTree.RestoreAfterInsert(System.util.collections.OrderedTreeNode)">
35623
            <summary>
35624
             RestoreAfterInsert
35625
             Additions to red-black trees usually destroy the red-black 
35626
             properties. Examine the tree and restore. Rotations are normally 
35627
             required to restore it
35628
            </summary>
35637
        <member name="M:Org.BouncyCastle.Asn1.Asn1InputStream.BuildObject(System.Int32,System.Int32,System.Int32)">
35638
            build an object given its tag and the number of bytes to construct it from.
35639
        </member>
35640
        <member name="T:Org.BouncyCastle.Asn1.Asn1Null">
35641
            A Null object.
35642
        </member>
35643
        <member name="M:Org.BouncyCastle.Asn1.Asn1Object.FromByteArray(System.Byte[])">
35644
            <summary>Create a base ASN.1 object from a byte array.</summary>
35645
            <param name="data">The byte array to parse.</param>
35646
            <returns>The base ASN.1 object represented by the byte array.</returns>
35647
            <exception cref="T:System.IO.IOException">If there is a problem parsing the data.</exception>
35648
        </member>
35649
        <member name="M:Org.BouncyCastle.Asn1.Asn1Object.FromStream(System.IO.Stream)">
35650
            <summary>Read a base ASN.1 object from a stream.</summary>
35651
            <param name="inStr">The stream to parse.</param>
35652
            <returns>The base ASN.1 object represented by the byte array.</returns>
35653
            <exception cref="T:System.IO.IOException">If there is a problem parsing the data.</exception>
35654
        </member>
35655
        <member name="M:Org.BouncyCastle.Asn1.Asn1OctetString.GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)">
35656
             return an Octet string from a tagged object.
35657
            
35658
             @param obj the tagged object holding the object we want.
35659
             @param explicitly true if the object is meant to be explicitly
35660
                          tagged false otherwise.
35661
             @exception ArgumentException if the tagged object cannot
35662
                          be converted.
35663
        </member>
35664
        <member name="M:Org.BouncyCastle.Asn1.Asn1OctetString.GetInstance(System.Object)">
35665
             return an Octet string from the given object.
35666
            
35667
             @param obj the object we want converted.
35668
             @exception ArgumentException if the object cannot be converted.
35669
        </member>
35670
        <member name="M:Org.BouncyCastle.Asn1.Asn1OctetString.#ctor(System.Byte[])">
35671
            @param string the octets making up the octet string.
35672
        </member>
35673
        <member name="M:Org.BouncyCastle.Asn1.Asn1Sequence.GetInstance(System.Object)">
35674
             return an Asn1Sequence from the given object.
35675
            
35676
             @param obj the object we want converted.
35677
             @exception ArgumentException if the object cannot be converted.
35678
        </member>
35679
        <member name="M:Org.BouncyCastle.Asn1.Asn1Sequence.GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)">
35680
             Return an ASN1 sequence from a tagged object. There is a special
35681
             case here, if an object appears to have been explicitly tagged on
35682
             reading but we were expecting it to be implicitly tagged in the
35683
             normal course of events it indicates that we lost the surrounding
35684
             sequence - so we need to add it back (this will happen if the tagged
35685
             object is a sequence that contains other sequences). If you are
35686
             dealing with implicitly tagged sequences you really <b>should</b>
35687
             be using this method.
35688
            
35689
             @param obj the tagged object.
35690
             @param explicitly true if the object is meant to be explicitly tagged,
35691
                      false otherwise.
35692
             @exception ArgumentException if the tagged object cannot
35693
                      be converted.
35694
        </member>
35695
        <member name="P:Org.BouncyCastle.Asn1.Asn1Sequence.Item(System.Int32)">
35696
             return the object at the sequence position indicated by index.
35697
            
35698
             @param index the sequence number (starting at zero) of the object
35699
             @return the object at the sequence position indicated by index.
35700
        </member>
35701
        <member name="M:Org.BouncyCastle.Asn1.Asn1Set.GetInstance(System.Object)">
35702
             return an ASN1Set from the given object.
35703
            
35704
             @param obj the object we want converted.
35705
             @exception ArgumentException if the object cannot be converted.
35706
        </member>
35707
        <member name="M:Org.BouncyCastle.Asn1.Asn1Set.GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)">
35708
             Return an ASN1 set from a tagged object. There is a special
35709
             case here, if an object appears to have been explicitly tagged on
35710
             reading but we were expecting it to be implicitly tagged in the
35711
             normal course of events it indicates that we lost the surrounding
35712
             set - so we need to add it back (this will happen if the tagged
35713
             object is a sequence that contains other sequences). If you are
35714
             dealing with implicitly tagged sets you really <b>should</b>
35715
             be using this method.
35716
            
35717
             @param obj the tagged object.
35718
             @param explicitly true if the object is meant to be explicitly tagged
35719
                      false otherwise.
35720
             @exception ArgumentException if the tagged object cannot
35721
                      be converted.
35722
        </member>
35723
        <member name="M:Org.BouncyCastle.Asn1.Asn1Set.LessThanOrEqual(System.Byte[],System.Byte[])">
35724
            return true if a &lt;= b (arrays are assumed padded with zeros).
35725
        </member>
35726
        <member name="P:Org.BouncyCastle.Asn1.Asn1Set.Item(System.Int32)">
35727
             return the object at the set position indicated by index.
35728
            
35729
             @param index the set number (starting at zero) of the object
35730
             @return the object at the set position indicated by index.
35731
        </member>
35732
        <member name="T:Org.BouncyCastle.Asn1.Asn1TaggedObject">
35733
            ASN.1 TaggedObject - in ASN.1 notation this is any object preceded by
35734
            a [n] where n is some number - these are assumed to follow the construction
35735
            rules (as with sequences).
35736
        </member>
35737
        <member name="M:Org.BouncyCastle.Asn1.Asn1TaggedObject.#ctor(System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable)">
35738
            @param tagNo the tag number for this object.
35739
            @param obj the tagged object.
35740
        </member>
35741
        <member name="M:Org.BouncyCastle.Asn1.Asn1TaggedObject.#ctor(System.Boolean,System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable)">
35742
            @param explicitly true if the object is explicitly tagged.
35743
            @param tagNo the tag number for this object.
35744
            @param obj the tagged object.
35745
        </member>
35746
        <member name="M:Org.BouncyCastle.Asn1.Asn1TaggedObject.IsExplicit">
35747
            return whether or not the object may be explicitly tagged.
35748
            <p>
35749
            Note: if the object has been read from an input stream, the only
35750
            time you can be sure if isExplicit is returning the true state of
35751
            affairs is if it returns false. An implicitly tagged object may appear
35752
            to be explicitly tagged, so you need to understand the context under
35753
            which the reading was done as well, see GetObject below.</p>
35754
        </member>
35755
        <member name="M:Org.BouncyCastle.Asn1.Asn1TaggedObject.GetObject">
35756
            return whatever was following the tag.
35757
            <p>
35758
            Note: tagged objects are generally context dependent if you're
35759
            trying to extract a tagged object you should be going via the
35760
            appropriate GetInstance method.</p>
35629 35761
        </member>
35630
        <member name="M:System.util.collections.OrderedTree.RotateLeft(System.util.collections.OrderedTreeNode)">
35631
            <summary>
35632
             RotateLeft
35633
             Rebalance the tree by rotating the nodes to the left
35634
            </summary>
35762
        <member name="M:Org.BouncyCastle.Asn1.Asn1TaggedObject.GetObjectParser(System.Int32,System.Boolean)">
35763
            Return the object held in this tagged object as a parser assuming it has
35764
            the type of the passed in tag. If the object doesn't have a parser
35765
            associated with it, the base object is returned.
35635 35766
        </member>
35636
        <member name="M:System.util.collections.OrderedTree.RotateRight(System.util.collections.OrderedTreeNode)">
35637
            <summary>
35638
             RotateRight
35639
             Rebalance the tree by rotating the nodes to the right
35640
            </summary>
35767
        <member name="T:Org.BouncyCastle.Asn1.DerApplicationSpecific">
35768
            Base class for an application specific object
35641 35769
        </member>
35642
        <!-- Badly formed XML comment ignored for member "M:System.util.collections.OrderedTree.GetData(System.IComparable)" -->
35643
        <!-- Badly formed XML comment ignored for member "M:System.util.collections.OrderedTree.GetMinKey" -->
35644
        <!-- Badly formed XML comment ignored for member "M:System.util.collections.OrderedTree.GetMaxKey" -->
35645
        <!-- Badly formed XML comment ignored for member "M:System.util.collections.OrderedTree.GetMinValue" -->
35646
        <!-- Badly formed XML comment ignored for member "M:System.util.collections.OrderedTree.GetMaxValue" -->
35647
        <!-- Badly formed XML comment ignored for member "M:System.util.collections.OrderedTree.GetEnumerator" -->
35648
        <!-- Badly formed XML comment ignored for member "M:System.util.collections.OrderedTree.Elements" -->
35649
        <!-- Badly formed XML comment ignored for member "M:System.util.collections.OrderedTree.IsEmpty" -->
35650
        <!-- Badly formed XML comment ignored for member "M:System.util.collections.OrderedTree.Remove(System.IComparable)" -->
35651
        <!-- Badly formed XML comment ignored for member "M:System.util.collections.OrderedTree.Delete(System.util.collections.OrderedTreeNode)" -->
35652
        <member name="M:System.util.collections.OrderedTree.RestoreAfterDelete(System.util.collections.OrderedTreeNode)">
35653
            <summary>
35654
             RestoreAfterDelete
35655
             Deletions from red-black trees may destroy the red-black 
35656
             properties. Examine the tree and restore. Rotations are normally 
35657
             required to restore it
35658
            </summary>
35770
        <member name="M:Org.BouncyCastle.Asn1.DerApplicationSpecific.GetObject">
35771
             Return the enclosed object assuming explicit tagging.
35772
            
35773
             @return  the resulting object
35774
             @throws IOException if reconstruction fails.
35659 35775
        </member>
35660
        <!-- Badly formed XML comment ignored for member "M:System.util.collections.OrderedTree.RemoveMin" -->
35661
        <!-- Badly formed XML comment ignored for member "M:System.util.collections.OrderedTree.RemoveMax" -->
35662
        <!-- Badly formed XML comment ignored for member "M:System.util.collections.OrderedTree.Clear" -->
35663
        <!-- Badly formed XML comment ignored for member "P:System.util.collections.OrderedTree.Keys" -->
35664
        <!-- Badly formed XML comment ignored for member "P:System.util.collections.OrderedTree.Values" -->
35665
        <member name="M:System.util.collections.OrderedTreeEnumerator.#ctor(System.util.collections.OrderedTreeNode,System.Boolean,System.Boolean,System.util.collections.OrderedTreeNode)">
35666
            <summary>
35667
             Determine order, walk the tree and push the nodes onto the stack
35668
            </summary>
35776
        <member name="M:Org.BouncyCastle.Asn1.DerApplicationSpecific.GetObject(System.Int32)">
35777
             Return the enclosed object assuming implicit tagging.
35778
            
35779
             @param derTagNo the type tag that should be applied to the object's contents.
35780
             @return  the resulting object
35781
             @throws IOException if reconstruction fails.
35669 35782
        </member>
35670
        <member name="M:System.util.collections.OrderedTreeEnumerator.HasMoreElements">
35671
            <summary>
35672
             HasMoreElements
35673
            </summary>
35783
        <member name="T:Org.BouncyCastle.Asn1.BerNull">
35784
            A BER Null object.
35674 35785
        </member>
35675
        <member name="M:System.util.collections.OrderedTreeEnumerator.NextElement">
35676
            <summary>
35677
             NextElement
35678
            </summary>
35786
        <member name="T:Org.BouncyCastle.Asn1.DerNull">
35787
            A Null object.
35679 35788
        </member>
35680
        <member name="M:System.util.collections.OrderedTreeEnumerator.MoveNext">
35681
            <summary>
35682
             MoveNext
35683
             For .NET compatibility
35684
            </summary>
35789
        <member name="M:Org.BouncyCastle.Asn1.DerOctetString.#ctor(System.Byte[])">
35790
            <param name="str">The octets making up the octet string.</param>
35685 35791
        </member>
35686
        <member name="P:System.util.collections.OrderedTreeEnumerator.Key">
35687
            <summary>
35688
            Key
35689
            </summary>
35792
        <member name="M:Org.BouncyCastle.Asn1.BerOctetString.ToBytes(System.Collections.IEnumerable)">
35793
            convert a vector of octet strings into a single byte string
35690 35794
        </member>
35691
        <member name="P:System.util.collections.OrderedTreeEnumerator.Value">
35692
            <summary>
35693
            Data
35694
            </summary>
35795
        <member name="M:Org.BouncyCastle.Asn1.BerOctetString.#ctor(System.Byte[])">
35796
            <param name="str">The octets making up the octet string.</param>
35695 35797
        </member>
35696
        <member name="P:System.util.collections.OrderedTreeNode.Key">
35697
            <summary>
35698
            Key
35699
            </summary>
35798
        <member name="M:Org.BouncyCastle.Asn1.BerOctetString.GetEnumerator">
35799
            return the DER octets that make up this string.
35700 35800
        </member>
35701
        <member name="P:System.util.collections.OrderedTreeNode.Data">
35702
            <summary>
35703
            Data
35704
            </summary>
35801
        <member name="M:Org.BouncyCastle.Asn1.DerSequence.#ctor">
35802
            create an empty sequence
35705 35803
        </member>
35706
        <member name="P:System.util.collections.OrderedTreeNode.Color">
35707
            <summary>
35708
            Color
35709
            </summary>
35804
        <member name="M:Org.BouncyCastle.Asn1.DerSequence.#ctor(Org.BouncyCastle.Asn1.Asn1Encodable)">
35805
            create a sequence containing one object
35710 35806
        </member>
35711
        <member name="P:System.util.collections.OrderedTreeNode.Left">
35712
            <summary>
35713
            Left
35714
            </summary>
35807
        <member name="M:Org.BouncyCastle.Asn1.DerSequence.#ctor(Org.BouncyCastle.Asn1.Asn1EncodableVector)">
35808
            create a sequence containing a vector of objects.
35715 35809
        </member>
35716
        <member name="P:System.util.collections.OrderedTreeNode.Right">
35717
            <summary>
35718
             Right
35719
            </summary>
35810
        <member name="M:Org.BouncyCastle.Asn1.BerSequence.#ctor">
35811
            create an empty sequence
35720 35812
        </member>
35721
        <member name="T:System.util.ListIterator`1">
35722
            <summary>
35723
            Summary description for ListIterator.
35724
            </summary>
35813
        <member name="M:Org.BouncyCastle.Asn1.BerSequence.#ctor(Org.BouncyCastle.Asn1.Asn1Encodable)">
35814
            create a sequence containing one object
35725 35815
        </member>
35726
        <member name="T:System.util.Util">
35727
            <summary>
35728
            Summary description for Util.
35729
            </summary>
35816
        <member name="M:Org.BouncyCastle.Asn1.BerSequence.#ctor(Org.BouncyCastle.Asn1.Asn1EncodableVector)">
35817
            create a sequence containing a vector of objects.
35730 35818
        </member>
35731
        <member name="T:System.util.zlib.ZDeflaterOutputStream">
35732
            <summary>
35733
            Summary description for DeflaterOutputStream.
35734
            </summary>
35819
        <member name="T:Org.BouncyCastle.Asn1.DerSet">
35820
            A Der encoded set object
35735 35821
        </member>
35736
        <member name="T:System.util.zlib.ZInflaterInputStream">
35737
            <summary>
35738
            Summary description for DeflaterOutputStream.
35739
            </summary>
35822
        <member name="M:Org.BouncyCastle.Asn1.DerSet.#ctor">
35823
            create an empty set
35740 35824
        </member>
35741
        <member name="T:iTextSharp.text.api.IWriterOperation">
35742
             @author itextpdf.com
35743
            
35825
        <member name="M:Org.BouncyCastle.Asn1.DerSet.#ctor(Org.BouncyCastle.Asn1.Asn1Encodable)">
35826
            @param obj - a single object that makes up the set.
35744 35827
        </member>
35745
        <member name="M:iTextSharp.text.api.IWriterOperation.Write(iTextSharp.text.pdf.PdfWriter,iTextSharp.text.Document)">
35746
            Receive a writer and the document to do certain operations on them.
35747
            @param writer the PdfWriter
35748
            @param doc the document
35749
            @throws DocumentException
35828
        <member name="M:Org.BouncyCastle.Asn1.DerSet.#ctor(Org.BouncyCastle.Asn1.Asn1EncodableVector)">
35829
            @param v - a vector of objects making up the set.
35750 35830
        </member>
35751
        <member name="T:iTextSharp.text.html.HtmlUtilities">
35752
            A class that contains some utilities to parse HTML attributes and content.
35753
            @since 5.0.6 (some of these methods used to be in the Markup class)
35754
            @deprecated since 5.5.2
35831
        <member name="M:Org.BouncyCastle.Asn1.BerSet.#ctor">
35832
            create an empty sequence
35755 35833
        </member>
35756
        <member name="F:iTextSharp.text.html.HtmlUtilities.DEFAULT_FONT_SIZE">
35757
            a default value for font-size 
35758
            @since 2.1.3
35834
        <member name="M:Org.BouncyCastle.Asn1.BerSet.#ctor(Org.BouncyCastle.Asn1.Asn1Encodable)">
35835
            create a set containing one object
35759 35836
        </member>
35760
        <member name="M:iTextSharp.text.html.HtmlUtilities.ParseLength(System.String)">
35761
            Parses a length.
35762
            
35763
            @param str
35764
                       a length in the form of an optional + or -, followed by a
35765
                       number and a unit.
35766
            @return a float
35837
        <member name="M:Org.BouncyCastle.Asn1.BerSet.#ctor(Org.BouncyCastle.Asn1.Asn1EncodableVector)">
35838
            create a set containing a vector of objects.
35767 35839
        </member>
35768
        <member name="M:iTextSharp.text.html.HtmlUtilities.ParseLength(System.String,System.Single)">
35769
            New method contributed by: Lubos Strapko
35770
            
35771
            @since 2.1.3
35840
        <member name="T:Org.BouncyCastle.Asn1.BerTaggedObject">
35841
            BER TaggedObject - in ASN.1 notation this is any object preceded by
35842
            a [n] where n is some number - these are assumed to follow the construction
35843
            rules (as with sequences).
35772 35844
        </member>
35773
        <member name="M:iTextSharp.text.html.HtmlUtilities.DecodeColor(System.String)">
35774
            Converts a <CODE>BaseColor</CODE> into a HTML representation of this <CODE>
35775
            BaseColor</CODE>.
35776
            
35777
            @param s
35778
                       the <CODE>BaseColor</CODE> that has to be converted.
35779
            @return the HTML representation of this <COLOR>BaseColor </COLOR>
35845
        <member name="T:Org.BouncyCastle.Asn1.DerTaggedObject">
35846
            DER TaggedObject - in ASN.1 notation this is any object preceded by
35847
            a [n] where n is some number - these are assumed to follow the construction
35848
            rules (as with sequences).
35780 35849
        </member>
35781
        <member name="M:iTextSharp.text.html.HtmlUtilities.ParseAttributes(System.String)">
35782
            This method parses a String with attributes and returns a Properties
35783
            object.
35784
            
35785
            @param str
35786
                       a String of this form: 'key1="value1"; key2="value2";...
35787
                       keyN="valueN" '
35788
            @return a Properties object
35850
        <member name="M:Org.BouncyCastle.Asn1.DerTaggedObject.#ctor(System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable)">
35851
            @param tagNo the tag number for this object.
35852
            @param obj the tagged object.
35789 35853
        </member>
35790
        <member name="M:iTextSharp.text.html.HtmlUtilities.RemoveComment(System.String,System.String,System.String)">
35791
            Removes the comments sections of a String.
35792
            
35793
            @param str
35794
                       the original String
35795
            @param startComment
35796
                       the String that marks the start of a Comment section
35797
            @param endComment
35798
                       the String that marks the end of a Comment section.
35799
            @return the String stripped of its comment section
35854
        <member name="M:Org.BouncyCastle.Asn1.DerTaggedObject.#ctor(System.Boolean,System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable)">
35855
            @param explicitly true if an explicitly tagged object.
35856
            @param tagNo the tag number for this object.
35857
            @param obj the tagged object.
35800 35858
        </member>
35801
        <member name="M:iTextSharp.text.html.HtmlUtilities.EliminateWhiteSpace(System.String)">
35802
            Helper class that reduces the white space in a String
35803
            @param content content containing whitespace
35804
            @return the content without all unnecessary whitespace
35859
        <member name="M:Org.BouncyCastle.Asn1.DerTaggedObject.#ctor(System.Int32)">
35860
            create an implicitly tagged object that contains a zero
35861
            length sequence.
35805 35862
        </member>
35806
        <member name="F:iTextSharp.text.html.HtmlUtilities.FONTSIZES">
35807
            A series of predefined font sizes.
35808
            @since 5.0.6 (renamed)
35863
        <member name="M:Org.BouncyCastle.Asn1.BerTaggedObject.#ctor(System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable)">
35864
            @param tagNo the tag number for this object.
35865
            @param obj the tagged object.
35809 35866
        </member>
35810
        <member name="M:iTextSharp.text.html.HtmlUtilities.GetIndexedFontSize(System.String,System.String)">
35811
            Picks a font size from a series of predefined font sizes.
35812
            @param value     the new value of a font, expressed as an index
35813
            @param previous  the previous value of the font size
35814
            @return  a new font size.
35867
        <member name="M:Org.BouncyCastle.Asn1.BerTaggedObject.#ctor(System.Boolean,System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable)">
35868
            @param explicitly true if an explicitly tagged object.
35869
            @param tagNo the tag number for this object.
35870
            @param obj the tagged object.
35815 35871
        </member>
35816
        <member name="M:iTextSharp.text.html.HtmlUtilities.AlignmentValue(System.String)">
35817
            Translates a String value to an alignment value.
35818
            (written by Norman Richards, integrated into iText by Bruno)
35819
            @param   alignment a String (one of the ALIGN_ constants of this class)
35820
            @return  an alignment value (one of the ALIGN_ constants of the Element interface) 
35872
        <member name="M:Org.BouncyCastle.Asn1.BerTaggedObject.#ctor(System.Int32)">
35873
            create an implicitly tagged object that contains a zero
35874
            length sequence.
35821 35875
        </member>
35822
        <member name="T:iTextSharp.text.html.simpleparser.CellWrapper">
35823
            We use a CellWrapper because we need some extra info
35824
            that isn't available in PdfPCell.
35825
            @author  psoares
35826
            @since 5.0.6 (renamed)
35827
            @deprecated since 5.5.2
35876
        <member name="T:Org.BouncyCastle.Asn1.Cmp.PkiFailureInfo">
35877
            <pre>
35878
            PKIFailureInfo ::= BIT STRING {
35879
            badAlg               (0),
35880
              -- unrecognized or unsupported Algorithm Identifier
35881
            badMessageCheck      (1), -- integrity check failed (e.g., signature did not verify)
35882
            badRequest           (2),
35883
              -- transaction not permitted or supported
35884
            badTime              (3), -- messageTime was not sufficiently close to the system time, as defined by local policy
35885
            badCertId            (4), -- no certificate could be found matching the provided criteria
35886
            badDataFormat        (5),
35887
              -- the data submitted has the wrong format
35888
            wrongAuthority       (6), -- the authority indicated in the request is different from the one creating the response token
35889
            incorrectData        (7), -- the requester's data is incorrect (for notary services)
35890
            missingTimeStamp     (8), -- when the timestamp is missing but should be there (by policy)
35891
            badPOP               (9)  -- the proof-of-possession failed
35892
            timeNotAvailable    (14),
35893
              -- the TSA's time source is not available
35894
            unacceptedPolicy    (15),
35895
              -- the requested TSA policy is not supported by the TSA
35896
            unacceptedExtension (16),
35897
              -- the requested extension is not supported by the TSA
35898
             addInfoNotAvailable (17)
35899
               -- the additional information requested could not be understood
35900
               -- or is not available
35901
             systemFailure       (25)
35902
               -- the request cannot be handled due to system failure
35903
            </pre>
35828 35904
        </member>
35829
        <member name="F:iTextSharp.text.html.simpleparser.CellWrapper.cell">
35830
            The cell that is wrapped in this stub. 
35905
        <member name="T:Org.BouncyCastle.Asn1.IAsn1String">
35906
            basic interface for Der string objects.
35831 35907
        </member>
35832
        <member name="F:iTextSharp.text.html.simpleparser.CellWrapper.width">
35833
            The width of the cell.
35834
            @since iText 5.0.6
35908
        <member name="M:Org.BouncyCastle.Asn1.DerBitString.GetPadBits(System.Int32)">
35909
            return the correct number of pad bits for a bit string defined in
35910
            a 32 bit constant
35835 35911
        </member>
35836
        <member name="F:iTextSharp.text.html.simpleparser.CellWrapper.percentage">
35837
            Indicates if the width is a percentage.
35838
            @since iText 5.0.6
35912
        <member name="M:Org.BouncyCastle.Asn1.DerBitString.GetBytes(System.Int32)">
35913
            return the correct number of bytes for a bit string defined in
35914
            a 32 bit constant
35839 35915
        </member>
35840
        <member name="M:iTextSharp.text.html.simpleparser.CellWrapper.#ctor(System.String,iTextSharp.text.html.simpleparser.ChainedProperties)">
35841
            Creates a new instance of IncCell.
35842
            @param	tag		the cell that is wrapped in this object.
35843
            @param	chain	properties such as width
35844
            @since	5.0.6
35916
        <member name="M:Org.BouncyCastle.Asn1.DerBitString.GetInstance(System.Object)">
35917
             return a Bit string from the passed in object
35918
            
35919
             @exception ArgumentException if the object cannot be converted.
35845 35920
        </member>
35846
        <member name="M:iTextSharp.text.html.simpleparser.CellWrapper.CreatePdfPCell(System.String,iTextSharp.text.html.simpleparser.ChainedProperties)">
35847
            Creates a PdfPCell element based on a tag and its properties.
35848
            @param	tag		a cell tag
35849
            @param	chain	the hierarchy chain
35921
        <member name="M:Org.BouncyCastle.Asn1.DerBitString.GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)">
35922
             return a Bit string from a tagged object.
35923
            
35924
             @param obj the tagged object holding the object we want
35925
             @param explicitly true if the object is meant to be explicitly
35926
                          tagged false otherwise.
35927
             @exception ArgumentException if the tagged object cannot
35928
                           be converted.
35850 35929
        </member>
35851
        <member name="M:iTextSharp.text.html.simpleparser.CellWrapper.IsContent">
35852
            @see com.lowagie.text.Element#isContent()
35853
            @since   iText 2.0.8
35930
        <member name="M:Org.BouncyCastle.Asn1.DerBitString.#ctor(System.Byte[],System.Int32)">
35931
            @param data the octets making up the bit string.
35932
            @param padBits the number of extra bits at the end of the string.
35854 35933
        </member>
35855
        <member name="M:iTextSharp.text.html.simpleparser.CellWrapper.IsNestable">
35856
            @see com.lowagie.text.Element#isNestable()
35857
            @since   iText 2.0.8
35934
        <member name="P:Org.BouncyCastle.Asn1.DerBitString.IntValue">
35935
            @return the value of the bit string as an int (truncating if necessary)
35858 35936
        </member>
35859
        <member name="T:iTextSharp.text.html.simpleparser.ElementFactory">
35860
            Factory that produces iText Element objects,
35861
            based on tags and their properties.
35862
            @author blowagie
35863
            @author psoares
35864
            @since 5.0.6 (renamed)
35865
            @deprecated since 5.5.2
35937
        <member name="M:Org.BouncyCastle.Asn1.Cmp.PkiFailureInfo.#ctor(System.Int32)">
35938
            Basic constructor.
35866 35939
        </member>
35867
        <member name="F:iTextSharp.text.html.simpleparser.ElementFactory.provider">
35868
            The font provider that will be used to fetch fonts.
35869
            @since   iText 5.0   This used to be a FontFactoryImp
35940
        <member name="M:Org.BouncyCastle.Asn1.Cmp.PkiFreeText.ToAsn1Object">
35941
            <pre>
35942
            PkiFreeText ::= SEQUENCE SIZE (1..MAX) OF UTF8String
35943
            </pre>
35870 35944
        </member>
35871
        <member name="M:iTextSharp.text.html.simpleparser.ElementFactory.#ctor">
35872
            Creates a new instance of FactoryProperties.
35945
        <member name="P:Org.BouncyCastle.Asn1.Cmp.PkiFreeText.Size">
35946
             Return the number of string elements present.
35947
            
35948
             @return number of elements present.
35873 35949
        </member>
35874
        <member name="M:iTextSharp.text.html.simpleparser.ElementFactory.GetFont(iTextSharp.text.html.simpleparser.ChainedProperties)">
35875
            Creates a Font object based on a chain of properties.
35876
            @param   chain   chain of properties
35877
            @return  an iText Font object
35950
        <member name="P:Org.BouncyCastle.Asn1.Cmp.PkiFreeText.Item(System.Int32)">
35951
             Return the UTF8STRING at index.
35952
            
35953
             @param index index of the string of interest
35954
             @return the string at index.
35878 35955
        </member>
35879
        <member name="M:iTextSharp.text.html.simpleparser.ElementFactory.CreateChunk(System.String,iTextSharp.text.html.simpleparser.ChainedProperties)">
35880
            Creates an iText Chunk
35881
            @param content the content of the Chunk
35882
            @param chain the hierarchy chain
35883
            @return a Chunk
35956
        <member name="M:Org.BouncyCastle.Asn1.Cmp.PkiStatusInfo.#ctor(System.Int32)">
35957
            @param status
35884 35958
        </member>
35885
        <member name="M:iTextSharp.text.html.simpleparser.ElementFactory.CreateParagraph(iTextSharp.text.html.simpleparser.ChainedProperties)">
35886
            Creates an iText Paragraph object using the properties
35887
            of the different tags and properties in the hierarchy chain.
35888
            @param   chain   the hierarchy chain
35889
            @return  a Paragraph without any content
35959
        <member name="M:Org.BouncyCastle.Asn1.Cmp.PkiStatusInfo.#ctor(System.Int32,Org.BouncyCastle.Asn1.Cmp.PkiFreeText)">
35960
            @param status
35961
            @param statusString
35890 35962
        </member>
35891
        <member name="M:iTextSharp.text.html.simpleparser.ElementFactory.CreateListItem(iTextSharp.text.html.simpleparser.ChainedProperties)">
35892
            Creates an iText Paragraph object using the properties
35893
            of the different tags and properties in the hierarchy chain.
35894
            @param   chain   the hierarchy chain
35895
            @return  a ListItem without any content
35963
        <member name="M:Org.BouncyCastle.Asn1.Cmp.PkiStatusInfo.ToAsn1Object">
35964
             <pre>
35965
             PkiStatusInfo ::= SEQUENCE {
35966
                 status        PKIStatus,                (INTEGER)
35967
                 statusString  PkiFreeText     OPTIONAL,
35968
                 failInfo      PkiFailureInfo  OPTIONAL  (BIT STRING)
35969
             }
35970
            
35971
             PKIStatus:
35972
               granted                (0), -- you got exactly what you asked for
35973
               grantedWithMods        (1), -- you got something like what you asked for
35974
               rejection              (2), -- you don't get it, more information elsewhere in the message
35975
               waiting                (3), -- the request body part has not yet been processed, expect to hear more later
35976
               revocationWarning      (4), -- this message contains a warning that a revocation is imminent
35977
               revocationNotification (5), -- notification that a revocation has occurred
35978
               keyUpdateWarning       (6)  -- update already done for the oldCertId specified in CertReqMsg
35979
            
35980
             PkiFailureInfo:
35981
               badAlg           (0), -- unrecognized or unsupported Algorithm Identifier
35982
               badMessageCheck  (1), -- integrity check failed (e.g., signature did not verify)
35983
               badRequest       (2), -- transaction not permitted or supported
35984
               badTime          (3), -- messageTime was not sufficiently close to the system time, as defined by local policy
35985
               badCertId        (4), -- no certificate could be found matching the provided criteria
35986
               badDataFormat    (5), -- the data submitted has the wrong format
35987
               wrongAuthority   (6), -- the authority indicated in the request is different from the one creating the response token
35988
               incorrectData    (7), -- the requester's data is incorrect (for notary services)
35989
               missingTimeStamp (8), -- when the timestamp is missing but should be there (by policy)
35990
               badPOP           (9)  -- the proof-of-possession failed
35991
            
35992
             </pre>
35896 35993
        </member>
35897
        <member name="M:iTextSharp.text.html.simpleparser.ElementFactory.UpdateElement(iTextSharp.text.Paragraph,iTextSharp.text.html.simpleparser.ChainedProperties)">
35898
            Method that does the actual Element creating for
35899
            the createParagraph and createListItem method.
35900
            @param paragraph
35901
            @param chain
35994
        <member name="M:Org.BouncyCastle.Asn1.Cms.Attribute.GetInstance(System.Object)">
35995
             return an Attribute object from the given object.
35996
            
35997
             @param o the object we want converted.
35998
             @exception ArgumentException if the object cannot be converted.
35902 35999
        </member>
35903
        <member name="M:iTextSharp.text.html.simpleparser.ElementFactory.SetParagraphLeading(iTextSharp.text.Paragraph,System.String)">
35904
            Sets the leading of a Paragraph object.
35905
            @param   paragraph   the Paragraph for which we set the leading
35906
            @param   leading     the String value of the leading
36000
        <member name="M:Org.BouncyCastle.Asn1.Cms.Attribute.ToAsn1Object">
36001
            Produce an object suitable for an Asn1OutputStream.
36002
            <pre>
36003
            Attribute ::= SEQUENCE {
36004
                attrType OBJECT IDENTIFIER,
36005
                attrValues SET OF AttributeValue
36006
            }
36007
            </pre>
35907 36008
        </member>
35908
        <member name="M:iTextSharp.text.html.simpleparser.ElementFactory.GetHyphenation(iTextSharp.text.html.simpleparser.ChainedProperties)">
35909
            Gets a HyphenationEvent based on the hyphenation entry in
35910
            the hierarchy chain.
35911
            @param   chain   the hierarchy chain
35912
            @return  a HyphenationEvent
35913
            @since   2.1.2
36009
        <member name="M:Org.BouncyCastle.Asn1.Cms.AttributeTable.GetAll(Org.BouncyCastle.Asn1.DerObjectIdentifier)">
36010
             Return all the attributes matching the OBJECT IDENTIFIER oid. The vector will be
36011
             empty if there are no attributes of the required type present.
36012
            
36013
             @param oid type of attribute required.
36014
             @return a vector of all the attributes found of type oid.
35914 36015
        </member>
35915
        <member name="M:iTextSharp.text.html.simpleparser.ElementFactory.CreateLineSeparator(System.Collections.Generic.IDictionary{System.String,System.String},System.Single)">
35916
            Creates a LineSeparator.
35917
            @since 5.0.6
36016
        <member name="M:Org.BouncyCastle.Asn1.Cms.AttributeTable.Add(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)">
36017
             Return a new table with the passed in attribute added.
36018
            
36019
             @param attrType
36020
             @param attrValue
36021
             @return
35918 36022
        </member>
35919
        <member name="P:iTextSharp.text.html.simpleparser.ElementFactory.FontProvider">
35920
            Setter for the font provider
35921
            @param provider
35922
            @since   5.0.6 renamed from setFontImp
36023
        <member name="P:Org.BouncyCastle.Asn1.Cms.AttributeTable.Item(Org.BouncyCastle.Asn1.DerObjectIdentifier)">
36024
            <summary>Return the first attribute matching the given OBJECT IDENTIFIER</summary>
35923 36025
        </member>
35924
        <member name="T:iTextSharp.text.html.simpleparser.HTMLTagProcessors">
35925
            This class maps tags such as div and span to their corresponding
35926
            TagProcessor classes.
35927
            @deprecated since 5.5.2
36026
        <member name="M:Org.BouncyCastle.Asn1.Cms.AuthenticatedData.GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)">
36027
             return an AuthenticatedData object from a tagged object.
36028
            
36029
             @param obj      the tagged object holding the object we want.
36030
             @param isExplicit true if the object is meant to be explicitly
36031
                             tagged false otherwise.
36032
             @throws ArgumentException if the object held by the
36033
                                              tagged object cannot be converted.
35928 36034
        </member>
35929
        <member name="M:iTextSharp.text.html.simpleparser.HTMLTagProcessors.#ctor">
35930
            Creates a Map containing supported tags.
36035
        <member name="M:Org.BouncyCastle.Asn1.Cms.AuthenticatedData.GetInstance(System.Object)">
36036
             return an AuthenticatedData object from the given object.
36037
            
36038
             @param obj the object we want converted.
36039
             @throws ArgumentException if the object cannot be converted.
35931 36040
        </member>
35932
        <member name="F:iTextSharp.text.html.simpleparser.HTMLTagProcessors.EM_STRONG_STRIKE_SUP_SUP">
35933
            Object that processes the following tags:
35934
            i, em, b, strong, s, strike, u, sup, sub
36041
        <member name="M:Org.BouncyCastle.Asn1.Cms.AuthenticatedData.ToAsn1Object">
36042
             Produce an object suitable for an Asn1OutputStream.
36043
             <pre>
36044
             AuthenticatedData ::= SEQUENCE {
36045
                   version CMSVersion,
36046
                   originatorInfo [0] IMPLICIT OriginatorInfo OPTIONAL,
36047
                   recipientInfos RecipientInfos,
36048
                   macAlgorithm MessageAuthenticationCodeAlgorithm,
36049
                   digestAlgorithm [1] DigestAlgorithmIdentifier OPTIONAL,
36050
                   encapContentInfo EncapsulatedContentInfo,
36051
                   authAttrs [2] IMPLICIT AuthAttributes OPTIONAL,
36052
                   mac MessageAuthenticationCode,
36053
                   unauthAttrs [3] IMPLICIT UnauthAttributes OPTIONAL }
36054
            
36055
             AuthAttributes ::= SET SIZE (1..MAX) OF Attribute
36056
            
36057
             UnauthAttributes ::= SET SIZE (1..MAX) OF Attribute
36058
            
36059
             MessageAuthenticationCode ::= OCTET STRING
36060
             </pre>
35935 36061
        </member>
35936
        <member name="F:iTextSharp.text.html.simpleparser.HTMLTagProcessors.A">
35937
            Object that processes the a tag.
36062
        <member name="T:Org.BouncyCastle.Asn1.Cms.AuthenticatedDataParser">
36063
             Produce an object suitable for an Asn1OutputStream.
36064
             <pre>
36065
             AuthenticatedData ::= SEQUENCE {
36066
                   version CMSVersion,
36067
                   originatorInfo [0] IMPLICIT OriginatorInfo OPTIONAL,
36068
                   recipientInfos RecipientInfos,
36069
                   macAlgorithm MessageAuthenticationCodeAlgorithm,
36070
                   digestAlgorithm [1] DigestAlgorithmIdentifier OPTIONAL,
36071
                   encapContentInfo EncapsulatedContentInfo,
36072
                   authAttrs [2] IMPLICIT AuthAttributes OPTIONAL,
36073
                   mac MessageAuthenticationCode,
36074
                   unauthAttrs [3] IMPLICIT UnauthAttributes OPTIONAL }
36075
            
36076
             AuthAttributes ::= SET SIZE (1..MAX) OF Attribute
36077
            
36078
             UnauthAttributes ::= SET SIZE (1..MAX) OF Attribute
36079
            
36080
             MessageAuthenticationCode ::= OCTET STRING
36081
             </pre>
35938 36082
        </member>
35939
        <member name="F:iTextSharp.text.html.simpleparser.HTMLTagProcessors.BR">
35940
            Object that processes the br tag.
36083
        <member name="M:Org.BouncyCastle.Asn1.Cms.AuthEnvelopedData.GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)">
36084
             return an AuthEnvelopedData object from a tagged object.
36085
            
36086
             @param obj      the tagged object holding the object we want.
36087
             @param isExplicit true if the object is meant to be explicitly
36088
                             tagged false otherwise.
36089
             @throws ArgumentException if the object held by the
36090
                                              tagged object cannot be converted.
35941 36091
        </member>
35942
        <member name="T:iTextSharp.text.html.simpleparser.IHTMLTagProcessor">
35943
            Interface that needs to be implemented by every tag that is supported by HTMLWorker.
35944
            @deprecated since 5.5.2
36092
        <member name="M:Org.BouncyCastle.Asn1.Cms.AuthEnvelopedData.GetInstance(System.Object)">
36093
             return an AuthEnvelopedData object from the given object.
36094
            
36095
             @param obj the object we want converted.
36096
             @throws ArgumentException if the object cannot be converted.
35945 36097
        </member>
35946
        <member name="M:iTextSharp.text.html.simpleparser.IHTMLTagProcessor.StartElement(iTextSharp.text.html.simpleparser.HTMLWorker,System.String,System.Collections.Generic.IDictionary{System.String,System.String})">
35947
            Implement this class to tell the HTMLWorker what to do
35948
            when an open tag is encountered.
35949
            @param worker    the HTMLWorker
35950
            @param tag       the tag that was encountered
35951
            @param attrs     the current attributes of the tag
35952
            @throws DocumentException
35953
            @throws IOException
36098
        <member name="M:Org.BouncyCastle.Asn1.Cms.AuthEnvelopedData.ToAsn1Object">
36099
            Produce an object suitable for an Asn1OutputStream.
36100
            <pre>
36101
            AuthEnvelopedData ::= SEQUENCE {
36102
              version CMSVersion,
36103
              originatorInfo [0] IMPLICIT OriginatorInfo OPTIONAL,
36104
              recipientInfos RecipientInfos,
36105
              authEncryptedContentInfo EncryptedContentInfo,
36106
              authAttrs [1] IMPLICIT AuthAttributes OPTIONAL,
36107
              mac MessageAuthenticationCode,
36108
              unauthAttrs [2] IMPLICIT UnauthAttributes OPTIONAL }
36109
            </pre>
35954 36110
        </member>
35955
        <member name="M:iTextSharp.text.html.simpleparser.IHTMLTagProcessor.EndElement(iTextSharp.text.html.simpleparser.HTMLWorker,System.String)">
35956
            Implement this class to tell the HTMLWorker what to do
35957
            when an close tag is encountered.
35958
            @param worker    the HTMLWorker
35959
            @param tag       the tag that was encountered
35960
            @throws DocumentException
36111
        <member name="T:Org.BouncyCastle.Asn1.Cms.AuthEnvelopedDataParser">
36112
            Produce an object suitable for an Asn1OutputStream.
36113
            
36114
            <pre>
36115
            AuthEnvelopedData ::= SEQUENCE {
36116
              version CMSVersion,
36117
              originatorInfo [0] IMPLICIT OriginatorInfo OPTIONAL,
36118
              recipientInfos RecipientInfos,
36119
              authEncryptedContentInfo EncryptedContentInfo,
36120
              authAttrs [1] IMPLICIT AuthAttributes OPTIONAL,
36121
              mac MessageAuthenticationCode,
36122
              unauthAttrs [2] IMPLICIT UnauthAttributes OPTIONAL }
36123
            </pre>
35961 36124
        </member>
35962
        <member name="M:iTextSharp.text.html.simpleparser.HTMLTagProcessors.HTMLTagProcessor_EM_STRONG_STRIKE_SUP_SUP.StartElement(iTextSharp.text.html.simpleparser.HTMLWorker,System.String,System.Collections.Generic.IDictionary{System.String,System.String})">
35963
            @see com.itextpdf.text.html.simpleparser.HTMLTagProcessors#startElement(com.itextpdf.text.html.simpleparser.HTMLWorker, java.lang.String)
36125
        <member name="F:Org.BouncyCastle.Asn1.Cms.CmsObjectIdentifiers.id_ri">
36126
            The other Revocation Info arc
36127
            id-ri OBJECT IDENTIFIER ::= { iso(1) identified-organization(3)
36128
                                              dod(6) internet(1) security(5) mechanisms(5) pkix(7) ri(16) }
35964 36129
        </member>
35965
        <member name="M:iTextSharp.text.html.simpleparser.HTMLTagProcessors.HTMLTagProcessor_EM_STRONG_STRIKE_SUP_SUP.EndElement(iTextSharp.text.html.simpleparser.HTMLWorker,System.String)">
35966
            @see com.itextpdf.text.html.simpleparser.HTMLTagProcessors#endElement(com.itextpdf.text.html.simpleparser.HTMLWorker, java.lang.String)
36130
        <member name="T:Org.BouncyCastle.Asn1.Cms.CompressedData">
36131
            RFC 3274 - CMS Compressed Data.
36132
            <pre>
36133
            CompressedData ::= Sequence {
36134
             version CMSVersion,
36135
             compressionAlgorithm CompressionAlgorithmIdentifier,
36136
             encapContentInfo EncapsulatedContentInfo
36137
            }
36138
            </pre>
35967 36139
        </member>
35968
        <member name="M:iTextSharp.text.html.simpleparser.HTMLTagProcessors.HTMLTagProcessor_EM_STRONG_STRIKE_SUP_SUP.MapTag(System.String)">
35969
            Maps em to i, strong to b, and strike to s.
35970
            This is a convention: the style parser expects i, b and s.
35971
            @param tag the original tag
35972
            @return the mapped tag
36140
        <member name="M:Org.BouncyCastle.Asn1.Cms.CompressedData.GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)">
36141
             return a CompressedData object from a tagged object.
36142
            
36143
             @param ato the tagged object holding the object we want.
36144
             @param explicitly true if the object is meant to be explicitly
36145
                          tagged false otherwise.
36146
             @exception ArgumentException if the object held by the
36147
                      tagged object cannot be converted.
35973 36148
        </member>
35974
        <member name="M:iTextSharp.text.html.simpleparser.HTMLTagProcessors.HTMLTagProcessor_A.StartElement(iTextSharp.text.html.simpleparser.HTMLWorker,System.String,System.Collections.Generic.IDictionary{System.String,System.String})">
35975
            @see com.itextpdf.text.html.simpleparser.HTMLTagProcessors#startElement(com.itextpdf.text.html.simpleparser.HTMLWorker, java.lang.String)
36149
        <member name="M:Org.BouncyCastle.Asn1.Cms.CompressedData.GetInstance(System.Object)">
36150
             return a CompressedData object from the given object.
36151
            
36152
             @param _obj the object we want converted.
36153
             @exception ArgumentException if the object cannot be converted.
35976 36154
        </member>
35977
        <member name="M:iTextSharp.text.html.simpleparser.HTMLTagProcessors.HTMLTagProcessor_A.EndElement(iTextSharp.text.html.simpleparser.HTMLWorker,System.String)">
35978
            @see com.itextpdf.text.html.simpleparser.HTMLTagProcessors#endElement(com.itextpdf.text.html.simpleparser.HTMLWorker, java.lang.String)
36155
        <member name="T:Org.BouncyCastle.Asn1.Cms.CompressedDataParser">
36156
            RFC 3274 - CMS Compressed Data.
36157
            <pre>
36158
            CompressedData ::= SEQUENCE {
36159
             version CMSVersion,
36160
             compressionAlgorithm CompressionAlgorithmIdentifier,
36161
             encapContentInfo EncapsulatedContentInfo
36162
            }
36163
            </pre>
35979 36164
        </member>
35980
        <member name="M:iTextSharp.text.html.simpleparser.HTMLTagProcessors.HTMLTagProcessor_BR.StartElement(iTextSharp.text.html.simpleparser.HTMLWorker,System.String,System.Collections.Generic.IDictionary{System.String,System.String})">
35981
            @see com.itextpdf.text.html.simpleparser.HTMLTagProcessors#startElement(com.itextpdf.text.html.simpleparser.HTMLWorker, java.lang.String, java.util.Map)
36165
        <member name="M:Org.BouncyCastle.Asn1.Cms.ContentInfo.ToAsn1Object">
36166
            Produce an object suitable for an Asn1OutputStream.
36167
            <pre>
36168
            ContentInfo ::= Sequence {
36169
                     contentType ContentType,
36170
                     content
36171
                     [0] EXPLICIT ANY DEFINED BY contentType OPTIONAL }
36172
            </pre>
35982 36173
        </member>
35983
        <member name="M:iTextSharp.text.html.simpleparser.HTMLTagProcessors.HTMLTagProcessor_BR.EndElement(iTextSharp.text.html.simpleparser.HTMLWorker,System.String)">
35984
            @see com.itextpdf.text.html.simpleparser.HTMLTagProcessors#endElement(com.itextpdf.text.html.simpleparser.HTMLWorker, java.lang.String)
36174
        <member name="T:Org.BouncyCastle.Asn1.Cms.ContentInfoParser">
36175
            Produce an object suitable for an Asn1OutputStream.
36176
            <pre>
36177
            ContentInfo ::= SEQUENCE {
36178
                     contentType ContentType,
36179
                     content
36180
                     [0] EXPLICIT ANY DEFINED BY contentType OPTIONAL }
36181
            </pre>
35985 36182
        </member>
35986
        <member name="M:iTextSharp.text.html.simpleparser.HTMLTagProcessors.HTMLTagProcessor_UL_OL.StartElement(iTextSharp.text.html.simpleparser.HTMLWorker,System.String,System.Collections.Generic.IDictionary{System.String,System.String})">
35987
            @see com.itextpdf.text.html.simpleparser.HTMLTagProcessors#startElement(com.itextpdf.text.html.simpleparser.HTMLWorker, java.lang.String, java.util.Map)
36183
        <member name="M:Org.BouncyCastle.Asn1.Cms.Ecc.MQVuserKeyingMaterial.GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)">
36184
             return an AuthEnvelopedData object from a tagged object.
36185
            
36186
             @param obj      the tagged object holding the object we want.
36187
             @param isExplicit true if the object is meant to be explicitly
36188
                             tagged false otherwise.
36189
             @throws ArgumentException if the object held by the
36190
                                              tagged object cannot be converted.
35988 36191
        </member>
35989
        <member name="M:iTextSharp.text.html.simpleparser.HTMLTagProcessors.HTMLTagProcessor_UL_OL.EndElement(iTextSharp.text.html.simpleparser.HTMLWorker,System.String)">
35990
            @see com.itextpdf.text.html.simpleparser.HTMLTagProcessors#endElement(com.itextpdf.text.html.simpleparser.HTMLWorker, java.lang.String)
36192
        <member name="M:Org.BouncyCastle.Asn1.Cms.Ecc.MQVuserKeyingMaterial.GetInstance(System.Object)">
36193
             return an AuthEnvelopedData object from the given object.
36194
            
36195
             @param obj the object we want converted.
36196
             @throws ArgumentException if the object cannot be converted.
35991 36197
        </member>
35992
        <member name="M:iTextSharp.text.html.simpleparser.HTMLTagProcessors.HTMLTagProcessor_SPAN.StartElement(iTextSharp.text.html.simpleparser.HTMLWorker,System.String,System.Collections.Generic.IDictionary{System.String,System.String})">
35993
            @see com.itextpdf.text.html.simpleparser.HTMLTagProcessors#startElement(com.itextpdf.text.html.simpleparser.HTMLWorker, java.lang.String, java.util.Map)
36198
        <member name="M:Org.BouncyCastle.Asn1.Cms.Ecc.MQVuserKeyingMaterial.ToAsn1Object">
36199
            Produce an object suitable for an Asn1OutputStream.
36200
            <pre>
36201
            MQVuserKeyingMaterial ::= SEQUENCE {
36202
              ephemeralPublicKey OriginatorPublicKey,
36203
              addedukm [0] EXPLICIT UserKeyingMaterial OPTIONAL  }
36204
            </pre>
35994 36205
        </member>
35995
        <member name="M:iTextSharp.text.html.simpleparser.HTMLTagProcessors.HTMLTagProcessor_SPAN.EndElement(iTextSharp.text.html.simpleparser.HTMLWorker,System.String)">
35996
            @see com.itextpdf.text.html.simpleparser.HTMLTagProcessors#endElement(com.itextpdf.text.html.simpleparser.HTMLWorker, java.lang.String)
36206
        <member name="M:Org.BouncyCastle.Asn1.Cms.EncryptedContentInfo.GetInstance(System.Object)">
36207
             return an EncryptedContentInfo object from the given object.
36208
            
36209
             @param obj the object we want converted.
36210
             @exception ArgumentException if the object cannot be converted.
35997 36211
        </member>
35998
        <member name="M:iTextSharp.text.html.simpleparser.HTMLTagProcessors.HTMLTagProcessor_H.StartElement(iTextSharp.text.html.simpleparser.HTMLWorker,System.String,System.Collections.Generic.IDictionary{System.String,System.String})">
35999
            @see com.itextpdf.text.html.simpleparser.HTMLTagProcessors#startElement(com.itextpdf.text.html.simpleparser.HTMLWorker, java.lang.String, java.util.Map)
36212
        <member name="M:Org.BouncyCastle.Asn1.Cms.EncryptedContentInfo.ToAsn1Object">
36213
            Produce an object suitable for an Asn1OutputStream.
36214
            <pre>
36215
            EncryptedContentInfo ::= Sequence {
36216
                contentType ContentType,
36217
                contentEncryptionAlgorithm ContentEncryptionAlgorithmIdentifier,
36218
                encryptedContent [0] IMPLICIT EncryptedContent OPTIONAL
36219
            }
36220
            </pre>
36000 36221
        </member>
36001
        <member name="M:iTextSharp.text.html.simpleparser.HTMLTagProcessors.HTMLTagProcessor_H.EndElement(iTextSharp.text.html.simpleparser.HTMLWorker,System.String)">
36002
            @see com.itextpdf.text.html.simpleparser.HTMLTagProcessors#endElement(com.itextpdf.text.html.simpleparser.HTMLWorker, java.lang.String)
36222
        <member name="T:Org.BouncyCastle.Asn1.Cms.EncryptedContentInfoParser">
36223
            <pre>
36224
            EncryptedContentInfo ::= SEQUENCE {
36225
                contentType ContentType,
36226
                contentEncryptionAlgorithm ContentEncryptionAlgorithmIdentifier,
36227
                encryptedContent [0] IMPLICIT EncryptedContent OPTIONAL
36228
            }
36229
            </pre>
36003 36230
        </member>
36004
        <member name="M:iTextSharp.text.html.simpleparser.HTMLTagProcessors.HTMLTagProcessor_LI.StartElement(iTextSharp.text.html.simpleparser.HTMLWorker,System.String,System.Collections.Generic.IDictionary{System.String,System.String})">
36005
            @see com.itextpdf.text.html.simpleparser.HTMLTagProcessors#startElement(com.itextpdf.text.html.simpleparser.HTMLWorker, java.lang.String, java.util.Map)
36231
        <member name="M:Org.BouncyCastle.Asn1.Cms.EncryptedData.ToAsn1Object">
36232
            <pre>
36233
                  EncryptedData ::= SEQUENCE {
36234
                                version CMSVersion,
36235
                                encryptedContentInfo EncryptedContentInfo,
36236
                                unprotectedAttrs [1] IMPLICIT UnprotectedAttributes OPTIONAL }
36237
            </pre>
36238
            @return a basic ASN.1 object representation.
36006 36239
        </member>
36007
        <member name="M:iTextSharp.text.html.simpleparser.HTMLTagProcessors.HTMLTagProcessor_LI.EndElement(iTextSharp.text.html.simpleparser.HTMLWorker,System.String)">
36008
            @see com.itextpdf.text.html.simpleparser.HTMLTagProcessors#endElement(com.itextpdf.text.html.simpleparser.HTMLWorker, java.lang.String)
36240
        <member name="M:Org.BouncyCastle.Asn1.Cms.EnvelopedData.GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)">
36241
             return an EnvelopedData object from a tagged object.
36242
            
36243
             @param obj the tagged object holding the object we want.
36244
             @param explicitly true if the object is meant to be explicitly
36245
                          tagged false otherwise.
36246
             @exception ArgumentException if the object held by the
36247
                      tagged object cannot be converted.
36009 36248
        </member>
36010
        <member name="M:iTextSharp.text.html.simpleparser.HTMLTagProcessors.HTMLTagProcessor_PRE.StartElement(iTextSharp.text.html.simpleparser.HTMLWorker,System.String,System.Collections.Generic.IDictionary{System.String,System.String})">
36011
            @see com.itextpdf.text.html.simpleparser.HTMLTagProcessors#startElement(com.itextpdf.text.html.simpleparser.HTMLWorker, java.lang.String, java.util.Map)
36249
        <member name="M:Org.BouncyCastle.Asn1.Cms.EnvelopedData.GetInstance(System.Object)">
36250
             return an EnvelopedData object from the given object.
36251
            
36252
             @param obj the object we want converted.
36253
             @exception ArgumentException if the object cannot be converted.
36012 36254
        </member>
36013
        <member name="M:iTextSharp.text.html.simpleparser.HTMLTagProcessors.HTMLTagProcessor_PRE.EndElement(iTextSharp.text.html.simpleparser.HTMLWorker,System.String)">
36014
            @see com.itextpdf.text.html.simpleparser.HTMLTagProcessors#endElement(com.itextpdf.text.html.simpleparser.HTMLWorker, java.lang.String)
36255
        <member name="M:Org.BouncyCastle.Asn1.Cms.EnvelopedData.ToAsn1Object">
36256
            Produce an object suitable for an Asn1OutputStream.
36257
            <pre>
36258
            EnvelopedData ::= Sequence {
36259
                version CMSVersion,
36260
                originatorInfo [0] IMPLICIT OriginatorInfo OPTIONAL,
36261
                recipientInfos RecipientInfos,
36262
                encryptedContentInfo EncryptedContentInfo,
36263
                unprotectedAttrs [1] IMPLICIT UnprotectedAttributes OPTIONAL
36264
            }
36265
            </pre>
36015 36266
        </member>
36016
        <member name="M:iTextSharp.text.html.simpleparser.HTMLTagProcessors.HTMLTagProcessor_DIV.StartElement(iTextSharp.text.html.simpleparser.HTMLWorker,System.String,System.Collections.Generic.IDictionary{System.String,System.String})">
36017
            @see com.itextpdf.text.html.simpleparser.HTMLTagProcessors#startElement(com.itextpdf.text.html.simpleparser.HTMLWorker, java.lang.String, java.util.Map)
36267
        <member name="T:Org.BouncyCastle.Asn1.Cms.EnvelopedDataParser">
36268
            Produce an object suitable for an Asn1OutputStream.
36269
            <pre>
36270
            EnvelopedData ::= SEQUENCE {
36271
                version CMSVersion,
36272
                originatorInfo [0] IMPLICIT OriginatorInfo OPTIONAL,
36273
                recipientInfos RecipientInfos,
36274
                encryptedContentInfo EncryptedContentInfo,
36275
                unprotectedAttrs [1] IMPLICIT UnprotectedAttributes OPTIONAL
36276
            }
36277
            </pre>
36018 36278
        </member>
36019
        <member name="M:iTextSharp.text.html.simpleparser.HTMLTagProcessors.HTMLTagProcessor_DIV.EndElement(iTextSharp.text.html.simpleparser.HTMLWorker,System.String)">
36020
            @see com.itextpdf.text.html.simpleparser.HTMLTagProcessors#endElement(com.itextpdf.text.html.simpleparser.HTMLWorker, java.lang.String)
36279
        <member name="M:Org.BouncyCastle.Asn1.Cms.KekIdentifier.GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)">
36280
             return a KekIdentifier object from a tagged object.
36281
            
36282
             @param obj the tagged object holding the object we want.
36283
             @param explicitly true if the object is meant to be explicitly
36284
                          tagged false otherwise.
36285
             @exception ArgumentException if the object held by the
36286
                      tagged object cannot be converted.
36021 36287
        </member>
36022
        <member name="M:iTextSharp.text.html.simpleparser.HTMLTagProcessors.HTMLTagProcessor_TABLE.StartElement(iTextSharp.text.html.simpleparser.HTMLWorker,System.String,System.Collections.Generic.IDictionary{System.String,System.String})">
36023
            @throws DocumentException
36024
            @see com.itextpdf.text.html.simpleparser.HTMLTagProcessors#startElement(com.itextpdf.text.html.simpleparser.HTMLWorker, java.lang.String, java.util.Map)
36288
        <member name="M:Org.BouncyCastle.Asn1.Cms.KekIdentifier.GetInstance(System.Object)">
36289
             return a KekIdentifier object from the given object.
36290
            
36291
             @param obj the object we want converted.
36292
             @exception ArgumentException if the object cannot be converted.
36025 36293
        </member>
36026
        <member name="M:iTextSharp.text.html.simpleparser.HTMLTagProcessors.HTMLTagProcessor_TABLE.EndElement(iTextSharp.text.html.simpleparser.HTMLWorker,System.String)">
36027
            @see com.itextpdf.text.html.simpleparser.HTMLTagProcessors#endElement(com.itextpdf.text.html.simpleparser.HTMLWorker, java.lang.String)
36294
        <member name="M:Org.BouncyCastle.Asn1.Cms.KekIdentifier.ToAsn1Object">
36295
            Produce an object suitable for an Asn1OutputStream.
36296
            <pre>
36297
            KekIdentifier ::= Sequence {
36298
                keyIdentifier OCTET STRING,
36299
                date GeneralizedTime OPTIONAL,
36300
                other OtherKeyAttribute OPTIONAL
36301
            }
36302
            </pre>
36028 36303
        </member>
36029
        <member name="M:iTextSharp.text.html.simpleparser.HTMLTagProcessors.HTMLTagProcessor_TR.StartElement(iTextSharp.text.html.simpleparser.HTMLWorker,System.String,System.Collections.Generic.IDictionary{System.String,System.String})">
36030
            @throws DocumentException
36031
            @see com.itextpdf.text.html.simpleparser.HTMLTagProcessors#startElement(com.itextpdf.text.html.simpleparser.HTMLWorker, java.lang.String, java.util.Map)
36304
        <member name="M:Org.BouncyCastle.Asn1.Cms.KekRecipientInfo.GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)">
36305
             return a KekRecipientInfo object from a tagged object.
36306
            
36307
             @param obj the tagged object holding the object we want.
36308
             @param explicitly true if the object is meant to be explicitly
36309
                          tagged false otherwise.
36310
             @exception ArgumentException if the object held by the
36311
                      tagged object cannot be converted.
36032 36312
        </member>
36033
        <member name="M:iTextSharp.text.html.simpleparser.HTMLTagProcessors.HTMLTagProcessor_TR.EndElement(iTextSharp.text.html.simpleparser.HTMLWorker,System.String)">
36034
            @see com.itextpdf.text.html.simpleparser.HTMLTagProcessors#endElement(com.itextpdf.text.html.simpleparser.HTMLWorker, java.lang.String)
36313
        <member name="M:Org.BouncyCastle.Asn1.Cms.KekRecipientInfo.GetInstance(System.Object)">
36314
             return a KekRecipientInfo object from the given object.
36315
            
36316
             @param obj the object we want converted.
36317
             @exception ArgumentException if the object cannot be converted.
36035 36318
        </member>
36036
        <member name="M:iTextSharp.text.html.simpleparser.HTMLTagProcessors.HTMLTagProcessor_TD.StartElement(iTextSharp.text.html.simpleparser.HTMLWorker,System.String,System.Collections.Generic.IDictionary{System.String,System.String})">
36037
            @throws DocumentException
36038
            @see com.itextpdf.text.html.simpleparser.HTMLTagProcessors#startElement(com.itextpdf.text.html.simpleparser.HTMLWorker, java.lang.String, java.util.Map)
36319
        <member name="M:Org.BouncyCastle.Asn1.Cms.KekRecipientInfo.ToAsn1Object">
36320
            Produce an object suitable for an Asn1OutputStream.
36321
            <pre>
36322
            KekRecipientInfo ::= Sequence {
36323
                version CMSVersion,  -- always set to 4
36324
                kekID KekIdentifier,
36325
                keyEncryptionAlgorithm KeyEncryptionAlgorithmIdentifier,
36326
                encryptedKey EncryptedKey
36327
            }
36328
            </pre>
36039 36329
        </member>
36040
        <member name="M:iTextSharp.text.html.simpleparser.HTMLTagProcessors.HTMLTagProcessor_TD.EndElement(iTextSharp.text.html.simpleparser.HTMLWorker,System.String)">
36041
            @see com.itextpdf.text.html.simpleparser.HTMLTagProcessors#endElement(com.itextpdf.text.html.simpleparser.HTMLWorker, java.lang.String)
36330
        <member name="T:Org.BouncyCastle.Asn1.IAsn1Choice">
36331
            Marker interface for CHOICE objects - if you implement this in a roll-your-own
36332
            object, any attempt to tag the object implicitly will convert the tag to an
36333
            explicit one as the encoding rules require.
36334
            <p>
36335
            If you use this interface your class should also implement the getInstance
36336
            pattern which takes a tag object and the tagging mode used. 
36337
            </p>
36042 36338
        </member>
36043
        <member name="M:iTextSharp.text.html.simpleparser.HTMLTagProcessors.HTMLTagProcessor_IMG.StartElement(iTextSharp.text.html.simpleparser.HTMLWorker,System.String,System.Collections.Generic.IDictionary{System.String,System.String})">
36044
            @see com.itextpdf.text.html.simpleparser.HTMLTagProcessors#startElement(com.itextpdf.text.html.simpleparser.HTMLWorker, java.lang.String, java.util.Map)
36339
        <member name="M:Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientIdentifier.GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)">
36340
             return an KeyAgreeRecipientIdentifier object from a tagged object.
36341
            
36342
             @param obj the tagged object holding the object we want.
36343
             @param isExplicit true if the object is meant to be explicitly
36344
                          tagged false otherwise.
36345
             @exception ArgumentException if the object held by the
36346
                      tagged object cannot be converted.
36045 36347
        </member>
36046
        <member name="M:iTextSharp.text.html.simpleparser.HTMLTagProcessors.HTMLTagProcessor_IMG.EndElement(iTextSharp.text.html.simpleparser.HTMLWorker,System.String)">
36047
            @see com.itextpdf.text.html.simpleparser.HTMLTagProcessors#endElement(com.itextpdf.text.html.simpleparser.HTMLWorker, java.lang.String)
36348
        <member name="M:Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientIdentifier.GetInstance(System.Object)">
36349
             return an KeyAgreeRecipientIdentifier object from the given object.
36350
            
36351
             @param obj the object we want converted.
36352
             @exception ArgumentException if the object cannot be converted.
36048 36353
        </member>
36049
        <member name="T:iTextSharp.text.html.simpleparser.IImageProcessor">
36050
            Implement this interface to process images and
36051
            to indicate if the image needs to be added or
36052
            skipped.
36053
            @since 5.0.6 (renamed)
36054
            @deprecated since 5.5.2
36354
        <member name="M:Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientIdentifier.ToAsn1Object">
36355
            Produce an object suitable for an Asn1OutputStream.
36356
            <pre>
36357
            KeyAgreeRecipientIdentifier ::= CHOICE {
36358
                issuerAndSerialNumber IssuerAndSerialNumber,
36359
                rKeyId [0] IMPLICIT RecipientKeyIdentifier
36360
            }
36361
            </pre>
36055 36362
        </member>
36056
        <member name="M:iTextSharp.text.html.simpleparser.IImageProcessor.Process(iTextSharp.text.Image,System.Collections.Generic.IDictionary{System.String,System.String},iTextSharp.text.html.simpleparser.ChainedProperties,iTextSharp.text.IDocListener)">
36057
            Allows you to (pre)process the image before (or instead of)
36058
            adding it to the DocListener with HTMLWorker.
36059
            @param img   the Image object
36060
            @param attrs attributes of the image
36061
            @param chain hierarchy of attributes
36062
            @param doc   the DocListener to which the Image needs to be added
36063
            @return  false if you still want HTMLWorker to add the Image
36363
        <member name="M:Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientInfo.GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)">
36364
             return a KeyAgreeRecipientInfo object from a tagged object.
36365
            
36366
             @param obj the tagged object holding the object we want.
36367
             @param explicitly true if the object is meant to be explicitly
36368
                          tagged false otherwise.
36369
             @exception ArgumentException if the object held by the
36370
                      tagged object cannot be converted.
36371
        </member>
36372
        <member name="M:Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientInfo.GetInstance(System.Object)">
36373
             return a KeyAgreeRecipientInfo object from the given object.
36374
            
36375
             @param obj the object we want converted.
36376
             @exception ArgumentException if the object cannot be converted.
36377
        </member>
36378
        <member name="M:Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientInfo.ToAsn1Object">
36379
                     * Produce an object suitable for an Asn1OutputStream.
36380
                     * <pre>
36381
                     * KeyAgreeRecipientInfo ::= Sequence {
36382
                     *     version CMSVersion,  -- always set to 3
36383
                     *     originator [0] EXPLICIT OriginatorIdentifierOrKey,
36384
                     *     ukm [1] EXPLICIT UserKeyingMaterial OPTIONAL,
36385
                     *     keyEncryptionAlgorithm KeyEncryptionAlgorithmIdentifier,
36386
                     *     recipientEncryptedKeys RecipientEncryptedKeys
36387
                     * }
36388
            		 *
36389
            		 * UserKeyingMaterial ::= OCTET STRING
36390
                     * </pre>
36391
        </member>
36392
        <member name="M:Org.BouncyCastle.Asn1.Cms.KeyTransRecipientInfo.GetInstance(System.Object)">
36393
             return a KeyTransRecipientInfo object from the given object.
36394
            
36395
             @param obj the object we want converted.
36396
             @exception ArgumentException if the object cannot be converted.
36397
        </member>
36398
        <member name="M:Org.BouncyCastle.Asn1.Cms.KeyTransRecipientInfo.ToAsn1Object">
36399
            Produce an object suitable for an Asn1OutputStream.
36400
            <pre>
36401
            KeyTransRecipientInfo ::= Sequence {
36402
                version CMSVersion,  -- always set to 0 or 2
36403
                rid RecipientIdentifier,
36404
                keyEncryptionAlgorithm KeyEncryptionAlgorithmIdentifier,
36405
                encryptedKey EncryptedKey
36406
            }
36407
            </pre>
36064 36408
        </member>
36065
        <member name="T:iTextSharp.text.html.simpleparser.ILinkProcessor">
36066
            Allows you to do additional processing on a Paragraph that contains a link.
36067
            @author  psoares
36068
            @since 5.0.6 (renamed)
36069
            @deprecated since 5.5.2
36409
        <member name="M:Org.BouncyCastle.Asn1.Cms.OriginatorIdentifierOrKey.GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)">
36410
             return an OriginatorIdentifierOrKey object from a tagged object.
36411
            
36412
             @param o the tagged object holding the object we want.
36413
             @param explicitly true if the object is meant to be explicitly
36414
                          tagged false otherwise.
36415
             @exception ArgumentException if the object held by the
36416
                      tagged object cannot be converted.
36070 36417
        </member>
36071
        <member name="M:iTextSharp.text.html.simpleparser.ILinkProcessor.Process(iTextSharp.text.Paragraph,iTextSharp.text.html.simpleparser.ChainedProperties)">
36072
            Does additional processing on a link paragraph
36073
            @param current   the Paragraph that has the link
36074
            @param attrs     the attributes
36075
            @return  false if the Paragraph no longer needs processing
36418
        <member name="M:Org.BouncyCastle.Asn1.Cms.OriginatorIdentifierOrKey.GetInstance(System.Object)">
36419
             return an OriginatorIdentifierOrKey object from the given object.
36420
            
36421
             @param o the object we want converted.
36422
             @exception ArgumentException if the object cannot be converted.
36076 36423
        </member>
36077
        <member name="T:iTextSharp.text.html.simpleparser.ImageStore">
36078
            @since 5.0.6
36079
            @deprecated since 5.5.2
36424
        <member name="M:Org.BouncyCastle.Asn1.Cms.OriginatorIdentifierOrKey.ToAsn1Object">
36425
             Produce an object suitable for an Asn1OutputStream.
36426
             <pre>
36427
             OriginatorIdentifierOrKey ::= CHOICE {
36428
                 issuerAndSerialNumber IssuerAndSerialNumber,
36429
                 subjectKeyIdentifier [0] SubjectKeyIdentifier,
36430
                 originatorKey [1] OriginatorPublicKey
36431
             }
36432
            
36433
             SubjectKeyIdentifier ::= OCTET STRING
36434
             </pre>
36080 36435
        </member>
36081
        <member name="T:iTextSharp.text.html.simpleparser.TableWrapper">
36082
            We use a TableWrapper because PdfPTable is rather complex
36083
            to put on the HTMLWorker stack.
36084
            @author  psoares
36085
            @since 5.0.6 (renamed)
36086
            @deprecated since 5.5.2
36436
        <member name="M:Org.BouncyCastle.Asn1.Cms.OriginatorInfo.GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)">
36437
             return an OriginatorInfo object from a tagged object.
36438
            
36439
             @param obj the tagged object holding the object we want.
36440
             @param explicitly true if the object is meant to be explicitly
36441
                          tagged false otherwise.
36442
             @exception ArgumentException if the object held by the
36443
                      tagged object cannot be converted.
36087 36444
        </member>
36088
        <member name="F:iTextSharp.text.html.simpleparser.TableWrapper.styles">
36089
            The styles that need to be applied to the table
36090
            @since 5.0.6 renamed from props
36445
        <member name="M:Org.BouncyCastle.Asn1.Cms.OriginatorInfo.GetInstance(System.Object)">
36446
             return an OriginatorInfo object from the given object.
36447
            
36448
             @param obj the object we want converted.
36449
             @exception ArgumentException if the object cannot be converted.
36091 36450
        </member>
36092
        <member name="F:iTextSharp.text.html.simpleparser.TableWrapper.rows">
36093
            Nested list containing the PdfPCell elements that are part of this table.
36451
        <member name="M:Org.BouncyCastle.Asn1.Cms.OriginatorInfo.ToAsn1Object">
36452
            Produce an object suitable for an Asn1OutputStream.
36453
            <pre>
36454
            OriginatorInfo ::= Sequence {
36455
                certs [0] IMPLICIT CertificateSet OPTIONAL,
36456
                crls [1] IMPLICIT CertificateRevocationLists OPTIONAL
36457
            }
36458
            </pre>
36094 36459
        </member>
36095
        <member name="F:iTextSharp.text.html.simpleparser.TableWrapper.colWidths">
36096
            Array containing the widths of the columns.
36097
            @since iText 5.0.6
36460
        <member name="M:Org.BouncyCastle.Asn1.Cms.OriginatorPublicKey.GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)">
36461
             return an OriginatorPublicKey object from a tagged object.
36462
            
36463
             @param obj the tagged object holding the object we want.
36464
             @param explicitly true if the object is meant to be explicitly
36465
                          tagged false otherwise.
36466
             @exception ArgumentException if the object held by the
36467
                      tagged object cannot be converted.
36098 36468
        </member>
36099
        <member name="M:iTextSharp.text.html.simpleparser.TableWrapper.#ctor(System.Collections.Generic.IDictionary{System.String,System.String})">
36100
            Creates a new instance of IncTable.
36101
            @param   attrs   a Map containing attributes
36469
        <member name="M:Org.BouncyCastle.Asn1.Cms.OriginatorPublicKey.GetInstance(System.Object)">
36470
             return an OriginatorPublicKey object from the given object.
36471
            
36472
             @param obj the object we want converted.
36473
             @exception ArgumentException if the object cannot be converted.
36102 36474
        </member>
36103
        <member name="M:iTextSharp.text.html.simpleparser.TableWrapper.AddRow(System.Collections.Generic.IList{iTextSharp.text.pdf.PdfPCell})">
36104
            Adds a new row to the table.
36105
            @param row a list of PdfPCell elements
36475
        <member name="M:Org.BouncyCastle.Asn1.Cms.OriginatorPublicKey.ToAsn1Object">
36476
            Produce an object suitable for an Asn1OutputStream.
36477
            <pre>
36478
            OriginatorPublicKey ::= Sequence {
36479
                algorithm AlgorithmIdentifier,
36480
                publicKey BIT STRING
36481
            }
36482
            </pre>
36106 36483
        </member>
36107
        <member name="M:iTextSharp.text.html.simpleparser.TableWrapper.CreateTable">
36108
            Creates a new PdfPTable based on the info assembled
36109
            in the table stub.
36110
            @return  a PdfPTable
36484
        <member name="M:Org.BouncyCastle.Asn1.Cms.OtherKeyAttribute.GetInstance(System.Object)">
36485
             return an OtherKeyAttribute object from the given object.
36486
            
36487
             @param o the object we want converted.
36488
             @exception ArgumentException if the object cannot be converted.
36111 36489
        </member>
36112
        <member name="P:iTextSharp.text.html.simpleparser.TableWrapper.ColWidths">
36113
            Setter for the column widths
36114
            @since iText 5.0.6
36490
        <member name="M:Org.BouncyCastle.Asn1.Cms.OtherKeyAttribute.ToAsn1Object">
36491
            Produce an object suitable for an Asn1OutputStream.
36492
            <pre>
36493
            OtherKeyAttribute ::= Sequence {
36494
                keyAttrId OBJECT IDENTIFIER,
36495
                keyAttr ANY DEFINED BY keyAttrId OPTIONAL
36496
            }
36497
            </pre>
36115 36498
        </member>
36116
        <member name="T:iTextSharp.text.log.ILogger">
36117
             Logger interface
36118
             {@link LoggerFactory#setLogger(Logger)}.
36119
            
36120
             @author redlab_b
36499
        <member name="M:Org.BouncyCastle.Asn1.Cms.OtherRecipientInfo.GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)">
36500
             return a OtherRecipientInfo object from a tagged object.
36121 36501
            
36502
             @param obj the tagged object holding the object we want.
36503
             @param explicitly true if the object is meant to be explicitly
36504
                          tagged false otherwise.
36505
             @exception ArgumentException if the object held by the
36506
                      tagged object cannot be converted.
36122 36507
        </member>
36123
        <member name="M:iTextSharp.text.log.ILogger.GetLogger(System.Type)">
36124
            @param klass
36125
            @return the logger for the given klass
36508
        <member name="M:Org.BouncyCastle.Asn1.Cms.OtherRecipientInfo.GetInstance(System.Object)">
36509
             return a OtherRecipientInfo object from the given object.
36510
            
36511
             @param obj the object we want converted.
36512
             @exception ArgumentException if the object cannot be converted.
36126 36513
        </member>
36127
        <member name="M:iTextSharp.text.log.ILogger.IsLogging(iTextSharp.text.log.Level)">
36128
            @param level
36129
            @return true if there should be logged for the given level
36514
        <member name="M:Org.BouncyCastle.Asn1.Cms.OtherRecipientInfo.ToAsn1Object">
36515
            Produce an object suitable for an Asn1OutputStream.
36516
            <pre>
36517
            OtherRecipientInfo ::= Sequence {
36518
               oriType OBJECT IDENTIFIER,
36519
               oriValue ANY DEFINED BY oriType }
36520
            </pre>
36130 36521
        </member>
36131
        <member name="M:iTextSharp.text.log.ILogger.Warn(System.String)">
36132
            Log a warning message.
36133
            @param message
36522
        <member name="M:Org.BouncyCastle.Asn1.Cms.OtherRevocationInfoFormat.GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)">
36523
             return a OtherRevocationInfoFormat object from a tagged object.
36524
            
36525
             @param obj the tagged object holding the object we want.
36526
             @param explicit true if the object is meant to be explicitly
36527
                          tagged false otherwise.
36528
             @exception IllegalArgumentException if the object held by the
36529
                      tagged object cannot be converted.
36134 36530
        </member>
36135
        <member name="M:iTextSharp.text.log.ILogger.Trace(System.String)">
36136
            Log a trace message.
36137
            @param message
36531
        <member name="M:Org.BouncyCastle.Asn1.Cms.OtherRevocationInfoFormat.GetInstance(System.Object)">
36532
             return a OtherRevocationInfoFormat object from the given object.
36533
            
36534
             @param obj the object we want converted.
36535
             @exception IllegalArgumentException if the object cannot be converted.
36138 36536
        </member>
36139
        <member name="M:iTextSharp.text.log.ILogger.Debug(System.String)">
36140
            Log a debug message.
36141
            @param message
36537
        <member name="M:Org.BouncyCastle.Asn1.Cms.OtherRevocationInfoFormat.ToAsn1Object">
36538
            Produce an object suitable for an ASN1OutputStream.
36539
            <pre>
36540
            OtherRevocationInfoFormat ::= SEQUENCE {
36541
                 otherRevInfoFormat OBJECT IDENTIFIER,
36542
                 otherRevInfo ANY DEFINED BY otherRevInfoFormat }
36543
            </pre>
36142 36544
        </member>
36143
        <member name="M:iTextSharp.text.log.ILogger.Info(System.String)">
36144
            Log an info message.
36145
            @param message
36545
        <member name="M:Org.BouncyCastle.Asn1.Cms.PasswordRecipientInfo.GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)">
36546
             return a PasswordRecipientInfo object from a tagged object.
36547
            
36548
             @param obj the tagged object holding the object we want.
36549
             @param explicitly true if the object is meant to be explicitly
36550
                          tagged false otherwise.
36551
             @exception ArgumentException if the object held by the
36552
                      tagged object cannot be converted.
36146 36553
        </member>
36147
        <member name="M:iTextSharp.text.log.ILogger.Error(System.String)">
36148
            Log an error message.
36149
            @param message
36554
        <member name="M:Org.BouncyCastle.Asn1.Cms.PasswordRecipientInfo.GetInstance(System.Object)">
... 이 차이점은 표시할 수 있는 최대 줄수를 초과해서 이 차이점은 잘렸습니다.

내보내기 Unified diff

클립보드 이미지 추가 (최대 크기: 500 MB)