PhoneNumberUtils.CalledPartyBCDToString Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
CalledPartyBCDToString(Byte[], Int32, Int32) |
3GPP TS 24. |
CalledPartyBCDToString(Byte[], Int32, Int32, BcdExtendedType) |
3GPP TS 24. |
CalledPartyBCDToString(Byte[], Int32, Int32)
3GPP TS 24.
[Android.Runtime.Register("calledPartyBCDToString", "([BII)Ljava/lang/String;", "")]
public static string? CalledPartyBCDToString (byte[]? bytes, int offset, int length);
[<Android.Runtime.Register("calledPartyBCDToString", "([BII)Ljava/lang/String;", "")>]
static member CalledPartyBCDToString : byte[] * int * int -> string
Parameters
- bytes
- Byte[]
the data buffer
- offset
- Int32
should point to the TOA (aka. TON/NPI) octet after the length byte
- length
- Int32
is the number of bytes including TOA byte and must be at least 2
Returns
partial string on invalid decode
- Attributes
Remarks
3GPP TS 24.008 10.5.4.7 Called Party BCD Number
See Also TS 51.011 10.5.1 "dialing number/ssc string" and TS 11.11 "10.3.1 EF adn (Abbreviated dialing numbers)"
This member is deprecated. use #calledPartyBCDToString(byte[], int, int, int)
instead. Calling this method is equivalent to calling #calledPartyBCDToString(byte[], int, int)
with #BCD_EXTENDED_TYPE_EF_ADN
as the extended type.
Java documentation for android.telephony.PhoneNumberUtils.calledPartyBCDToString(byte[], int, int)
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
CalledPartyBCDToString(Byte[], Int32, Int32, BcdExtendedType)
3GPP TS 24.
[Android.Runtime.Register("calledPartyBCDToString", "([BIII)Ljava/lang/String;", "", ApiSince=28)]
public static string? CalledPartyBCDToString (byte[]? bytes, int offset, int length, Android.Telephony.BcdExtendedType bcdExtType);
[<Android.Runtime.Register("calledPartyBCDToString", "([BIII)Ljava/lang/String;", "", ApiSince=28)>]
static member CalledPartyBCDToString : byte[] * int * int * Android.Telephony.BcdExtendedType -> string
Parameters
- bytes
- Byte[]
the data buffer
- offset
- Int32
should point to the TOA (aka. TON/NPI) octet after the length byte
- length
- Int32
is the number of bytes including TOA byte and must be at least 2
- bcdExtType
- BcdExtendedType
used to determine the extended bcd coding
Returns
partial string on invalid decode
- Attributes
Remarks
3GPP TS 24.008 10.5.4.7 Called Party BCD Number
See Also TS 51.011 10.5.1 "dialing number/ssc string" and TS 11.11 "10.3.1 EF adn (Abbreviated dialing numbers)"
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.