Click here to Skip to main content
15,881,741 members
Home / Discussions / C#
   

C#

 
QuestionI need to see if a digit from a number is odd or even in c# Pin
keeponfalling125-Aug-20 4:24
keeponfalling125-Aug-20 4:24 
AnswerRe: I need to see if a digit from a number is odd or even in c# Pin
OriginalGriff5-Aug-20 4:58
mveOriginalGriff5-Aug-20 4:58 
GeneralRe: I need to see if a digit from a number is odd or even in c# Pin
keeponfalling125-Aug-20 5:23
keeponfalling125-Aug-20 5:23 
GeneralRe: I need to see if a digit from a number is odd or even in c# Pin
OriginalGriff5-Aug-20 5:45
mveOriginalGriff5-Aug-20 5:45 
AnswerRe: I need to see if a digit from a number is odd or even in c# Pin
Gerry Schmitz5-Aug-20 5:35
mveGerry Schmitz5-Aug-20 5:35 
GeneralRe: I need to see if a digit from a number is odd or even in c# Pin
keeponfalling125-Aug-20 10:19
keeponfalling125-Aug-20 10:19 
GeneralRe: I need to see if a digit from a number is odd or even in c# Pin
Gerry Schmitz5-Aug-20 14:06
mveGerry Schmitz5-Aug-20 14:06 
QuestionHow to get ios device capacity using MDM profiling Pin
Veridic Anil4-Aug-20 22:25
Veridic Anil4-Aug-20 22:25 
Based on this document from apple : https://developer.apple.com/business/documentation/MDM-Protocol-Reference.pdf

Quote:
I am trying to fetch mobile identifier by running provisioning profile on the device.
Here, I am able to get these identifiers: -


UDID
IMEI
ICCID
VERSION
PRODUCT

But this Identifier i.e. DeviceCapacity is not getting fetch.

Please find below is my code:

XML
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
 <dict>
   <key>PayloadContent</key>
   <dict>
     <key>URL</key>
     <string>https://xyz.com/home/checkin/?udi={0}</string>
     <key>DeviceAttributes</key>
     <array>
       <string>UDID</string>
       <string>IMEI</string>
       <string>ICCID</string>
       <string>VERSION</string>
       <string>PRODUCT</string>
       <string>SERIAL</string>
       <string>MEID</string>
       <string>DEVICECAPACITY</string>

     </array>
   </dict>
   <key>PayloadOrganization</key>
   <string>cellderetail-pro-new.cellde.com</string>
   <key>PayloadDisplayName</key>
   <string>Profile Service</string>
   <key>PayloadVersion</key>
   <integer>1</integer>
   <key>PayloadUUID</key>
   <string>9CF421B3-9853-4454-BC8A-982CBD3C907C</string>
   <key>PayloadIdentifier</key>
   <string>com.cellderetailpronewprovisioning</string>
   <key>PayloadDescription</key>
   <string>This temporary profile will be used to extract your current device's identifiers.</string>
   <key>PayloadType</key>
   <string>Profile Service</string>
 </dict>
</plist>



Below is is the code for installing provisioning profile on ios device

C#
var contentDisposition = new System.Net.Mime.ContentDisposition
                {
                    //FileName = "device-info.mobileconfig",
                    FileName = "device-information.mobileconfig",
                    Inline = false
                };
                var path = Configuration.MobileConfigPath;
                logger.LogMessage("MobileConfigPath" + path, FileLogger.MessageType.Info);
                string mobileConfigPlist = System.IO.File.ReadAllText(path);
                if (isHeadless)
                    udi = string.Format("{0}-hls-{1}-{2}-{3}-{4}-{5}-{6}", udi, storeId, StoreType, EnterpriseID,Session["TechName"],Session["Capacity"],Session["Model"]);
                var plistWithUdiUrl = mobileConfigPlist.Replace("{0}", udi);
                var bytes = getSignedContent(plistWithUdiUrl);
                logger.LogMessage("Signed Content Bytes", FileLogger.MessageType.Info);
                Response.AppendHeader("Content-Disposition", contentDisposition.ToString());
                Response.AppendHeader("Cache-Control", "public, no-store, max-age=0");
                return File(bytes, "application/x-apple-aspen-config");



As kind of help / suggestion are welcomed
AnswerRe: How to get ios device capacity using MDM profiling Pin
Gerry Schmitz5-Aug-20 5:58
mveGerry Schmitz5-Aug-20 5:58 
QuestionDataBase in User Control Pin
Ismael_19994-Aug-20 4:15
Ismael_19994-Aug-20 4:15 
AnswerRe: DataBase in User Control Pin
OriginalGriff4-Aug-20 4:32
mveOriginalGriff4-Aug-20 4:32 
GeneralRe: DataBase in User Control Pin
Gerry Schmitz4-Aug-20 6:12
mveGerry Schmitz4-Aug-20 6:12 
GeneralRe: DataBase in User Control Pin
OriginalGriff4-Aug-20 6:26
mveOriginalGriff4-Aug-20 6:26 
QuestionHow can I get handle (IntPtr) to a "sub"-form in another application? Pin
arnold_w31-Jul-20 2:38
arnold_w31-Jul-20 2:38 
AnswerRe: How can I get handle (IntPtr) to a "sub"-form in another application? Pin
Eddy Vluggen31-Jul-20 2:53
professionalEddy Vluggen31-Jul-20 2:53 
GeneralRe: How can I get handle (IntPtr) to a "sub"-form in another application? Pin
arnold_w31-Jul-20 4:03
arnold_w31-Jul-20 4:03 
GeneralRe: How can I get handle (IntPtr) to a "sub"-form in another application? Pin
Richard MacCutchan31-Jul-20 4:49
mveRichard MacCutchan31-Jul-20 4:49 
AnswerRe: How can I get handle (IntPtr) to a "sub"-form in another application? Pin
arnold_w31-Jul-20 11:03
arnold_w31-Jul-20 11:03 
GeneralRe: How can I get handle (IntPtr) to a "sub"-form in another application? Pin
Gerry Schmitz31-Jul-20 12:41
mveGerry Schmitz31-Jul-20 12:41 
GeneralRe: How can I get handle (IntPtr) to a "sub"-form in another application? Pin
Richard Andrew x6431-Jul-20 16:22
professionalRichard Andrew x6431-Jul-20 16:22 
GeneralRe: How can I get handle (IntPtr) to a "sub"-form in another application? Pin
arnold_w31-Jul-20 23:09
arnold_w31-Jul-20 23:09 
GeneralRe: How can I get handle (IntPtr) to a "sub"-form in another application? Pin
arnold_w31-Jul-20 23:58
arnold_w31-Jul-20 23:58 
GeneralRe: How can I get handle (IntPtr) to a "sub"-form in another application? Pin
Richard Andrew x641-Aug-20 1:44
professionalRichard Andrew x641-Aug-20 1:44 
GeneralRe: How can I get handle (IntPtr) to a "sub"-form in another application? Pin
arnold_w1-Aug-20 1:55
arnold_w1-Aug-20 1:55 
AnswerRe: How can I get handle (IntPtr) to a "sub"-form in another application? Pin
Richard Andrew x641-Aug-20 1:47
professionalRichard Andrew x641-Aug-20 1:47 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.