nmoneys 1.6.0.0.20110602 → 2.0.0.0.20110630

Sign up to get free protection for your applications and to get access to all the features.
data/lib/NMoneys.dll CHANGED
Binary file
@@ -469,38 +469,6 @@
469
469
  <remarks>Since all currencies are visited, caches are initialized with all values.</remarks>
470
470
  <returns>List of all currencies defined.</returns>
471
471
  </member>
472
- <member name="M:NMoneys.Currency.ParseCode(System.String)">
473
- <summary>
474
- Converts the string representation of the name or numeric value of one or more enumerated constants to an equivalent <see cref="T:NMoneys.CurrencyIsoCode"/>.
475
- </summary>
476
- <remarks>The <paramref name="isoCode"/> can represent an alphabetic or a numeric currency code.
477
- <para>In the case of alphabetic codes, parsing is case-insensitive.</para>
478
- <para>Only defined numeric codes can be parsed.</para></remarks>
479
- <param name="isoCode">A string containing the name or value to convert.</param>
480
- <returns>An object of type <see cref="T:NMoneys.CurrencyIsoCode"/> whose value is represented by value.</returns>
481
- <exception cref="T:System.ArgumentNullException"><paramref name="isoCode"/> is null.</exception>
482
- <exception cref="T:System.ComponentModel.InvalidEnumArgumentException"><paramref name="isoCode"/> does not represent a defined alphabetic or numeric code.</exception>
483
- <seealso cref="M:NMoneys.IsoCodeExtensions.AlphabeticCode(NMoneys.CurrencyIsoCode)"/>
484
- <seealso cref="M:NMoneys.IsoCodeExtensions.NumericCode(NMoneys.CurrencyIsoCode)"/>
485
- </member>
486
- <member name="M:NMoneys.Currency.TryParseCode(System.String,System.Nullable{NMoneys.CurrencyIsoCode}@)">
487
- <summary>
488
- Converts the string representation of the name or numeric value of one or more enumerated constants to an equivalent <see cref="T:NMoneys.CurrencyIsoCode"/>.
489
- The return value indicates whether the conversion succeeded.
490
- </summary>
491
- <remarks>The <paramref name="isoCode"/> can represent an alphabetic or a numeric currency code.
492
- <para>In the case of alphabetic codes, parsing is case-insensitive.</para>
493
- <para>Only defined numeric codes can be parsed.</para></remarks>
494
- <param name="isoCode">A string containing the name or value to convert.</param>
495
- <param name="parsed">When this method returns, contains the parsed <see cref="T:NMoneys.CurrencyIsoCode"/> if the parsing succeeded, or is null if the parsing failed.</param>
496
- <returns>true if the value <paramref name="isoCode"/> was parsed successfully; otherwise, false.</returns>
497
- </member>
498
- <member name="M:NMoneys.Currency.ParseCodeArgument(System.String,System.String)">
499
- <summary>
500
- Used to parse the ISO codes arguments.
501
- </summary>
502
- <remarks>Is case-insensitive.</remarks>
503
- </member>
504
472
  <member name="M:NMoneys.Currency.ToString">
505
473
  <summary>
506
474
  Returns a <see cref="T:System.String"/> that represents the current <see cref="T:NMoneys.Currency"/>.
@@ -668,6 +636,62 @@
668
636
  <seealso cref="M:NMoneys.Currency.TryGet(System.Globalization.CultureInfo,NMoneys.Currency@)"/>
669
637
  <seealso cref="M:NMoneys.Currency.TryGet(System.Globalization.RegionInfo,NMoneys.Currency@)"/>
670
638
  </member>
639
+ <member name="T:NMoneys.Currency.Code">
640
+ <summary>
641
+ Contains factory methods that create a <see cref="T:NMoneys.CurrencyIsoCode"/>
642
+ </summary>
643
+ </member>
644
+ <member name="M:NMoneys.Currency.Code.Parse(System.String)">
645
+ <summary>
646
+ Converts the string representation of the name or numeric value of one or more enumerated constants to an equivalent <see cref="T:NMoneys.CurrencyIsoCode"/>.
647
+ </summary>
648
+ <remarks>The <paramref name="isoCode"/> can represent an alphabetic or a numeric currency code.
649
+ <para>In the case of alphabetic codes, parsing is case-insensitive.</para>
650
+ <para>Only defined numeric codes can be parsed.</para></remarks>
651
+ <param name="isoCode">A string containing the name or value to convert.</param>
652
+ <returns>An object of type <see cref="T:NMoneys.CurrencyIsoCode"/> whose value is represented by value.</returns>
653
+ <exception cref="T:System.ArgumentNullException"><paramref name="isoCode"/> is null.</exception>
654
+ <exception cref="T:System.ComponentModel.InvalidEnumArgumentException"><paramref name="isoCode"/> does not represent a defined alphabetic or numeric code.</exception>
655
+ <seealso cref="M:NMoneys.IsoCodeExtensions.AlphabeticCode(NMoneys.CurrencyIsoCode)"/>
656
+ <seealso cref="M:NMoneys.IsoCodeExtensions.NumericCode(NMoneys.CurrencyIsoCode)"/>
657
+ </member>
658
+ <member name="M:NMoneys.Currency.Code.TryParse(System.String,System.Nullable{NMoneys.CurrencyIsoCode}@)">
659
+ <summary>
660
+ Converts the string representation of the name or numeric value of one or more enumerated constants to an equivalent <see cref="T:NMoneys.CurrencyIsoCode"/>.
661
+ The return value indicates whether the conversion succeeded.
662
+ </summary>
663
+ <remarks>The <paramref name="isoCode"/> can represent an alphabetic or a numeric currency code.
664
+ <para>In the case of alphabetic codes, parsing is case-insensitive.</para>
665
+ <para>Only defined numeric codes can be parsed.</para></remarks>
666
+ <param name="isoCode">A string containing the name or value to convert.</param>
667
+ <param name="parsed">When this method returns, contains the parsed <see cref="T:NMoneys.CurrencyIsoCode"/> if the parsing succeeded, or is null if the parsing failed.</param>
668
+ <returns>true if the value <paramref name="isoCode"/> was parsed successfully; otherwise, false.</returns>
669
+ </member>
670
+ <member name="M:NMoneys.Currency.Code.ParseArgument(System.String,System.String)">
671
+ <summary>
672
+ Used to parse the ISO codes arguments.
673
+ </summary>
674
+ <remarks>Is case-insensitive.</remarks>
675
+ </member>
676
+ <member name="M:NMoneys.Currency.Code.Cast(System.Int16)">
677
+ <summary>
678
+ Converts the specified 16-bit signed integer to a <see cref="T:NMoneys.CurrencyIsoCode"/>.
679
+ </summary>
680
+ <para>The conversion is safe, in the sense that the value has to be defined within the values of the enumeration to be converted, but throws an exception when it cannot.</para>
681
+ <param name="numericCode">The value to be converted.</param>
682
+ <returns>An instance of the enumeration set to <paramref name="numericCode"/>.</returns>
683
+ <exception cref="T:System.ComponentModel.InvalidEnumArgumentException"><paramref name="numericCode"/> is not defined within the values of <see cref="T:NMoneys.CurrencyIsoCode"/>.</exception>
684
+ </member>
685
+ <member name="M:NMoneys.Currency.Code.TryCast(System.Int16,System.Nullable{NMoneys.CurrencyIsoCode}@)">
686
+ <summary>
687
+ Converts the the specified 16-bit signed integer to an equivalent <see cref="T:NMoneys.CurrencyIsoCode"/>. The return value indicates whether the conversion succeeded.
688
+ </summary>
689
+ <remarks>When the conversion is successful, the returned value is guaranteed to contain a value.</remarks>
690
+ <param name="numericCode">The value to be converted.</param>
691
+ <param name="converted">When this method returns, contains an object of type <see cref="T:System.Nullable`1"/> whose value is represented by <paramref name="numericCode"/>; otherwise, false.
692
+ This parameter is passed uninitialized.</param>
693
+ <returns>true if the <paramref name="numericCode"/> parameter was converted successfully; otherwise, false.</returns>
694
+ </member>
671
695
  <member name="T:NMoneys.CurrencyCharacterReferences">
672
696
  <summary>
673
697
  Represents all reserved currency characters in an HTML/XML document.
metadata CHANGED
@@ -3,12 +3,12 @@ name: nmoneys
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease: false
5
5
  segments:
6
- - 1
7
- - 6
6
+ - 2
8
7
  - 0
9
8
  - 0
10
- - 20110602
11
- version: 1.6.0.0.20110602
9
+ - 0
10
+ - 20110630
11
+ version: 2.0.0.0.20110630
12
12
  platform: ruby
13
13
  authors:
14
14
  - Daniel Gonzalez Garcia
@@ -16,7 +16,7 @@ autorequire:
16
16
  bindir: bin
17
17
  cert_chain: []
18
18
 
19
- date: 2011-06-02 00:00:00 +02:00
19
+ date: 2011-06-30 00:00:00 +02:00
20
20
  default_executable:
21
21
  dependencies: []
22
22
 
@@ -30,7 +30,7 @@ extra_rdoc_files: []
30
30
 
31
31
  files:
32
32
  - lib/NMoneys.dll
33
- - lib/NMoneys.XML
33
+ - lib/NMoneys.xml
34
34
  has_rdoc: true
35
35
  homepage: http://code.google.com/p/nmoneys/
36
36
  licenses: []